From bde7a1de8e36842dd499b9017132419be496be7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81ron=20Szantner?= Date: Tue, 15 Jul 2025 23:40:56 +0200 Subject: [PATCH] update default image adress for shell cmd --- cmd/shell.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/shell.go b/cmd/shell.go index 83934ab..8511d68 100644 --- a/cmd/shell.go +++ b/cmd/shell.go @@ -154,7 +154,7 @@ func buildShellKubectlArgs(podName string, image string, istioEnabled bool, serv } func init() { - shellCmd.Flags().StringP("image", "i", "jdharrington/toolbox:latest", "The Docker image to use") + shellCmd.Flags().StringP("image", "i", "127178877223.dkr.ecr.us-east-2.amazonaws.com/toolbox:latest", "The Docker image to use") shellCmd.Flags().StringP("namespace", "n", "", "Namespace to run the shell Pod in") shellCmd.Flags().StringP("serviceaccount", "s", "", "ServiceAccount to run the shell Pod as") shellCmd.Flags().BoolP("istio", "", false, "Whether or not the shell Pod should be Istio-enabled. Only has effect when launching a shell Pod in an Istio-enabled Namespace")