mirror of
https://github.com/aquasecurity/kube-bench.git
synced 2024-11-12 18:59:12 +00:00
24 lines
408 B
Go
24 lines
408 B
Go
|
package cmd
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"github.com/spf13/cobra"
|
||
|
)
|
||
|
|
||
|
var KubeBenchVersion string
|
||
|
|
||
|
// versionCmd represents the version command
|
||
|
var versionCmd = &cobra.Command{
|
||
|
Use: "version",
|
||
|
Short: "Shows the version of kube-bench.",
|
||
|
Long: `Shows the version of kube-bench.`,
|
||
|
Run: func(cmd *cobra.Command, args []string) {
|
||
|
fmt.Println(KubeBenchVersion)
|
||
|
},
|
||
|
}
|
||
|
|
||
|
func init() {
|
||
|
RootCmd.AddCommand(versionCmd)
|
||
|
}
|
||
|
|