SDNC using shared mariadb-galera cluster
[oom.git] / kubernetes / sdnc / charts / sdnc-portal / 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         env:
42         - name: NAMESPACE
43           valueFrom:
44             fieldRef:
45               apiVersion: v1
46               fieldPath: metadata.namespace
47         image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
48         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
49         name: {{ include "common.name" . }}-readiness
50       containers:
51         - name: {{ include "common.name" . }}
52           command: ["/bin/bash"]
53           args: ["-c", "cd /opt/onap/sdnc/admportal/shell && ./start_portal.sh"]
54           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
55           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
56           ports:
57           - containerPort: {{ .Values.service.internalPort }}
58           # disable liveness probe when breakpoints set in debugger
59           # so K8s doesn't restart unresponsive container
60           {{ if .Values.liveness.enabled }}
61           livenessProbe:
62             tcpSocket:
63               port: {{ .Values.service.internalPort }}
64             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
65             periodSeconds: {{ .Values.liveness.periodSeconds }}
66           {{ end }}
67           readinessProbe:
68             tcpSocket:
69               port: {{ .Values.service.internalPort }}
70             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
71             periodSeconds: {{ .Values.readiness.periodSeconds }}
72           env:
73             - name: MYSQL_ROOT_PASSWORD
74               valueFrom:
75                 secretKeyRef:
76                   name: {{ template "common.fullname" . }}
77                   key: db-root-password
78             - name: SDNC_CONFIG_DIR
79               value: "{{ .Values.config.configDir }}"
80           volumeMounts:
81           - mountPath: /etc/localtime
82             name: localtime
83             readOnly: true
84           - mountPath: {{ .Values.config.configDir }}/admportal.json
85             name: properties
86             subPath: admportal.json
87           - mountPath: {{ .Values.config.configDir }}/dblib.properties
88             name: properties
89             subPath: dblib.properties
90           - mountPath: {{ .Values.config.configDir }}/svclogic.properties
91             name: properties
92             subPath: svclogic.properties
93           - mountPath: {{ .Values.config.configDir }}/svclogic.properties.sdnctldb01
94             name: properties
95             subPath: svclogic.properties
96           - mountPath: {{ .Values.config.configDir }}/svclogic.properties.sdnctldb02
97             name: properties
98             subPath: svclogic.properties.sdnctldb02
99           resources:
100 {{ include "common.resources" . | indent 12 }}
101         {{- if .Values.nodeSelector }}
102         nodeSelector:
103 {{ toYaml .Values.nodeSelector | indent 10 }}
104         {{- end -}}
105         {{- if .Values.affinity }}
106         affinity:
107 {{ toYaml .Values.affinity | indent 10 }}
108         {{- end }}
109       volumes:
110         - name: localtime
111           hostPath:
112             path: /etc/localtime
113         - name: properties
114           configMap:
115             name: {{ include "common.fullname" . }}
116             defaultMode: 0644
117       imagePullSecrets:
118       - name: "{{ include "common.namespace" . }}-docker-registry-key"