-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvalues.yaml
66 lines (57 loc) · 1.77 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
58
59
60
61
62
63
64
65
66
# Default values for kube-bench.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
replicaCount: 1
image:
# --image repository of kube-bench-adapter
repository: mritunjay394/policyreport
pullPolicy: Always
# Overrides the image tag whose default is the chart appVersion.
# --tag of image repository of kube-bench-adapter
tag: "v0.1.0"
imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""
serviceAccount:
# Specifies whether a service account should be created
create: true
# Annotations to add to the service account
annotations: {}
# The name of the service account to use.
# If not set and create is true, a name is generated using the fullname template
name: ""
rbac:
create: true
cronjob:
# -- cronjob schedule, default is 2 mins.
schedule: '"*/2 * * * *"'
kubeBench:
command: "policyreport"
# -- name of kube-bench adapter cluster policy report
name: "kube-bench"
# -- category of the policy report
category: "CIS Benchmarks"
# -- specifies namespace where kube-bench job will run
namespace: "default"
# -- kube-bench image used for the adapter
kubebenchImg: "aquasec/kube-bench:v0.6.6"
# -- absolute path to the kubeconfig file
kubeconfig: "$HOME/.kube/config"
# -- name of provider of YAML for kube-bench job, allowed values: job.yaml, job-master.yaml, job-node.yaml, job-ack.yaml, job-aks.yaml, job-eks-asff.yaml, job-eks.yaml, job-gke.yaml, job-iks.yaml
yaml: "job.yaml"
service:
type: NodePort
port: 80
ingress:
enabled: false
annotations: {}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
hosts:
- host: chart-example.local
paths:
- path: /
backend:
serviceName: chart-example.local
servicePort: 80
tls: []