blob: 47cdb51f2f61adc567e23bf5fb8b501fefb113f6 (
plain)
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
|
#{{ if not .Values.disableMessageRouterZookeeper }}
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: zookeeper
namespace: "{{ .Values.nsPrefix }}-message-router"
spec:
selector:
matchLabels:
app: zookeeper
template:
metadata:
labels:
app: zookeeper
name: zookeeper
spec:
containers:
- image: {{ .Values.image.zookeeper }}
imagePullPolicy: {{ .Values.pullPolicy }}
name: zookeeper
ports:
- containerPort: 2181
readinessProbe:
tcpSocket:
port: 2181
initialDelaySeconds: 5
periodSeconds: 10
volumeMounts:
- mountPath: /etc/localtime
name: localtime
readOnly: true
- mountPath: /opt/zookeeper-3.4.9/data
name: zookeeper-data
restartPolicy: Always
volumes:
- name: localtime
hostPath:
path: /etc/localtime
- name: zookeeper-data
persistentVolumeClaim:
claimName: message-router-zookeeper
imagePullSecrets:
- name: "{{ .Values.nsPrefix }}-docker-registry-key"
#{{ end }}
|