2021-05-11 08:52:24 +00:00
|
|
|
---
|
|
|
|
apiVersion: batch/v1
|
|
|
|
kind: Job
|
|
|
|
metadata:
|
|
|
|
name: kube-bench
|
|
|
|
spec:
|
|
|
|
template:
|
|
|
|
spec:
|
|
|
|
hostPID: true
|
|
|
|
containers:
|
|
|
|
- name: kube-bench
|
|
|
|
image: aquasec/kube-bench:latest
|
2021-07-07 15:21:30 +00:00
|
|
|
command: ["kube-bench", "run", "--targets", "node,policies,managedservices", "--benchmark", "ack-1.0"]
|
2021-05-11 08:52:24 +00:00
|
|
|
volumeMounts:
|
|
|
|
- name: var-lib-kubelet
|
|
|
|
mountPath: /var/lib/kubelet
|
|
|
|
readOnly: true
|
|
|
|
- name: etc-systemd
|
|
|
|
mountPath: /etc/systemd
|
|
|
|
readOnly: true
|
|
|
|
- name: etc-kubernetes
|
|
|
|
mountPath: /etc/kubernetes
|
|
|
|
readOnly: true
|
|
|
|
restartPolicy: Never
|
|
|
|
volumes:
|
|
|
|
- name: var-lib-kubelet
|
|
|
|
hostPath:
|
|
|
|
path: "/var/lib/kubelet"
|
|
|
|
- name: etc-systemd
|
|
|
|
hostPath:
|
|
|
|
path: "/etc/systemd"
|
|
|
|
- name: etc-kubernetes
|
|
|
|
hostPath:
|
|
|
|
path: "/etc/kubernetes"
|