mirror of
https://github.com/aquasecurity/kube-bench.git
synced 2024-10-31 20:39:14 +00:00
ca8743c1f7
* add Support VMware Tanzu(TKGI) Benchmarks v1.2.53 with this change, we are adding 1. latest kubernetes cis benchmarks for VMware Tanzu1.2.53 2. logic to kube-bench so that kube-bench can auto detect vmware platform, will be able to execute the respective vmware tkgi compliance checks. 3. job-tkgi.yaml file to run the benchmark as a job in tkgi cluster Reference Document for checks: https://network.pivotal.io/products/p-compliance-scanner/#/releases/1248397 * add Support VMware Tanzu(TKGI) Benchmarks v1.2.53 with this change, we are adding 1. latest kubernetes cis benchmarks for VMware Tanzu1.2.53 2. logic to kube-bench so that kube-bench can auto detect vmware platform, will be able to execute the respective vmware tkgi compliance checks. 3. job-tkgi.yaml file to run the benchmark as a job in tkgi cluster Reference Document for checks: https://network.pivotal.io/products/p-compliance-scanner/#/releases/1248397
55 lines
1.4 KiB
YAML
55 lines
1.4 KiB
YAML
---
|
|
apiVersion: batch/v1
|
|
kind: Job
|
|
metadata:
|
|
name: kube-bench
|
|
spec:
|
|
template:
|
|
spec:
|
|
hostPID: true
|
|
containers:
|
|
- name: kube-bench
|
|
image: docker.io/aquasec/kube-bench:latest
|
|
command:
|
|
[
|
|
"kube-bench",
|
|
"run",
|
|
"--targets",
|
|
"node,policies",
|
|
"--benchmark",
|
|
"tkgi-1.2.53",
|
|
]
|
|
volumeMounts:
|
|
- name: var-vcap-jobs
|
|
mountPath: /var/vcap/jobs
|
|
readOnly: true
|
|
- name: var-vcap-packages
|
|
mountPath: /var/vcap/packages
|
|
readOnly: true
|
|
- name: var-vcap-store-etcd
|
|
mountPath: /var/vcap/store/etcd
|
|
readOnly: true
|
|
- name: var-vcap-sys
|
|
mountPath: /var/vcap/sys
|
|
readOnly: true
|
|
- name: etc-kubernetes
|
|
mountPath: /etc/kubernetes
|
|
readOnly: true
|
|
restartPolicy: Never
|
|
volumes:
|
|
- name: var-vcap-jobs
|
|
hostPath:
|
|
path: "/var/vcap/jobs"
|
|
- name: var-vcap-packages
|
|
hostPath:
|
|
path: "/var/vcap/packages"
|
|
- name: var-vcap-store-etcd
|
|
hostPath:
|
|
path: "/var/vcap/store/etcd"
|
|
- name: var-vcap-sys
|
|
hostPath:
|
|
path: "/var/vcap/sys"
|
|
- name: etc-kubernetes
|
|
hostPath:
|
|
path: "/etc/kubernetes"
|