Commit fe033a47 authored by fisherxu's avatar fisherxu

fix failed to access service of e2e test

parent 2d64ce5e
...@@ -303,12 +303,12 @@ var _ = SIGDescribe("Kubectl client", func() { ...@@ -303,12 +303,12 @@ var _ = SIGDescribe("Kubectl client", func() {
forEachGBFile := func(run func(s string)) { forEachGBFile := func(run func(s string)) {
guestbookRoot := "test/e2e/testing-manifests/guestbook" guestbookRoot := "test/e2e/testing-manifests/guestbook"
for _, gbAppFile := range []string{ for _, gbAppFile := range []string{
"frontend-deployment.yaml.in", "redis-slave-service.yaml",
"redis-master-service.yaml",
"frontend-service.yaml", "frontend-service.yaml",
"frontend-deployment.yaml.in",
"redis-master-deployment.yaml.in", "redis-master-deployment.yaml.in",
"redis-master-service.yaml",
"redis-slave-deployment.yaml.in", "redis-slave-deployment.yaml.in",
"redis-slave-service.yaml",
} { } {
contents := substituteImageName(string(generated.ReadOrDie(filepath.Join(guestbookRoot, gbAppFile)))) contents := substituteImageName(string(generated.ReadOrDie(filepath.Join(guestbookRoot, gbAppFile))))
run(contents) run(contents)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment