From ac3614737284882e299c56657f02d24f7b1354a1 Mon Sep 17 00:00:00 2001 From: Justin SB Date: Sun, 31 May 2020 23:32:48 -0400 Subject: [PATCH] GCE: fix typo --- cmd/kops/create_cluster.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/kops/create_cluster.go b/cmd/kops/create_cluster.go index fd2377111db9f..a0ecf19139aa6 100644 --- a/cmd/kops/create_cluster.go +++ b/cmd/kops/create_cluster.go @@ -1005,7 +1005,7 @@ func RunCreateCluster(ctx context.Context, f *util.Factory, out io.Writer, c *Cr cluster.Spec.CloudConfig.GCEServiceAccount = c.GCEServiceAccount } else { klog.Warning("VMs will be configured to use the GCE default compute Service Account! This is an anti-pattern") - klog.Warning("Use a pre-create Service Account with the flag: --gce-service-account=account@projectname.iam.gserviceaccount.com") + klog.Warning("Use a pre-created Service Account with the flag: --gce-service-account=account@projectname.iam.gserviceaccount.com") cluster.Spec.CloudConfig.GCEServiceAccount = "default" } }