d232c2eedea910eb157dec6f45f8fe1fa745e73f
[oom.git] / kubernetes / message-router / templates / message-router-zookeeper.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 #{{ if not .Values.disableMessageRouterZookeeper }}
16 apiVersion: extensions/v1beta1
17 kind: Deployment
18 metadata:
19   name: message-router-zookeeper
20   namespace: "{{ .Values.nsPrefix }}"
21 spec:
22   replicas: {{ .Values.zookeeperReplicas }}
23   selector:
24     matchLabels:
25       app: zookeeper
26   template:
27     metadata:
28       labels:
29         app: zookeeper
30       name: message-router-zookeeper
31     spec:
32       containers:
33       - image: {{ .Values.image.zookeeper }}
34         imagePullPolicy: {{ .Values.pullPolicy }}
35         name: zookeeper
36         ports:
37         - containerPort: 2181
38         readinessProbe:
39           tcpSocket:
40             port: 2181
41           initialDelaySeconds: 5
42           periodSeconds: 10
43         volumeMounts:
44         - mountPath: /etc/localtime
45           name: localtime
46           readOnly: true
47         - mountPath: /opt/zookeeper-3.4.9/data
48           name: zookeeper-data
49       restartPolicy: Always
50       volumes:
51       - name: localtime
52         hostPath:
53           path: /etc/localtime
54       - name: zookeeper-data
55         persistentVolumeClaim:
56           claimName: message-router-zookeeper
57       imagePullSecrets:
58       - name: "{{ .Values.nsPrefix }}-docker-registry-key"
59 #{{ end }}