[GENERAL] Use readiness container v3.0.1
[oom.git] / kubernetes / vid / templates / deployment.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Copyright © 2020 Samsung Electronics
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 apiVersion: apps/v1
17 kind: Deployment
18 metadata:
19   name: {{ include "common.fullname" . }}
20   namespace: {{ include "common.namespace" . }}
21   labels:
22     app: {{ include "common.name" . }}
23     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
24     release: {{ include "common.release" . }}
25     heritage: {{ .Release.Service }}
26 spec:
27   selector:
28     matchLabels:
29       app: {{ include "common.name" . }}
30   replicas: {{ .Values.replicaCount }}
31   template:
32     metadata:
33       labels:
34         app: {{ include "common.name" . }}
35         release: {{ include "common.release" . }}
36     spec:
37       initContainers:
38       - command:
39         - /app/ready.py
40         args:
41         - --job-name
42         - {{ include "common.fullname" . }}-galera-config
43         env:
44         - name: NAMESPACE
45           valueFrom:
46             fieldRef:
47               apiVersion: v1
48               fieldPath: metadata.namespace
49         image: "{{ include "common.repository" . }}/{{ .Values.global.readinessImage }}"
50         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
51         name: {{ include "common.name" . }}-readiness
52       containers:
53         - name: {{ include "common.name" . }}
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 eq .Values.liveness.enabled true }}
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: ASDC_CLIENT_REST_HOST
74               value: sdc-be.{{ include "common.namespace" . }}
75             - name: ASDC_CLIENT_REST_AUTH
76               value: "{{ .Values.config.asdcclientrestauth }}"
77             - name: ASDC_CLIENT_REST_PORT
78               value: "{{ .Values.config.asdcclientrestport }}"
79             - name: ASDC_CLIENT_REST_PROTOCOL
80               value: "https"
81             - name: VID_AAI_URL
82               value: https://aai.{{ include "common.namespace" . }}:{{ .Values.config.vidaaiport }}
83             - name: VID_ECOMP_SHARED_CONTEXT_REST_URL
84               value: http://portal-app.{{ include "common.namespace" . }}:{{ .Values.config.onapport }}/ONAPPORTAL/context
85             - name: VID_MSO_SERVER_URL
86               value: http://so.{{ include "common.namespace" . }}:{{ .Values.config.msoport }}/onap/so/infra
87             - name: VID_MSO_PASS
88               value: "{{ .Values.config.vidmsopass }}"
89             - name: MSO_DME2_SERVER_URL
90               value: "{{ .Values.config.msodme2serverurl }}"
91             - name: MSO_DME2_ENABLED
92               value: {{ .Values.global.debugEnabled | default .Values.debugEnabled | quote }}
93             - name: VID_ECOMP_REDIRECT_URL
94               value: https://{{ .Values.config.portalhost }}:{{ .Values.config.onapport }}/ONAPPORTAL/login.htm
95             - name: VID_ECOMP_REST_URL
96               value: https://portal-app:{{ .Values.config.onapportrest }}/ONAPPORTAL/auxapi
97             - name: VID_ROLE_ACCESS_CENTRALIZED
98               value: "{{ .Values.config.roleaccesscentralized }}"
99             - name: VID_CONTACT_US_LINK
100               value: "{{ .Values.config.vidcontactuslink }}"
101             - name: VID_KEYSTORE_PASSWORD
102               value: {{ .Values.config.vidkeystorepassword | quote }}
103             - name: VID_UEB_URL_LIST
104               value: message-router.{{ include "common.namespace" . }}
105             - name: VID_MYSQL_HOST
106               value: {{ index .Values "mariadb-galera" "service" "name" }}
107             - name: VID_MYSQL_PORT
108               value: "{{ index .Values "mariadb-galera" "service" "internalPort" }}"
109             - name: VID_MYSQL_DBNAME
110               value: {{ index .Values "mariadb-galera" "config" "mysqlDatabase" }}
111             - name: VID_MYSQL_USER
112               {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "vid-db-user-secret" "key" "login") | indent 14 }}
113             - name: VID_MYSQL_PASS
114               {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "vid-db-user-secret" "key" "password") | indent 14 }}
115             - name: VID_MYSQL_MAXCONNECTIONS
116               value: "{{ .Values.config.vidmysqlmaxconnections }}"
117           volumeMounts:
118           - mountPath: /opt/app/vid/etc
119             name: vid-certs
120           - mountPath: /etc/localtime
121             name: localtime
122             readOnly: true
123           - mountPath: /var/log/onap
124             name: vid-logs
125           - mountPath: /tmp/logback.xml
126             name: vid-logback
127             subPath: logback.xml
128           resources:
129 {{ include "common.resources" . | indent 12 }}
130         {{- if .Values.nodeSelector }}
131         nodeSelector:
132 {{ toYaml .Values.nodeSelector | indent 10 }}
133         {{- end -}}
134         {{- if .Values.affinity }}
135         affinity:
136 {{ toYaml .Values.affinity | indent 10 }}
137         {{- end }}
138       # side car containers
139         - name: filebeat-onap
140           image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
141           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
142           volumeMounts:
143           - mountPath: /usr/share/filebeat/filebeat.yml
144             name: filebeat-conf
145             subPath: filebeat.yml
146           - mountPath: /var/log/onap
147             name: vid-logs
148           - mountPath: /usr/share/filebeat/data
149             name: vid-data-filebeat
150       volumes:
151         - name: vid-certs
152           secret:
153             secretName: {{ include "common.fullname" . }}-certs
154         - name: localtime
155           hostPath:
156             path: /etc/localtime
157         - name: filebeat-conf
158           configMap:
159             name: {{ include "common.fullname" . }}-filebeat-configmap
160         - name: vid-logs
161           emptyDir: {}
162         - name: vid-data-filebeat
163           emptyDir: {}
164         - name: vid-logback
165           configMap:
166             name: {{ include "common.fullname" . }}-log-configmap
167       imagePullSecrets:
168       - name: "{{ include "common.namespace" . }}-docker-registry-key"