general cleanup

pull/14113/head
Sharif Elgamal 2022-05-06 14:58:01 -07:00
parent 7a796c9b02
commit 7a121ad8d3
3 changed files with 3 additions and 4 deletions

View File

@ -18,8 +18,7 @@ jobs:
- uses: actions/setup-go@f6164bd8c8acb4a71fb2791a8b6c4024ff038dab
with:
go-version: ${{env.GO_VERSION}}
stable: true
- name: Bump Kuberenetes Versions
- name: Bump Kubernetes Versions
id: bumpk8s
run: |
t=$(make update-kubernetes-version)

View File

@ -101,7 +101,7 @@ func enableAddonGCPAuth(cfg *config.ClusterConfig) error {
}
if creds.JSON == nil {
out.WarningT("You have authenticated with a service account that does not have an associated JSON. The GCP Auth requires credentials with a JSON file in order to continue. The image pull secret has been imported.")
out.WarningT("You have authenticated with a service account that does not have an associated JSON. The GCP Auth addon requires credentials with a JSON file in order to continue. The image pull secret has been imported.")
return nil
}

View File

@ -328,7 +328,7 @@ func Provision(cc *config.ClusterConfig, n *config.Node, apiServer bool, delOnFa
register.Reg.SetStep(register.StartingNode)
name := config.MachineName(*cc, *n)
// for sake of trasnlation process be easy we make the code a bit more verbose and the if statements may seem unnecessary
// Be explicit with each case for the sake of translations
if cc.KubernetesConfig.KubernetesVersion == constants.NoKubernetesVersion {
out.Step(style.ThumbsUp, "Starting minikube without Kubernetes {{.name}} in cluster {{.cluster}}", out.V{"name": name, "cluster": cc.Name})
} else {