[DCAEMOD] Uses new tpls for repos / images
[oom.git] / kubernetes / cds / charts / cds-blueprints-processor / templates / deployment.yaml
1 {{/*
2 # Copyright (c) 2019 IBM, Bell Canada
3 # Copyright (c) 2020 Samsung Electronics
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #       http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 */}}
17
18 apiVersion: apps/v1
19 kind: Deployment
20 metadata:
21   name: {{ include "common.fullname" . }}
22   namespace: {{ include "common.namespace" . }}
23   labels:
24     app: {{ include "common.name" . }}
25     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
26     release: {{ include "common.release" . }}
27     heritage: {{ .Release.Service }}
28 spec:
29   selector:
30     matchLabels:
31       app: {{ include "common.name" . }}
32   replicas: {{ .Values.replicaCount }}
33   strategy:
34     type: RollingUpdate
35     rollingUpdate:
36       # This allow a new pod to be ready before terminating the old one
37       # causing no downtime when replicas is set to 1
38       maxUnavailable: 0
39
40       # maxSurge to 1 is very important for the hazelcast integration
41       # we only want one pod at a time to restart not multiple
42       # and break the hazelcast cluster. We should not use % maxSurge value
43       # ref : https://hazelcast.com/blog/rolling-upgrade-hazelcast-imdg-on-kubernetes/
44       maxSurge: 1
45   template:
46     metadata:
47       labels:
48         app: {{ include "common.name" . }}
49         release: {{ include "common.release" . }}
50     spec:
51       initContainers:
52       - command:
53         - sh
54         args:
55         - -c
56         - "cd /config-input && for PFILE in `ls -1 .`; do envsubst '${CDS_DB_USERNAME},${CDS_DB_PASSWORD},${SDNC_DB_USERNAME},${SDNC_DB_PASSWORD}' <${PFILE} >/config/${PFILE}; done"
57         env:
58         - name: CDS_DB_USERNAME
59           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "cds-db-user-creds" "key" "login") | indent 10}}
60         - name: CDS_DB_PASSWORD
61           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "cds-db-user-creds" "key" "password") | indent 10}}
62         - name: SDNC_DB_USERNAME
63           value: root
64         - name: SDNC_DB_PASSWORD
65           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "sdnc-db-root-pass" "key" "password") | indent 10}}
66         volumeMounts:
67         - mountPath: /config-input/application.properties
68           name: {{ include "common.fullname" . }}-config
69           subPath: application.properties
70         - mountPath: /config
71           name: processed-config
72         image: "{{ .Values.global.envsubstImage }}"
73         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
74         name: {{ include "common.name" . }}-update-config
75
76       - command:
77         - /app/ready.py
78         args:
79         - --container-name
80         - cds-db
81         {{- if .Values.dmaapEnabled  }}
82         - --container-name
83         - message-router
84         {{ end }}
85         env:
86         - name: NAMESPACE
87           valueFrom:
88             fieldRef:
89               apiVersion: v1
90               fieldPath: metadata.namespace
91         image: "{{ include "common.repository" . }}/{{ .Values.global.readinessImage }}"
92         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
93         name: {{ include "common.name" . }}-readiness
94       - name: fix-permission
95         command:
96         - chown
97         - -R
98         - 1000:1000
99         - /opt/app/onap/blueprints/deploy
100         image: busybox:latest
101         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
102         volumeMounts:
103         - mountPath: {{ .Values.persistence.deployedBlueprint }}
104           name: {{ include "common.fullname" . }}-blueprints
105       containers:
106         - name: {{ include "common.name" . }}
107           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
108           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
109           env:
110           - name: APP_CONFIG_HOME
111             value: {{ .Values.config.appConfigDir }}
112           - name: USE_SCRIPT_COMPILE_CACHE
113             value: {{ .Values.config.useScriptCompileCache | quote }}
114           # Cluster should only be enabled when replicaCount is more than 2 and useScriptCompileCache is set to false otherwise it won't work properly
115           - name: CLUSTER_ENABLED
116             value: {{ if and (gt (int (.Values.replicaCount)) 2) (not .Values.config.useScriptCompileCache) }} {{ .Values.cluster.enabled | quote }} {{ else }} "false" {{ end }}
117           - name: CLUSTER_ID
118             value: {{ .Values.cluster.clusterName }}
119           - name: CLUSTER_NODE_ID
120             valueFrom:
121               fieldRef:
122                 fieldPath: metadata.name
123           - name: CLUSTER_CONFIG_FILE
124             value: {{ .Values.config.appConfigDir }}/hazelcast.yaml
125           ports:
126           - containerPort: {{ .Values.service.http.internalPort }}
127           - containerPort: {{ .Values.service.grpc.internalPort }}
128           - containerPort: {{ .Values.service.cluster.internalPort }}
129           # disable liveness probe when breakpoints set in debugger
130           # so K8s doesn't restart unresponsive container
131           {{ if .Values.liveness.enabled }}
132           livenessProbe:
133             httpGet:
134               path: /api/v1/execution-service/health-check
135               port: {{ .Values.service.http.internalPort }}
136               httpHeaders:
137               - name: Authorization
138                 value: Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==
139             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
140             periodSeconds: {{ .Values.liveness.periodSeconds }}
141             timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
142           {{ end }}
143           readinessProbe:
144             httpGet:
145               path: /api/v1/execution-service/health-check
146               port: {{ .Values.service.http.internalPort }}
147               httpHeaders:
148               - name: Authorization
149                 value: Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==
150             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
151             periodSeconds: {{ .Values.readiness.periodSeconds }}
152             timeoutSeconds: {{ .Values.readiness.timeoutSeconds }}
153           volumeMounts:
154           - mountPath: /etc/localtime
155             name: localtime
156             readOnly: true
157           - mountPath: {{ .Values.config.appConfigDir }}/application.properties
158             name: processed-config
159             subPath: application.properties
160           - mountPath: {{ .Values.config.appConfigDir }}/error-messages_en.properties
161             name: {{ include "common.fullname" . }}-config
162             subPath: error-messages_en.properties
163           - mountPath: {{ .Values.config.appConfigDir }}/logback.xml
164             name: {{ include "common.fullname" . }}-config
165             subPath: logback.xml
166           - mountPath: {{ .Values.config.appConfigDir }}/hazelcast.yaml
167             name: {{ include "common.fullname" . }}-config
168             subPath: hazelcast.yaml
169
170           - mountPath: {{ .Values.config.appConfigDir }}/ONAP_RootCA.cer
171             name: {{ include "common.fullname" . }}-config
172             subPath: ONAP_RootCA.cer
173
174           - mountPath: {{ .Values.persistence.deployedBlueprint }}
175             name: {{ include "common.fullname" . }}-blueprints
176           resources:
177 {{ include "common.resources" . | indent 12 }}
178         {{- if .Values.nodeSelector }}
179         nodeSelector:
180 {{ toYaml .Values.nodeSelector | indent 10 }}
181         {{- end -}}
182         {{- if .Values.affinity }}
183         affinity:
184 {{ toYaml .Values.affinity | indent 10 }}
185         {{- end }}
186       volumes:
187         - name: localtime
188           hostPath:
189             path: /etc/localtime
190         - name: {{ include "common.fullname" . }}-config
191           configMap:
192             name: {{ include "common.fullname" . }}-configmap
193             items:
194             - key: application.properties
195               path: application.properties
196             - key: error-messages_en.properties
197               path: error-messages_en.properties
198             - key: logback.xml
199               path: logback.xml
200             - key: hazelcast.yaml
201               path: hazelcast.yaml
202             - key: ONAP_RootCA.cer
203               path: ONAP_RootCA.cer
204         - name: {{ include "common.fullname" . }}-blueprints
205           persistentVolumeClaim:
206             claimName: {{ include "common.release" . }}-cds-blueprints
207         - name: processed-config
208           emptyDir:
209             medium: Memory
210       imagePullSecrets:
211       - name: "{{ include "common.namespace" . }}-docker-registry-key"