-
Notifications
You must be signed in to change notification settings - Fork 290
/
values.yaml
57 lines (50 loc) · 1.02 KB
/
values.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
---
nameOverride: ""
fullnameOverride: ""
provider: eks
cronjob:
schedule: "0 0 1 * *"
command: []
image:
repository: aquasec/kube-bench
tag: v0.8.0
pullPolicy: IfNotPresent
serviceAccount:
# Specifies whether a service account should be created
create: false
# Annotations to add to the service account
annotations: {}
securityContext: {}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000
extraLabels: {}
podLabels: {}
resources: {}
nodeSelector: {}
tolerations: []
affinity: {}
concurrencyPolicy: Forbid
volumes:
- name: var-lib-kubelet
hostPath:
path: "/var/lib/kubelet"
- name: etc-systemd
hostPath:
path: "/etc/systemd"
- name: etc-kubernetes
hostPath:
path: "/etc/kubernetes"
volumeMounts:
- name: var-lib-kubelet
mountPath: /var/lib/kubelet
readOnly: true
- name: etc-systemd
mountPath: /etc/systemd
readOnly: true
- name: etc-kubernetes
mountPath: /etc/kubernetes
readOnly: true