Merge pull request #205 from dlorenc/configured

Update start text to mention that kubectl is configured automatically.
pull/207/head
dlorenc 2016-06-18 21:17:24 -04:00 committed by GitHub
commit 6f339df383
1 changed files with 2 additions and 0 deletions

View File

@ -103,6 +103,8 @@ func runStart(cmd *cobra.Command, args []string) {
} else if !active { } else if !active {
fmt.Println("Run this command to use the cluster: ") fmt.Println("Run this command to use the cluster: ")
fmt.Printf("kubectl config use-context %s\n", name) fmt.Printf("kubectl config use-context %s\n", name)
} else {
fmt.Println("Kubectl is now configured to use the cluster.")
} }
} }