Add a version command to minikube too

pull/113/head
Lucas Käldström 2016-05-25 23:24:12 +03:00
parent 0d64075bfb
commit 1a3ef791f9
3 changed files with 43 additions and 4 deletions

View File

@ -24,7 +24,7 @@ import (
"k8s.io/minikube/pkg/version"
)
var VersionCmd = &cobra.Command{
var versionCmd = &cobra.Command{
Use: "version",
Short: "Print the version of localkube.",
Long: `Print the version of localkube.`,
@ -35,5 +35,5 @@ var VersionCmd = &cobra.Command{
}
func init() {
RootCmd.AddCommand(VersionCmd)
RootCmd.AddCommand(versionCmd)
}

View File

@ -0,0 +1,39 @@
/*
Copyright 2016 The Kubernetes Authors All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package cmd
import (
"fmt"
"github.com/spf13/cobra"
"k8s.io/minikube/pkg/version"
)
var versionCmd = &cobra.Command{
Use: "version",
Short: "Print the version of minikube.",
Long: `Print the version of minikube.`,
Run: func(command *cobra.Command, args []string) {
fmt.Println("Version: ", version.Version)
},
}
func init() {
RootCmd.AddCommand(versionCmd)
}

View File

@ -16,5 +16,5 @@ limitations under the License.
package version
// The current version of the binary
const Version = "0.0.5"
// The current version of the minikube and localkube
const Version = "0.0.1-developing"