GCE: fix typo

This commit is contained in:
Justin SB 2020-05-31 23:32:48 -04:00
parent fddfe09edc
commit ac36147372
1 changed files with 1 additions and 1 deletions

View File

@ -1005,7 +1005,7 @@ func RunCreateCluster(ctx context.Context, f *util.Factory, out io.Writer, c *Cr
cluster.Spec.CloudConfig.GCEServiceAccount = c.GCEServiceAccount cluster.Spec.CloudConfig.GCEServiceAccount = c.GCEServiceAccount
} else { } else {
klog.Warning("VMs will be configured to use the GCE default compute Service Account! This is an anti-pattern") 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" cluster.Spec.CloudConfig.GCEServiceAccount = "default"
} }
} }