diff --git a/README.md b/README.md
index dfb0aa8b1d25c629d5ff565f85d86ad59fa4e235..3c61a58b3d881b047b49becd6a804d6a27bbe522 100644
--- a/README.md
+++ b/README.md
@@ -45,7 +45,10 @@ You can choose to
 kube-bench automatically selects which `controls` to use based on the detected
 node type and the version of kubernetes a cluster is running. This behaviour
 can be overridden by specifying the `master` or `node` subcommand and the
-`--version` flag on the command line.
+`--version` flag on the command line. 
+
+The kubernetes version can also be set with the KUBE_BENCH_VERSION environment variable.
+The value of `--version` takes precedence over the value of KUBE_BENCH_VERSION.
 
 For example:
 run kube-bench against a master with version auto-detection:
diff --git a/cmd/root.go b/cmd/root.go
index ad11f8293b65a26ffa2db966c914e6601762560e..2591e6ae0825b9f6cb0a6e644f0088d5c758369d 100644
--- a/cmd/root.go
+++ b/cmd/root.go
@@ -130,8 +130,16 @@ func initConfig() {
 		viper.AddConfigPath(cfgDir)   // adding ./cfg as first search path
 	}
 
+	// Read flag values from environment variables.
+	// Precedence: Command line flags take precedence over environment variables.
 	viper.SetEnvPrefix(envVarsPrefix)
-	viper.AutomaticEnv() // read in environment variables that match
+	viper.AutomaticEnv()
+	
+	if kubeVersion == "" {
+		if env := viper.Get("version"); env != nil {
+			kubeVersion = env.(string)
+		}
+ 	}
 
 	// If a config file is found, read it in.
 	if err := viper.ReadInConfig(); err != nil {