mirror of
https://github.com/aquasecurity/kube-bench.git
synced 2024-11-26 01:49:28 +00:00
Add tip about the --version
flag to error output
If people are trying to use the Docker image to check their cluster, there's a big likelyhood of them hitting the error message saying that either `kubectl` or `kubelet` need to be found in order for `kube-bench` to be able to determine the Kubernetes version in use. This adds a tip that the version can be specified manually with the `--version` flag which is a lot easier than having to make a new Docker image with the right version of `kubelet`/`kubectl` in order for `kube-bench` to work.
This commit is contained in:
parent
b3fc84277d
commit
39d94df81b
@ -219,7 +219,7 @@ func getKubeVersion() string {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
_, err = exec.LookPath("kubelet")
|
_, err = exec.LookPath("kubelet")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
exitWithError(fmt.Errorf("Version check failed: need kubectl or kubelet binaries to get kubernetes version"))
|
exitWithError(fmt.Errorf("Version check failed: need kubectl or kubelet binaries to get kubernetes version.\nAlternately, you can specify the version with --version"))
|
||||||
}
|
}
|
||||||
return getKubeVersionFromKubelet()
|
return getKubeVersionFromKubelet()
|
||||||
}
|
}
|
||||||
@ -240,7 +240,7 @@ func getKubeVersionFromKubectl() string {
|
|||||||
func getKubeVersionFromKubelet() string {
|
func getKubeVersionFromKubelet() string {
|
||||||
cmd := exec.Command("kubelet", "--version")
|
cmd := exec.Command("kubelet", "--version")
|
||||||
out, err := cmd.CombinedOutput()
|
out, err := cmd.CombinedOutput()
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
continueWithError(fmt.Errorf("%s", out), "")
|
continueWithError(fmt.Errorf("%s", out), "")
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user