License addition in all yamls
[oom.git] / kubernetes / dcae / templates / dcae-dmaap.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.disableDcaeDmaap }}
16 apiVersion: extensions/v1beta1
17 kind: Deployment
18 metadata:
19   name: dmaap
20   namespace: "{{ .Values.nsPrefix }}"
21 spec:
22   selector:
23     matchLabels:
24       app: dmaap
25   template:
26     metadata:
27       labels:
28         app: dmaap
29       name: dmaap
30     spec:
31       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
48       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"
80 #{{ end }}