-
Notifications
You must be signed in to change notification settings - Fork 211
/
Copy pathvalues.yaml
96 lines (77 loc) · 2.17 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
95
96
## Default values for zookeeper-operator.
## This is a YAML-formatted file.
## Declare variables to be passed into your templates.
global:
# Lists the secrets you need to use to pull zookeeper-operator image from a private registry.
imagePullSecrets: []
# - private-registry-key
image:
repository: pravega/zookeeper-operator
tag: 0.2.15
pullPolicy: IfNotPresent
securityContext: {}
# runAsUser: 1001
# runAsGroup: 1001
## Additional labels to be added to resources
labels: {}
## Install RBAC roles and bindings.
rbac:
create: true
## Service account name and whether to create it.
serviceAccount:
create: true
name: zookeeper-operator
## Optionally specify an array of imagePullSecrets. Will override the global parameter if set
# imagePullSecrets:
## Whether to create the CRD.
crd:
create: true
## Specifies which namespace(s) the Operator should watch over.
## Default: An empty string means all namespaces.
## Multiple namespaces can be configured using a comma separated list of namespaces
watchNamespace: ""
## Operator pod resources
resources: {}
# limits:
# cpu: 2
# memory: 256Mi
# requests:
# cpu: 1
# memory: 128Mi
# Scheduling constraints
nodeSelector: {}
affinity: {}
tolerations: []
# Pod annotations
annotations: {}
hooks:
## Optionally specify an array of imagePullSecrets. Will override the global parameter if set
serviceAccount:
imagePullSecrets: []
backoffLimit: 10
image:
repository: lachlanevenson/k8s-kubectl
tag: v1.23.2
## Whether to create pre-delete hook which ensures that
## the operator cannot be deleted till the zookeeper cluster
## custom resources have been cleaned up
delete: true
securityContext: {}
# runAsUser: 1001
# runAsGroup: 1001
## Additional Sidecars Configuration.
additionalSidecars: {}
# - name: nginx
# image: nginx:latest
## Additional Environment Variables.
additionalEnv: {}
## Additional volumes required for sidecars.
additionalVolumes: {}
# - name: volume1
# emptyDir: {}
# - name: volume2
# emptyDir: {}
disableFinalizer: false
## In order to enable gathering metrics by Prometheus etc... bind to 0.0.0.0
metricsBindAddress: 127.0.0.1
metricsPort: "6000"