diff --git a/docs/DeployOpenShiftOperator.md b/docs/DeployOpenShiftOperator.md index 7db59b8..5937cad 100644 --- a/docs/DeployOpenShiftOperator.md +++ b/docs/DeployOpenShiftOperator.md @@ -688,7 +688,7 @@ spec: gateway_address: 'aqua-gateway:8443' # Required: provide <> cluster_name: Default-cluster-name # Required: provide your cluster name imagePullSecret: aqua-registry # Required: provide the imagePullSecret name - kubebench_image: 'docker.io/aquasec/kube-bench:v0.6.16' # Optional: KubeBench image name can be replace with custom registry + kubebench_image: 'docker.io/aquasec/kube-bench:v0.6.17' # Optional: KubeBench image name can be replace with custom registry deploy: service: ClusterIP image: diff --git a/pkg/consts/consts.go b/pkg/consts/consts.go index 8ca7d86..e4e7bef 100644 --- a/pkg/consts/consts.go +++ b/pkg/consts/consts.go @@ -164,7 +164,7 @@ const ( EnforcerConfigMapName = "aqua-csp-enforcer" - KubeBenchImageName = "docker.io/aquasec/kube-bench:v0.6.16" + KubeBenchImageName = "docker.io/aquasec/kube-bench:v0.6.17" LightningEnforcerResources = `resources: limits: diff --git a/test/consts/testing_consts.go b/test/consts/testing_consts.go index 9190ff1..cca2954 100644 --- a/test/consts/testing_consts.go +++ b/test/consts/testing_consts.go @@ -42,5 +42,5 @@ const ( ScannerToken = "" GatewayAddress = "aqua-gateway:8443" ClusterName = "Default-cluster-name" - KubeBenchName = "docker.io/aquasec/kube-bench:v0.6.16" + KubeBenchName = "docker.io/aquasec/kube-bench:v0.6.17" )