blob: d232c2eedea910eb157dec6f45f8fe1fa745e73f [file] [log] [blame]
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00001# 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
yurynfcef9942017-10-26 17:10:50 +030015#{{ if not .Values.disableMessageRouterZookeeper }}
Mandeep Khindad6ea9872017-06-24 11:49:37 -040016apiVersion: extensions/v1beta1
17kind: Deployment
18metadata:
BorislavG8bfc6cf2018-02-27 15:04:26 +000019 name: message-router-zookeeper
20 namespace: "{{ .Values.nsPrefix }}"
Mandeep Khindad6ea9872017-06-24 11:49:37 -040021spec:
vaibhav_16deca6719fe2018-02-14 09:48:43 +000022 replicas: {{ .Values.zookeeperReplicas }}
Mandeep Khindad6ea9872017-06-24 11:49:37 -040023 selector:
24 matchLabels:
25 app: zookeeper
26 template:
27 metadata:
28 labels:
29 app: zookeeper
BorislavG8bfc6cf2018-02-27 15:04:26 +000030 name: message-router-zookeeper
Mandeep Khindad6ea9872017-06-24 11:49:37 -040031 spec:
32 containers:
Mandeep Khindadeab10d2017-08-24 23:50:10 +000033 - image: {{ .Values.image.zookeeper }}
34 imagePullPolicy: {{ .Values.pullPolicy }}
Mandeep Khindad6ea9872017-06-24 11:49:37 -040035 name: zookeeper
36 ports:
37 - containerPort: 2181
38 readinessProbe:
39 tcpSocket:
40 port: 2181
41 initialDelaySeconds: 5
42 periodSeconds: 10
43 volumeMounts:
yuryn8b3bc5a2017-09-13 19:21:03 +030044 - mountPath: /etc/localtime
45 name: localtime
46 readOnly: true
Mandeep Khindad6ea9872017-06-24 11:49:37 -040047 - mountPath: /opt/zookeeper-3.4.9/data
48 name: zookeeper-data
49 restartPolicy: Always
50 volumes:
yuryn8b3bc5a2017-09-13 19:21:03 +030051 - name: localtime
52 hostPath:
53 path: /etc/localtime
Mandeep Khindad6ea9872017-06-24 11:49:37 -040054 - name: zookeeper-data
BorislavG66a9a5c2017-09-06 15:12:46 +030055 persistentVolumeClaim:
56 claimName: message-router-zookeeper
Borislav Glozman5197e2e2017-07-24 10:45:28 +030057 imagePullSecrets:
Mandeep Khinda0e8f8892017-08-25 03:31:17 +000058 - name: "{{ .Values.nsPrefix }}-docker-registry-key"
vaibhav_16deca6719fe2018-02-14 09:48:43 +000059#{{ end }}