2020-01-06 09:18:25 +00:00
|
|
|
---
|
2019-04-11 17:45:16 +00:00
|
|
|
apiVersion: batch/v1
|
|
|
|
kind: Job
|
|
|
|
metadata:
|
|
|
|
name: kube-bench
|
|
|
|
spec:
|
|
|
|
template:
|
|
|
|
spec:
|
|
|
|
hostPID: true
|
|
|
|
containers:
|
2020-01-06 09:18:25 +00:00
|
|
|
- name: kube-bench
|
|
|
|
# Push the image to your ECR and then refer to it here
|
2021-02-22 14:28:36 +00:00
|
|
|
# image: <ID.dkr.ecr.region.amazonaws.com/aquasec/kube-bench:ref>
|
|
|
|
image: aquasec/kube-bench:latest
|
|
|
|
# To send findings to AWS Security Hub, refer to `job-eks-asff.yaml` instead
|
2021-07-07 15:21:30 +00:00
|
|
|
command: ["kube-bench", "run", "--targets", "node", "--benchmark", "eks-1.0"]
|
2020-01-06 09:18:25 +00:00
|
|
|
volumeMounts:
|
|
|
|
- name: var-lib-kubelet
|
|
|
|
mountPath: /var/lib/kubelet
|
2020-01-28 15:45:31 +00:00
|
|
|
readOnly: true
|
2020-01-06 09:18:25 +00:00
|
|
|
- name: etc-systemd
|
|
|
|
mountPath: /etc/systemd
|
2020-01-28 15:45:31 +00:00
|
|
|
readOnly: true
|
2020-01-06 09:18:25 +00:00
|
|
|
- name: etc-kubernetes
|
|
|
|
mountPath: /etc/kubernetes
|
2020-01-28 15:45:31 +00:00
|
|
|
readOnly: true
|
2020-01-06 09:18:25 +00:00
|
|
|
restartPolicy: Never
|
|
|
|
volumes:
|
2019-04-11 17:45:16 +00:00
|
|
|
- name: var-lib-kubelet
|
2020-01-06 09:18:25 +00:00
|
|
|
hostPath:
|
|
|
|
path: "/var/lib/kubelet"
|
2019-04-11 17:45:16 +00:00
|
|
|
- name: etc-systemd
|
2020-01-06 09:18:25 +00:00
|
|
|
hostPath:
|
|
|
|
path: "/etc/systemd"
|
2019-04-11 17:45:16 +00:00
|
|
|
- name: etc-kubernetes
|
2020-01-06 09:18:25 +00:00
|
|
|
hostPath:
|
|
|
|
path: "/etc/kubernetes"
|