mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-30 15:05:27 +00:00
Merge pull request #55697 from fisherxu/e2efix
Automatic merge from submit-queue (batch tested with PRs 55697, 55631, 51905, 55647, 55826). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. Fix failed to access service of e2e test **What this PR does / why we need it**: We should create service before deployments as said in the issue. **Which issue(s) this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close the issue(s) when PR gets merged)*: Fixes [#55696](https://github.com/kubernetes/kubernetes/issues/55696) **Special notes for your reviewer**: **Release note**: ```release-note NONE ```
This commit is contained in:
commit
7db195cc0f
@ -303,12 +303,12 @@ var _ = SIGDescribe("Kubectl client", func() {
|
||||
forEachGBFile := func(run func(s string)) {
|
||||
guestbookRoot := "test/e2e/testing-manifests/guestbook"
|
||||
for _, gbAppFile := range []string{
|
||||
"frontend-deployment.yaml.in",
|
||||
"frontend-service.yaml",
|
||||
"redis-master-deployment.yaml.in",
|
||||
"redis-master-service.yaml",
|
||||
"redis-slave-deployment.yaml.in",
|
||||
"redis-slave-service.yaml",
|
||||
"redis-master-service.yaml",
|
||||
"frontend-service.yaml",
|
||||
"frontend-deployment.yaml.in",
|
||||
"redis-master-deployment.yaml.in",
|
||||
"redis-slave-deployment.yaml.in",
|
||||
} {
|
||||
contents := substituteImageName(string(generated.ReadOrDie(filepath.Join(guestbookRoot, gbAppFile))))
|
||||
run(contents)
|
||||
|
Loading…
Reference in New Issue
Block a user