blob: f81da769fdc24f173b07afc9b96b740d876da6d0 [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.disableMessageRouterDmaap }}
Mandeep Khindad6ea9872017-06-24 11:49:37 -040016apiVersion: extensions/v1beta1
17kind: Deployment
18metadata:
BorislavG8bfc6cf2018-02-27 15:04:26 +000019 name: message-router-dmaap
20 namespace: "{{ .Values.nsPrefix }}"
Mandeep Khindad6ea9872017-06-24 11:49:37 -040021spec:
vaibhav_16deca6719fe2018-02-14 09:48:43 +000022 replicas: {{ .Values.dmaapReplicas }}
Mandeep Khindad6ea9872017-06-24 11:49:37 -040023 selector:
24 matchLabels:
25 app: dmaap
26 template:
27 metadata:
28 labels:
29 app: dmaap
BorislavG8bfc6cf2018-02-27 15:04:26 +000030 name: message-router-dmaap
Mandeep Khindad6ea9872017-06-24 11:49:37 -040031 spec:
kiranya3561e012017-11-22 13:45:35 +000032 initContainers:
33 - command:
34 - /root/ready.py
35 args:
36 - --container-name
37 - global-kafka
38 - --container-name
39 - zookeeper
40 env:
41 - name: NAMESPACE
42 valueFrom:
43 fieldRef:
44 apiVersion: v1
45 fieldPath: metadata.namespace
46 image: {{ .Values.image.readiness }}
47 imagePullPolicy: {{ .Values.pullPolicy }}
48 name: dmaap-readiness
Mandeep Khindad6ea9872017-06-24 11:49:37 -040049 containers:
kerenj9e77b212017-08-23 08:40:41 +000050 - image: {{ .Values.image.dmaap }}
51 imagePullPolicy: {{ .Values.pullPolicy }}
Mandeep Khindad6ea9872017-06-24 11:49:37 -040052 name: dmaap
53 ports:
54 - containerPort: 3904
55 - containerPort: 3905
56 readinessProbe:
57 tcpSocket:
58 port: 3904
59 initialDelaySeconds: 5
60 periodSeconds: 10
61 volumeMounts:
yuryn8b3bc5a2017-09-13 19:21:03 +030062 - mountPath: /etc/localtime
63 name: localtime
64 readOnly: true
Mandeep Khindad6ea9872017-06-24 11:49:37 -040065 - mountPath: /appl/dmaapMR1/bundleconfig/etc/appprops/MsgRtrApi.properties
66 name: appprops
67 - mountPath: /appl/dmaapMR1/etc/cadi.properties
68 name: cadi
69 - mountPath: /appl/dmaapMR1/etc/keyfile
70 name: mykey
71 restartPolicy: Always
72 volumes:
yuryn8b3bc5a2017-09-13 19:21:03 +030073 - name: localtime
74 hostPath:
75 path: /etc/localtime
Mandeep Khindad6ea9872017-06-24 11:49:37 -040076 - name: appprops
77 hostPath:
kerenje2e63502018-02-25 12:22:53 +000078 path: {{ .Values.dataRootDir }}/{{ .Values.nsPrefix }}/message-router/dmaap/MsgRtrApi.properties
Mandeep Khindad6ea9872017-06-24 11:49:37 -040079 - name: cadi
80 hostPath:
kerenje2e63502018-02-25 12:22:53 +000081 path: {{ .Values.dataRootDir }}/{{ .Values.nsPrefix }}/message-router/dmaap/cadi.properties
Mandeep Khindad6ea9872017-06-24 11:49:37 -040082 - name: mykey
Keren Joseph4b7026e2017-09-12 10:13:15 +030083 hostPath:
kerenje2e63502018-02-25 12:22:53 +000084 path: {{ .Values.dataRootDir }}/{{ .Values.nsPrefix }}/message-router/dmaap/mykey
Borislav Glozman5197e2e2017-07-24 10:45:28 +030085 imagePullSecrets:
Mandeep Khinda0e8f8892017-08-25 03:31:17 +000086 - name: "{{ .Values.nsPrefix }}-docker-registry-key"
kiranya3561e012017-11-22 13:45:35 +000087{{ end }}