diff --git a/.github/workflows/update-k8s-versions.yml b/.github/workflows/update-k8s-versions.yml index 66642a1f71..107a3c43a7 100644 --- a/.github/workflows/update-k8s-versions.yml +++ b/.github/workflows/update-k8s-versions.yml @@ -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) diff --git a/pkg/addons/addons_gcpauth.go b/pkg/addons/addons_gcpauth.go index b69a7df27a..791713a283 100644 --- a/pkg/addons/addons_gcpauth.go +++ b/pkg/addons/addons_gcpauth.go @@ -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 } diff --git a/pkg/minikube/node/start.go b/pkg/minikube/node/start.go index 10b3b4d957..5a8bbaa185 100644 --- a/pkg/minikube/node/start.go +++ b/pkg/minikube/node/start.go @@ -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 {