blob: 1b3e8f8ed93d76009a3423aa1be4ce4153b14dea [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:
Jerome Douceraind18576b2018-03-17 14:21:42 -040032 initContainers:
33 - command:
34 - bash
35 args:
36 - -c
37 - "if [ -d /var/tmp/version-2 ]; then echo nothing to do; else cp -a /opt/config/src/message-router/dcae-startup-vm-message-router/docker_files/data-zookeeper/* /var/tmp/; fi"
38 image: {{ .Values.image.config }}
39 imagePullPolicy: {{ .Values.pullPolicy }}
40 volumeMounts:
41 - mountPath: /var/tmp
42 name: zookeeper-data
43 name: zookeeper-primer
Mandeep Khindad6ea9872017-06-24 11:49:37 -040044 containers:
Mandeep Khindadeab10d2017-08-24 23:50:10 +000045 - image: {{ .Values.image.zookeeper }}
46 imagePullPolicy: {{ .Values.pullPolicy }}
Mandeep Khindad6ea9872017-06-24 11:49:37 -040047 name: zookeeper
48 ports:
49 - containerPort: 2181
50 readinessProbe:
51 tcpSocket:
52 port: 2181
53 initialDelaySeconds: 5
54 periodSeconds: 10
55 volumeMounts:
yuryn8b3bc5a2017-09-13 19:21:03 +030056 - mountPath: /etc/localtime
57 name: localtime
58 readOnly: true
Mandeep Khindad6ea9872017-06-24 11:49:37 -040059 - mountPath: /opt/zookeeper-3.4.9/data
60 name: zookeeper-data
61 restartPolicy: Always
62 volumes:
yuryn8b3bc5a2017-09-13 19:21:03 +030063 - name: localtime
64 hostPath:
65 path: /etc/localtime
Mandeep Khindad6ea9872017-06-24 11:49:37 -040066 - name: zookeeper-data
BorislavG66a9a5c2017-09-06 15:12:46 +030067 persistentVolumeClaim:
68 claimName: message-router-zookeeper
Borislav Glozman5197e2e2017-07-24 10:45:28 +030069 imagePullSecrets:
Mandeep Khinda0e8f8892017-08-25 03:31:17 +000070 - name: "{{ .Values.nsPrefix }}-docker-registry-key"
vaibhav_16deca6719fe2018-02-14 09:48:43 +000071#{{ end }}
Jerome Douceraind18576b2018-03-17 14:21:42 -040072