Unverified Commit 69cb938a authored by Kubernetes Prow Robot's avatar Kubernetes Prow Robot Committed by GitHub

Merge pull request #72909 from MalloZup/minor-print

Kubeadm: Use fmt.Println instead of fmt.Printf
parents 9c48ca48 a7225bc1
...@@ -416,7 +416,7 @@ func (j *joinData) Run() error { ...@@ -416,7 +416,7 @@ func (j *joinData) Run() error {
} }
// run kubeadm init preflight checks for checking all the prequisites // run kubeadm init preflight checks for checking all the prequisites
fmt.Printf("[join] Running pre-flight checks before initializing the new control plane instance\n") fmt.Println("[join] Running pre-flight checks before initializing the new control plane instance")
preflight.RunInitMasterChecks(utilsexec.New(), initCfg, j.ignorePreflightErrors) preflight.RunInitMasterChecks(utilsexec.New(), initCfg, j.ignorePreflightErrors)
// Prepares the node for hosting a new control plane instance by writing necessary // Prepares the node for hosting a new control plane instance by writing necessary
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment