Merge pull request #4367 from vmarmol/print-client

Print client version before evaluating server's.
This commit is contained in:
Saad Ali 2015-02-12 07:48:24 -08:00
commit c216b2660c

View File

@ -26,13 +26,14 @@ import (
)
func GetVersion(w io.Writer, kubeClient client.Interface) {
GetClientVersion(w)
serverVersion, err := kubeClient.ServerVersion()
if err != nil {
fmt.Printf("Couldn't read version from server: %v\n", err)
os.Exit(1)
}
GetClientVersion(w)
fmt.Fprintf(w, "Server Version: %#v\n", *serverVersion)
}