mirror of
https://github.com/aquasecurity/kube-bench.git
synced 2024-10-31 20:39:14 +00:00
46 lines
1.2 KiB
YAML
46 lines
1.2 KiB
YAML
|
apiVersion: batch/v1
|
||
|
kind: Job
|
||
|
metadata:
|
||
|
name: kube-bench
|
||
|
spec:
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
app: kube-bench
|
||
|
spec:
|
||
|
hostPID: true
|
||
|
containers:
|
||
|
- name: kube-bench
|
||
|
image: aquasec/kube-bench:latest
|
||
|
command: ["kube-bench"]
|
||
|
volumeMounts:
|
||
|
- name: var-lib-etcd
|
||
|
mountPath: /var/lib/etcd
|
||
|
- name: var-lib-kubelet
|
||
|
mountPath: /var/lib/kubelet
|
||
|
- name: etc-systemd
|
||
|
mountPath: /etc/systemd
|
||
|
- name: etc-kubernetes
|
||
|
mountPath: /etc/kubernetes
|
||
|
# /usr/bin is mounted to access kubectl / kubelet, for auto-detecting the Kubernetes version.
|
||
|
# You can omit this mount if you specify --version as part of the command.
|
||
|
- name: usr-bin
|
||
|
mountPath: /usr/bin
|
||
|
restartPolicy: Never
|
||
|
volumes:
|
||
|
- name: var-lib-etcd
|
||
|
hostPath:
|
||
|
path: "/var/lib/etcd"
|
||
|
- name: var-lib-kubelet
|
||
|
hostPath:
|
||
|
path: "/var/lib/kubelet"
|
||
|
- name: etc-systemd
|
||
|
hostPath:
|
||
|
path: "/etc/systemd"
|
||
|
- name: etc-kubernetes
|
||
|
hostPath:
|
||
|
path: "/etc/kubernetes"
|
||
|
- name: usr-bin
|
||
|
hostPath:
|
||
|
path: "/usr/bin"
|