SDNC using shared mariadb-galera cluster
[oom.git] / kubernetes / sdnc / charts / dmaap-listener / 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
15 apiVersion: extensions/v1beta1
16 kind: Deployment
17 metadata:
18   name: {{ include "common.fullname" . }}
19   namespace: {{ include "common.namespace" . }}
20   labels:
21     app: {{ include "common.name" . }}
22     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
23     release: {{ .Release.Name }}
24     heritage: {{ .Release.Service }}
25 spec:
26   replicas: {{ .Values.replicaCount }}
27   template:
28     metadata:
29       labels:
30         app: {{ include "common.name" . }}
31         release: {{ .Release.Name }}
32     spec:
33       initContainers:
34       - command:
35         - /root/ready.py
36         args:
37         - --container-name
38         - {{ .Values.config.mariadbGalera.chartName }}
39         - --container-name
40         - {{ .Values.config.sdncChartName }}
41         - --container-name
42         - {{ .Values.config.msgRouterContainerName }}
43         env:
44         - name: NAMESPACE
45           valueFrom:
46             fieldRef:
47               apiVersion: v1
48               fieldPath: metadata.namespace
49         image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
50         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
51         name: {{ include "common.name" . }}-readiness
52       containers:
53       - command:
54         - /opt/onap/sdnc/dmaap-listener/bin/start-dmaap-listener.sh
55         name: {{ include "common.name" . }}
56         image: "{{ include "common.repository" . }}/{{ .Values.image }}"
57         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
58         env:
59         - name: PROPERTY_DIR
60           value: "{{ .Values.config.configDir }}"
61         - name: SDNC_CONFIG_DIR
62           value: "{{ .Values.config.configDir }}"
63         volumeMounts:
64         - mountPath: /etc/localtime
65           name: localtime
66           readOnly: true
67         - mountPath: {{ .Values.config.configDir }}/dblib.properties
68           name: properties
69           subPath: dblib.properties
70         - mountPath: {{ .Values.config.configDir }}/dhcpalert.properties
71           name: properties
72           subPath: dhcpalert.properties
73         - mountPath: {{ .Values.config.configDir }}/lcm.properties
74           name: properties
75           subPath: lcm.properties
76         - mountPath: {{ .Values.config.configDir }}/aai.properties
77           name: properties
78           subPath: aai.properties
79         resources:
80 {{ include "common.resources" . | indent 12 }}
81         {{- if .Values.nodeSelector }}
82         nodeSelector:
83 {{ toYaml .Values.nodeSelector | indent 10 }}
84         {{- end -}}
85         {{- if .Values.affinity }}
86         affinity:
87 {{ toYaml .Values.affinity | indent 10 }}
88         {{- end }}
89
90       volumes:
91         - name: localtime
92           hostPath:
93             path: /etc/localtime
94         - name: properties
95           configMap:
96             name: {{ include "common.fullname" . }}
97             defaultMode: 0644
98       imagePullSecrets:
99       - name: "{{ include "common.namespace" . }}-docker-registry-key"