Commit c577d97b authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #47292 from derekwaynecarr/fix-kubfed-output

Automatic merge from submit-queue Incorrect output in kubefed init **What this PR does / why we need it**: Fixes incorrect output in `kubefed init`. fixes https://github.com/kubernetes/kubernetes/issues/47291 **Special notes for your reviewer**: none **Release note**: ```release-note NONE ```
parents 1168552f 77f57211
......@@ -385,7 +385,7 @@ func (i *initFederation) Run(cmdOut io.Writer, config util.AdminConfig) error {
return err
}
glog.V(4).Info("Successfully created federation controller manager deployment")
fmt.Println(cmdOut, " done")
fmt.Fprintln(cmdOut, " done")
fmt.Fprint(cmdOut, "Updating kubeconfig...")
glog.V(4).Info("Updating kubeconfig")
......
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