TestServiceCmd: use echoserver image instead of hello-node

pull/7873/head
Thomas Stromberg 2020-04-23 12:45:07 -07:00
parent fba211d176
commit a37b8f0a82
1 changed files with 1 additions and 1 deletions

View File

@ -639,7 +639,7 @@ func validateProfileCmd(ctx context.Context, t *testing.T, profile string) {
// validateServiceCmd asserts basic "service" command functionality // validateServiceCmd asserts basic "service" command functionality
func validateServiceCmd(ctx context.Context, t *testing.T, profile string) { func validateServiceCmd(ctx context.Context, t *testing.T, profile string) {
rr, err := Run(t, exec.CommandContext(ctx, "kubectl", "--context", profile, "create", "deployment", "hello-node", "--image=gcr.io/hello-minikube-zero-install/hello-node")) rr, err := Run(t, exec.CommandContext(ctx, "kubectl", "--context", profile, "create", "deployment", "hello-node", "--image=k8s.gcr.io/echoserver:1.4"))
if err != nil { if err != nil {
t.Logf("%q failed: %v (may not be an error).", rr.Command(), err) t.Logf("%q failed: %v (may not be an error).", rr.Command(), err)
} }