SDNC using shared mariadb-galera cluster
[oom.git] / kubernetes / sdnc / charts / ueb-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.sdcbeChartName }}
43         - --container-name
44         - {{ .Values.config.msgRouterContainerName }}
45         env:
46         - name: NAMESPACE
47           valueFrom:
48             fieldRef:
49               apiVersion: v1
50               fieldPath: metadata.namespace
51         image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
52         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
53         name: {{ include "common.name" . }}-readiness
54       containers:
55       - command:
56         - /opt/onap/sdnc/ueb-listener/bin/start-ueb-listener.sh
57         name: {{ include "common.name" . }}
58         image: "{{ include "common.repository" . }}/{{ .Values.image }}"
59         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
60         env:
61         - name: PROPERTY_DIR
62           value: "{{ .Values.config.configDir }}"
63         - name: SDNC_CONFIG_DIR
64           value: "{{ .Values.config.configDir }}"
65         volumeMounts:
66         - mountPath: /etc/localtime
67           name: localtime
68           readOnly: true
69         - mountPath: {{ .Values.config.configDir }}/dblib.properties
70           name: properties
71           subPath: dblib.properties
72         - mountPath: {{ .Values.config.configDir }}/ueb-listener.properties
73           name: properties
74           subPath: ueb-listener.properties
75         resources:
76 {{ include "common.resources" . | indent 12 }}
77         {{- if .Values.nodeSelector }}
78         nodeSelector:
79 {{ toYaml .Values.nodeSelector | indent 10 }}
80         {{- end -}}
81         {{- if .Values.affinity }}
82         affinity:
83 {{ toYaml .Values.affinity | indent 10 }}
84         {{- end }}
85
86       volumes:
87         - name: localtime
88           hostPath:
89             path: /etc/localtime
90         - name: properties
91           configMap:
92             name: {{ include "common.fullname" . }}
93             defaultMode: 0644
94       imagePullSecrets:
95       - name: "{{ include "common.namespace" . }}-docker-registry-key"