mirror of
https://github.com/aquasecurity/kube-bench.git
synced 2024-11-15 20:39:08 +00:00
a34047c105
* Adding eks-stig-kubernetes-v1r6 * Fixing lint errors * Reformatting texts * Removing pinned docker tag * Updating Expected Stig Output Co-authored-by: EC2 Default User <ec2-user@ip-10-0-44-222.ec2.internal>
57 lines
1.6 KiB
YAML
57 lines
1.6 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: docker.io/aquasec/kube-bench:latest
|
|
command: [
|
|
"kube-bench",
|
|
"run",
|
|
"--benchmark",
|
|
"eks-stig-kubernetes-v1r6",
|
|
]
|
|
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/local/mount-from-host/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/local/mount-from-host/bin
|
|
- name: kind-bin
|
|
mountPath: /kind/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"
|
|
- name: kind-bin
|
|
hostPath:
|
|
path: "/kind/bin"
|