From 2d10b0c3f29fa5a2fa8c54f7d446f7de98890a7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Wei=C3=9Fe?= Date: Fri, 24 Nov 2023 11:33:32 +0100 Subject: [PATCH] Update default bucket name MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Daniel Weiße --- image/upload/internal/cmd/gcp.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/image/upload/internal/cmd/gcp.go b/image/upload/internal/cmd/gcp.go index a4dc139f8e..2cf1bc7e87 100644 --- a/image/upload/internal/cmd/gcp.go +++ b/image/upload/internal/cmd/gcp.go @@ -30,7 +30,7 @@ func newGCPCommand() *cobra.Command { cmd.Flags().String("gcp-project", "constellation-images", "GCP project to use") cmd.Flags().String("gcp-location", "europe-west3", "GCP location to use") - cmd.Flags().String("gcp-bucket", "constellation-images", "GCP bucket to use") + cmd.Flags().String("gcp-bucket", "constellation-os-images", "GCP bucket to use") return cmd }