1b3e8f8ed93d76009a3423aa1be4ce4153b14dea
[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       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
44       containers:
45       - image: {{ .Values.image.zookeeper }}
46         imagePullPolicy: {{ .Values.pullPolicy }}
47         name: zookeeper
48         ports:
49         - containerPort: 2181
50         readinessProbe:
51           tcpSocket:
52             port: 2181
53           initialDelaySeconds: 5
54           periodSeconds: 10
55         volumeMounts:
56         - mountPath: /etc/localtime
57           name: localtime
58           readOnly: true
59         - mountPath: /opt/zookeeper-3.4.9/data
60           name: zookeeper-data
61       restartPolicy: Always
62       volumes:
63       - name: localtime
64         hostPath:
65           path: /etc/localtime
66       - name: zookeeper-data
67         persistentVolumeClaim:
68           claimName: message-router-zookeeper
69       imagePullSecrets:
70       - name: "{{ .Values.nsPrefix }}-docker-registry-key"
71 #{{ end }}
72