-
Notifications
You must be signed in to change notification settings - Fork 135
/
Copy pathvalues.yaml
94 lines (77 loc) · 2.15 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# Default values for kritis.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
replicaCount: 1
image:
tag: v0.2.2
image: kritis-server
name: kritis-server
pullPolicy: Always
service:
type: ClusterIP
port: 443
resources: {}
# We usually recommend not to specify default resources and to leave this as a conscious
# choice for the user. This also increases chances charts run on environments with little
# resources, such as Minikube. If you do want to specify resources, uncomment the following
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
nodeSelector: {}
tolerations: []
affinity: {}
serviceName: kritis-validation-hook
serviceLabel: kritis-validation-hook
serviceNamePods: kritis-validation-hook
serviceNameDeployments: kritis-validation-hook-deployments
tlsSecretName: tls-webhook-secret
csrName: tls-webhook-secret-cert
clusterRoleBindingName: kritis-clusterrolebinding
clusterRoleName: kritis-clusterrole
kritisInstallLabel: "kritis.grafeas.io/install"
repository: gcr.io/kritis-project/
# kritis-server-webhook.yaml values
caBundle: ""
serviceNamespace: "default"
gacSecret:
name: "gac-ca-admin"
path: "gac.json"
preinstall:
serviceAccount: "kritis-preinstall-serviceaccount"
clusterRoleBinding: "kritis-preinstall-clusterrolebinding"
createNewCSR: "--create-new-csr=true"
pod:
name: "kritis-preinstall"
image: preinstall
command: ["/preinstall"]
postinstall:
pod:
name: "kritis-postinstall"
image: postinstall
command: ["/postinstall"]
predelete:
deleteCSR: "--delete-csr=true"
deleteCRDs: "--delete-crd=true"
pod:
name: "kritis-predelete"
image: predelete
command: ["/predelete"]
# Certificates for Grafeas mutual authentication
certificates:
name: kritis-ssl-certs
ca: |-
-----BEGIN CERTIFICATE-----
...
-----END CERTIFICATE-----
cert: |-
-----BEGIN CERTIFICATE-----
...
-----END CERTIFICATE-----
key: |-
-----BEGIN RSA PRIVATE KEY-----
...
-----END RSA PRIVATE KEY-----