Merge pull request #3680 from filbranden/kubectl_version1

Fix kubectl version to match client and server version output
This commit is contained in:
Tim Hockin
2015-01-21 10:07:14 -08:00

View File

@@ -33,7 +33,7 @@ func GetVersion(w io.Writer, kubeClient client.Interface) {
}
GetClientVersion(w)
fmt.Fprintf(w, "Server Version: %#v\n", serverVersion)
fmt.Fprintf(w, "Server Version: %#v\n", *serverVersion)
}
func GetClientVersion(w io.Writer) {