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
|
|
|
|
image: <ID.dkr.ecr.region.amazonaws.com/aquasec/kube-bench:ref>
|
2020-11-23 19:43:53 +00:00
|
|
|
# Use the --asff flag if you would like to send findings to AWS Security Hub
|
|
|
|
# Note that this requires you to rebuild a version of the kube-bench image
|
|
|
|
# after editing the cfg/eks-1.0/config.yaml with your account information
|
|
|
|
# command: ["kube-bench", "node", "--benchmark", "eks-1.0", "--asff"]
|
2020-07-10 15:14:41 +00:00
|
|
|
command: ["kube-bench", "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"
|