2020-03-03 14:51:48 +00:00
|
|
|
---
|
|
|
|
apiVersion: batch/v1
|
|
|
|
kind: Job
|
|
|
|
metadata:
|
|
|
|
name: kube-bench
|
|
|
|
spec:
|
|
|
|
template:
|
|
|
|
spec:
|
|
|
|
hostPID: true
|
|
|
|
containers:
|
|
|
|
- name: kube-bench
|
2022-06-17 15:01:32 +00:00
|
|
|
image: docker.io/aquasec/kube-bench:latest
|
|
|
|
command:
|
|
|
|
[
|
|
|
|
"kube-bench",
|
|
|
|
"run",
|
|
|
|
"--targets",
|
|
|
|
"node,policies,managedservices",
|
|
|
|
"--benchmark",
|
|
|
|
"gke-1.2.0",
|
|
|
|
]
|
2020-03-03 14:51:48 +00:00
|
|
|
volumeMounts:
|
|
|
|
- name: var-lib-kubelet
|
|
|
|
mountPath: /var/lib/kubelet
|
2021-08-30 12:33:59 +00:00
|
|
|
readOnly: true
|
2020-03-03 14:51:48 +00:00
|
|
|
- name: etc-systemd
|
|
|
|
mountPath: /etc/systemd
|
2021-08-30 12:33:59 +00:00
|
|
|
readOnly: true
|
2020-03-03 14:51:48 +00:00
|
|
|
- name: etc-kubernetes
|
|
|
|
mountPath: /etc/kubernetes
|
2021-08-30 12:33:59 +00:00
|
|
|
readOnly: true
|
|
|
|
- name: home-kubernetes
|
|
|
|
mountPath: /home/kubernetes
|
|
|
|
readOnly: true
|
2020-03-03 14:51:48 +00:00
|
|
|
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"
|
2021-08-30 12:33:59 +00:00
|
|
|
- name: home-kubernetes
|
|
|
|
hostPath:
|
|
|
|
path: "/home/kubernetes"
|