blob: 560da5f604145af7a9d92e3c082d87c778777986 [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.disableDcaeDmaap }}
Mike Elliott586f03b2017-09-08 12:46:15 -040016apiVersion: extensions/v1beta1
17kind: Deployment
18metadata:
19 name: dmaap
BorislavG8bfc6cf2018-02-27 15:04:26 +000020 namespace: "{{ .Values.nsPrefix }}"
Mike Elliott586f03b2017-09-08 12:46:15 -040021spec:
22 selector:
23 matchLabels:
24 app: dmaap
25 template:
26 metadata:
27 labels:
28 app: dmaap
29 name: dmaap
Mike Elliott586f03b2017-09-08 12:46:15 -040030 spec:
kiranyadc55bbc2017-11-22 14:22:04 +000031 initContainers:
32 - command:
33 - /root/ready.py
34 args:
35 - --container-name
36 - kafka
37 - --container-name
38 - zookeeper
39 env:
40 - name: NAMESPACE
41 valueFrom:
42 fieldRef:
43 apiVersion: v1
44 fieldPath: metadata.namespace
45 image: {{ .Values.image.readiness }}
46 imagePullPolicy: {{ .Values.pullPolicy }}
47 name: dmaap-readiness
Mike Elliott586f03b2017-09-08 12:46:15 -040048 containers:
49 - image: {{ .Values.image.dmaap }}
50 imagePullPolicy: {{ .Values.pullPolicy }}
51 name: dmaap
52 ports:
53 - containerPort: 3904
54 - containerPort: 3905
55 readinessProbe:
56 tcpSocket:
57 port: 3904
58 initialDelaySeconds: 5
59 periodSeconds: 10
60 volumeMounts:
61 - mountPath: /appl/dmaapMR1/bundleconfig/etc/appprops/MsgRtrApi.properties
62 name: appprops
63 - mountPath: /appl/dmaapMR1/etc/cadi.properties
64 name: cadi
65 - mountPath: /appl/dmaapMR1/etc/keyfile
66 name: mykey
67 restartPolicy: Always
68 volumes:
69 - name: appprops
70 hostPath:
71 path: /dockerdata-nfs/{{ .Values.nsPrefix }}/dcae/message-router/dmaap/MsgRtrApi.properties
72 - name: cadi
73 hostPath:
74 path: /dockerdata-nfs/{{ .Values.nsPrefix }}/dcae/message-router/dmaap/cadi.properties
75 - name: mykey
76 hostPath:
77 path: /dockerdata-nfs/{{ .Values.nsPrefix }}/dcae/message-router/dmaap/mykey
78 imagePullSecrets:
79 - name: "{{ .Values.nsPrefix }}-docker-registry-key"
kiranyadc55bbc2017-11-22 14:22:04 +000080#{{ end }}