forked from pravega/zookeeper-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
values.yaml
110 lines (98 loc) · 2.16 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
replicas: 3
maxUnavailableReplicas:
image:
repository: pravega/zookeeper
tag: 0.2.14
pullPolicy: IfNotPresent
triggerRollingRestart: false
domainName:
labels: {}
ports: []
# - containerPort: 2181
# name: client
# - containerPort: 2888
# name: quorum
# - containerPort: 8080
# name: admin-server
# - containerPort: 7000
# name: metrics
kubernetesClusterDomain: "cluster.local"
probes:
readiness:
initialDelaySeconds: 10
periodSeconds: 10
failureThreshold: 3
successThreshold: 1
timeoutSeconds: 10
liveness:
initialDelaySeconds: 10
periodSeconds: 10
failureThreshold: 3
timeoutSeconds: 10
pod:
# labels: {}
# nodeSelector: {}
# affinity: {}
# resources: {}
# tolerations: []
# env: []
# annotations: {}
# securityContext: {}
# terminationGracePeriodSeconds: 30
serviceAccountName: zookeeper
# imagePullSecrets: []
adminServerService: {}
# annotations: {}
# external: false
clientService: {}
# annotations: {}
headlessService: {}
# annotations: {}
config:
# initLimit: 10
# tickTime: 2000
# syncLimit: 2
# globalOutstandingLimit: 1000
preAllocSize: 16384 # default 65536
# snapCount: 100000
# commitLogCount: 500
# snapSizeLimitInKb: 4194304
# maxCnxns: 0
# maxClientCnxns: 60
# minSessionTimeout: 4000
# maxSessionTimeout: 40000
# autoPurgeSnapRetainCount: 3
# autoPurgePurgeInterval: 1
# quorumListenOnAllIPs: false
# additionalConfig: {}
## configure the storage type
## accepted values : persistence/ephemeral
## default option is persistence
storageType: persistence
persistence:
storageClassName:
## specifying reclaim policy for PersistentVolumes
## accepted values - Delete / Retain
reclaimPolicy: Delete
annotations: {}
volumeSize: 20Gi
ephemeral:
emptydirvolumesource:
## specifying Medium for emptydirvolumesource
## accepted values - ""/Memory
medium: ""
sizeLimit: 20Gi
hooks:
image:
repository: lachlanevenson/k8s-kubectl
tag: v1.23.2
securityContext: {}
# runAsUser: 1001
# runAsGroup: 1001
backoffLimit: 10
pod:
annotations: {}
containers: []
volumes: []
volumeMounts: []
initContainers: []