blob: a0c13802bb33b5ee108f66efd3ed33fd70c9a5a5 [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
Jerome Douceraind18576b2018-03-17 14:21:42 -040066 subPath: MsgRtrApi.properties
Mandeep Khindad6ea9872017-06-24 11:49:37 -040067 name: appprops
68 - mountPath: /appl/dmaapMR1/etc/cadi.properties
Jerome Douceraind18576b2018-03-17 14:21:42 -040069 subPath: cadi.properties
Mandeep Khindad6ea9872017-06-24 11:49:37 -040070 name: cadi
71 - mountPath: /appl/dmaapMR1/etc/keyfile
Jerome Douceraind18576b2018-03-17 14:21:42 -040072 subPath: mykey
Mandeep Khindad6ea9872017-06-24 11:49:37 -040073 name: mykey
74 restartPolicy: Always
75 volumes:
yuryn8b3bc5a2017-09-13 19:21:03 +030076 - name: localtime
77 hostPath:
78 path: /etc/localtime
Mandeep Khindad6ea9872017-06-24 11:49:37 -040079 - name: appprops
Jerome Douceraind18576b2018-03-17 14:21:42 -040080 configMap:
81 name: mr-dmaap-msgrtrapi-prop-configmap
Mandeep Khindad6ea9872017-06-24 11:49:37 -040082 - name: cadi
Jerome Douceraind18576b2018-03-17 14:21:42 -040083 configMap:
84 name: mr-dmaap-cadi-prop-configmap
Mandeep Khindad6ea9872017-06-24 11:49:37 -040085 - name: mykey
Jerome Douceraind18576b2018-03-17 14:21:42 -040086 configMap:
87 name: mr-dmaap-mykey-configmap
Borislav Glozman5197e2e2017-07-24 10:45:28 +030088 imagePullSecrets:
Mandeep Khinda0e8f8892017-08-25 03:31:17 +000089 - name: "{{ .Values.nsPrefix }}-docker-registry-key"
kiranya3561e012017-11-22 13:45:35 +000090{{ end }}
Jerome Douceraind18576b2018-03-17 14:21:42 -040091