From 83b808b3b00f1ca962eadc94bab97210cd817dcc Mon Sep 17 00:00:00 2001 From: dmaiocchi Date: Wed, 6 Feb 2019 23:27:12 +0100 Subject: [PATCH] kubeadm: improve ux on infoMsg kubeconfig --- cmd/kubeadm/app/phases/kubeconfig/kubeconfig.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/kubeadm/app/phases/kubeconfig/kubeconfig.go b/cmd/kubeadm/app/phases/kubeconfig/kubeconfig.go index 9b8493d553b..63ebe94fd2b 100644 --- a/cmd/kubeadm/app/phases/kubeconfig/kubeconfig.go +++ b/cmd/kubeadm/app/phases/kubeconfig/kubeconfig.go @@ -271,7 +271,7 @@ func createKubeConfigFileIfNotExists(outDir, filename string, config *clientcmda // kubeadm doesn't validate the existing kubeconfig file more than this (kubeadm trusts the client certs to be valid) // Basically, if we find a kubeconfig file with the same path; the same CA cert and the same server URL; // kubeadm thinks those files are equal and doesn't bother writing a new file - fmt.Printf("[kubeconfig] Using existing up-to-date kubeconfig file: %q\n", kubeConfigFilePath) + fmt.Printf("[kubeconfig] Using existing kubeconfig file: %q\n", kubeConfigFilePath) return nil }