[ONAP-wide] Replace .Release.Name with common.release
[oom.git] / kubernetes / dmaap / components / dmaap-dr-prov / templates / deployment.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 apiVersion: extensions/v1beta1
15 kind: Deployment
16 metadata:
17   name: {{ include "common.fullname" . }}
18   namespace: {{ include "common.namespace" . }}
19   labels:
20     app: {{ include "common.name" . }}
21     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
22     release: {{ include "common.release" . }}
23     heritage: {{ .Release.Service }}
24 spec:
25   replicas: {{ .Values.replicaCount }}
26   template:
27     metadata:
28       labels:
29         app: {{ include "common.name" . }}
30         release: {{ include "common.release" . }}
31     spec:
32       hostname: {{ .Values.global.dmaapDrProvName }}
33       initContainers:
34         - name: {{ include "common.name" . }}-readiness
35           image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
36           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
37           command:
38           - /root/ready.py
39           args:
40           - --container-name
41           - {{ .Values.config.dmaapDrDb.mariadbContName }}
42           env:
43           - name: NAMESPACE
44             valueFrom:
45               fieldRef:
46                 apiVersion: v1
47                 fieldPath: metadata.namespace
48         {{- if .Values.global.aafEnabled }}
49         - name: {{ include "common.name" . }}-aaf-readiness
50           image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
51           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
52           command:
53           - /root/ready.py
54           args:
55           - --container-name
56           - aaf-locate
57           env:
58           - name: NAMESPACE
59             valueFrom:
60               fieldRef:
61                 apiVersion: v1
62                 fieldPath: metadata.namespace
63         - name: {{ include "common.name" . }}-dr-prov-aaf-config
64           image: "{{ include "common.repository" . }}/{{ .Values.global.aafAgentImage }}"
65           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
66           command: ["bash","-c","exec /opt/app/aaf_config/bin/agent.sh"]
67           volumeMounts:
68           - mountPath: {{ .Values.persistence.aafCredsPath }}
69             name: {{ include "common.fullname" . }}-aaf-config-vol
70           env:
71             - name: APP_FQI
72               value: "{{ .Values.aafConfig.fqi }}"
73             - name: aaf_locate_url
74               value: "https://aaf-locate.{{ .Release.Namespace }}:8095"
75             - name: aaf_locator_container
76               value: "{{ .Values.global.aafLocatorContainer }}"
77             - name: aaf_locator_container_ns
78               value: "{{ .Release.Namespace }}"
79             - name: aaf_locator_fqdn
80               value: "{{ .Values.aafConfig.fqdn }}"
81             - name: aaf_locator_public_fqdn
82               value: "{{.Values.aafConfig.publicFqdn}}"
83             - name: aaf_locator_app_ns
84               value: "{{ .Values.global.aafAppNs }}"
85             - name: DEPLOY_FQI
86               value: "{{ .Values.aafConfig.aafDeployFqi }}"
87             - name: DEPLOY_PASSWORD
88               value: "{{ .Values.aafConfig.aafDeployPass }}"
89             - name: cadi_longitude
90               value: "{{ .Values.aafConfig.cadiLongitude }}"
91             - name: cadi_latitude
92               value: "{{ .Values.aafConfig.cadiLatitude }}"
93         - name: {{ include "common.name" . }}-permission-fixer
94           image: "{{ .Values.global.busyBoxRepository }}/{{ .Values.global.busyBoxImage }}"
95           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
96           volumeMounts:
97           - mountPath: {{ .Values.persistence.aafCredsPath }}
98             name: {{ include "common.fullname" . }}-aaf-config-vol
99           command: ["chown","-Rf","1000:1001", "/opt/app/"]
100         {{ end }}
101       containers:
102         - name: {{ include "common.name" . }}
103           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
104           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
105           ports:
106           - containerPort: {{ .Values.config.dmaapDrProv.internalPort }}
107           {{- if eq .Values.liveness.enabled true }}
108           livenessProbe:
109             tcpSocket:
110               port: {{ .Values.config.dmaapDrProv.internalPort }}
111             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
112             periodSeconds: {{ .Values.liveness.periodSeconds }}
113           {{ end -}}
114           readinessProbe:
115             tcpSocket:
116               port: {{ .Values.config.dmaapDrProv.internalPort }}
117             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
118             periodSeconds: {{ .Values.readiness.periodSeconds }}
119           volumeMounts:
120           {{- if .Values.global.aafEnabled }}
121           - mountPath: {{ .Values.persistence.aafCredsPath }}
122             name: {{ include "common.fullname" . }}-aaf-config-vol
123           {{- end }}
124           - mountPath: /etc/localtime
125             name: localtime
126             readOnly: false
127           - mountPath: /opt/app/datartr/etc/provserver.properties
128             name: {{ include "common.fullname" . }}-config
129             subPath: provserver.properties
130           - mountPath: /opt/app/datartr/etc/logback.xml
131             name: {{ include "common.fullname" . }}-log-conf
132             subPath: logback.xml
133           - mountPath: {{ .Values.global.loggingDirectory }}
134             name: {{ include "common.fullname" . }}-logs
135           resources:
136 {{ include "common.resources" . }}
137         {{- if .Values.nodeSelector }}
138         nodeSelector:
139 {{ toYaml .Values.nodeSelector | indent 10 }}
140         {{- end -}}
141         {{- if .Values.affinity }}
142         affinity:
143 {{ toYaml .Values.affinity | indent 10 }}
144         {{- end -}}
145       # Filebeat sidecar container
146         - name: {{ include "common.name" . }}-filebeat-onap
147           image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
148           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
149           volumeMounts:
150           - name: {{ include "common.fullname" . }}-filebeat-conf
151             mountPath: /usr/share/filebeat/filebeat.yml
152             subPath: filebeat.yml
153           - name: {{ include "common.fullname" . }}-data-filebeat
154             mountPath: /usr/share/filebeat/data
155           - name: {{ include "common.fullname" . }}-logs
156             mountPath: /var/log/onap/datarouter-prov
157       volumes:
158       - name: localtime
159         hostPath:
160           path: /etc/localtime
161       - name: {{ include "common.fullname" . }}-config
162         configMap:
163           name: {{ include "common.fullname" . }}-configmap
164           items:
165           - key: provserver.properties
166             path: provserver.properties
167       - name: {{ include "common.fullname" . }}-log-conf
168         configMap:
169           name: {{ include "common.fullname" . }}-log
170       - name: {{ include "common.fullname" . }}-filebeat-conf
171         configMap:
172           name: {{ include "common.fullname" . }}-dmaap-dr-prov-filebeat-configmap
173       - name: {{ include "common.fullname" . }}-data-filebeat
174         emptyDir: {}
175       - name:  {{ include "common.fullname" . }}-logs
176         emptyDir: {}
177       {{- if .Values.global.aafEnabled }}
178       - name: {{ include "common.fullname" . }}-aaf-config-vol
179         {{- if .Values.persistence.enabled }}
180         persistentVolumeClaim:
181           claimName: {{ include "common.fullname" . }}-aaf-props
182         {{- else }}
183         emptyDir: {}
184         {{- end }}
185       {{- end }}
186       imagePullSecrets:
187       - name: "{{ include "common.namespace" . }}-docker-registry-key"