Skip to content
Snippets Groups Projects
Unverified Commit ec51a4ea authored by Liz Rice's avatar Liz Rice Committed by GitHub
Browse files

Merge pull request #108 from wmedlar/feature/issue-107

Allow kubernetes version and config directory to be specified (resolves #107). Thank you @wmedlar!
parents 46bbcdd9 0b487210
No related branches found
No related tags found
No related merge requests found
...@@ -47,7 +47,13 @@ func runChecks(t check.NodeType) { ...@@ -47,7 +47,13 @@ func runChecks(t check.NodeType) {
nodetype = "federated" nodetype = "federated"
} }
ver := getKubeVersion() var ver string
if kubeVersion != "" {
ver = kubeVersion
} else {
ver = getKubeVersion()
}
switch ver { switch ver {
case "1.9", "1.10": case "1.9", "1.10":
continueWithError(nil, fmt.Sprintf("No CIS spec for %s - using tests from CIS 1.2.0 spec for Kubernetes 1.8\n", ver)) continueWithError(nil, fmt.Sprintf("No CIS spec for %s - using tests from CIS 1.2.0 spec for Kubernetes 1.8\n", ver))
......
...@@ -26,9 +26,10 @@ import ( ...@@ -26,9 +26,10 @@ import (
var ( var (
envVarsPrefix = "KUBE_BENCH" envVarsPrefix = "KUBE_BENCH"
cfgDir = "./cfg"
defaultKubeVersion = "1.6" defaultKubeVersion = "1.6"
kubeVersion string
cfgFile string cfgFile string
cfgDir string
jsonFmt bool jsonFmt bool
pgSQL bool pgSQL bool
checkList string checkList string
...@@ -85,6 +86,8 @@ func init() { ...@@ -85,6 +86,8 @@ func init() {
`Run all the checks under this comma-delimited list of groups. Example --group="1.1"`, `Run all the checks under this comma-delimited list of groups. Example --group="1.1"`,
) )
RootCmd.PersistentFlags().StringVar(&cfgFile, "config", "", "config file (default is ./cfg/config.yaml)") RootCmd.PersistentFlags().StringVar(&cfgFile, "config", "", "config file (default is ./cfg/config.yaml)")
RootCmd.PersistentFlags().StringVarP(&cfgDir, "config-dir", "D", "./cfg/", "config directory")
RootCmd.PersistentFlags().StringVar(&kubeVersion, "version", "", "Manually specify Kubernetes version, automatically detected if unset")
goflag.CommandLine.VisitAll(func(goflag *goflag.Flag) { goflag.CommandLine.VisitAll(func(goflag *goflag.Flag) {
RootCmd.PersistentFlags().AddGoFlag(goflag) RootCmd.PersistentFlags().AddGoFlag(goflag)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment