blob: ab7245e56a4a39504d255c4546516c2543d21afb [file] [log] [blame]
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -05001# Copyright (c) 2019 IBM, Bell Canada
Krzysztof Opasiak32f9aaa2020-02-06 23:05:15 +01002# Copyright (c) 2020 Samsung Electronics
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -05003#
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
16apiVersion: extensions/v1beta1
17kind: Deployment
18metadata:
19 name: {{ include "common.fullname" . }}
20 namespace: {{ include "common.namespace" . }}
21 labels:
22 app: {{ include "common.name" . }}
23 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010024 release: {{ include "common.release" . }}
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -050025 heritage: {{ .Release.Service }}
26spec:
27 replicas: {{ .Values.replicaCount }}
Sebastien Premont-Tendlandb679d7b2020-02-17 11:32:15 -050028 strategy:
29 type: RollingUpdate
30 rollingUpdate:
31 # This allow a new pod to be ready before terminating the old one
32 # causing no downtime when replicas is set to 1
33 maxUnavailable: 0
34
35 # maxSurge to 1 is very important for the hazelcast integration
36 # we only want one pod at a time to restart not multiple
37 # and break the hazelcast cluster. We should not use % maxSurge value
38 # ref : https://hazelcast.com/blog/rolling-upgrade-hazelcast-imdg-on-kubernetes/
39 maxSurge: 1
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -050040 template:
41 metadata:
42 labels:
43 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010044 release: {{ include "common.release" . }}
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -050045 spec:
46 initContainers:
47 - command:
Krzysztof Opasiak32f9aaa2020-02-06 23:05:15 +010048 - sh
49 args:
50 - -c
51 - "cd /config-input && for PFILE in `ls -1 .`; do envsubst '${CDS_DB_USERNAME},${CDS_DB_PASSWORD},${CDS_DB_ROOT_PASSWORD}' <${PFILE} >/config/${PFILE}; done"
52 env:
53 - name: CDS_DB_USERNAME
Krzysztof Opasiak28d194f2020-03-24 03:27:32 +010054 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "cds-db-user-creds" "key" "login") | indent 10}}
Krzysztof Opasiak32f9aaa2020-02-06 23:05:15 +010055 - name: CDS_DB_PASSWORD
Krzysztof Opasiak28d194f2020-03-24 03:27:32 +010056 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "cds-db-user-creds" "key" "password") | indent 10}}
Krzysztof Opasiak32f9aaa2020-02-06 23:05:15 +010057 - name: CDS_DB_ROOT_PASSWORD
Krzysztof Opasiak28d194f2020-03-24 03:27:32 +010058 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "cds-db-root-pass" "key" "password") | indent 10}}
Krzysztof Opasiak32f9aaa2020-02-06 23:05:15 +010059
60 volumeMounts:
61 - mountPath: /config-input/application.properties
62 name: {{ include "common.fullname" . }}-config
63 subPath: application.properties
64 - mountPath: /config
65 name: processed-config
66 image: "{{ .Values.global.envsubstImage }}"
67 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
68 name: {{ include "common.name" . }}-update-config
69
70 - command:
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -050071 - /root/ready.py
72 args:
73 - --container-name
Alexis de Talhouët63df1632019-03-20 08:17:58 -040074 - cds-db
Prathamesh Morde93da1272019-06-24 10:36:15 -040075 {{- if .Values.dmaapEnabled }}
76 - --container-name
77 - message-router
78 {{ end }}
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -050079 env:
80 - name: NAMESPACE
81 valueFrom:
82 fieldRef:
83 apiVersion: v1
84 fieldPath: metadata.namespace
85 image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
86 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
87 name: {{ include "common.name" . }}-readiness
88 containers:
89 - name: {{ include "common.name" . }}
90 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
91 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
92 env:
93 - name: APP_CONFIG_HOME
94 value: {{ .Values.config.appConfigDir }}
Sebastien Premont-Tendlandb679d7b2020-02-17 11:32:15 -050095 - name: USE_SCRIPT_COMPILE_CACHE
96 value: {{ .Values.config.useScriptCompileCache | quote }}
97 # Cluster should only be enabled when replicaCount is more than 2 and useScriptCompileCache is set to false otherwise it won't work properly
98 - name: CLUSTER_ENABLED
99 value: {{ if and (gt (int (.Values.replicaCount)) 2) (not .Values.config.useScriptCompileCache) }} {{ .Values.cluster.enabled | quote }} {{ else }} "false" {{ end }}
100 - name: CLUSTER_ID
101 value: {{ .Values.cluster.clusterName }}
102 - name: CLUSTER_NODE_ID
103 valueFrom:
104 fieldRef:
105 fieldPath: metadata.name
106 - name: CLUSTER_CONFIG_FILE
107 value: {{ .Values.config.appConfigDir }}/hazelcast.yaml
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -0500108 ports:
109 - containerPort: {{ .Values.service.http.internalPort }}
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -0500110 - containerPort: {{ .Values.service.grpc.internalPort }}
Sebastien Premont-Tendlandb679d7b2020-02-17 11:32:15 -0500111 - containerPort: {{ .Values.service.cluster.internalPort }}
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -0500112 # disable liveness probe when breakpoints set in debugger
113 # so K8s doesn't restart unresponsive container
114 {{ if .Values.liveness.enabled }}
115 livenessProbe:
116 httpGet:
Alexis de Talhouët892564f2019-07-17 08:15:07 -0400117 path: /api/v1/execution-service/health-check
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -0500118 port: {{ .Values.service.http.internalPort }}
Munir Ahmad597db662019-03-26 08:17:11 -0400119 httpHeaders:
120 - name: Authorization
121 value: Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -0500122 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
123 periodSeconds: {{ .Values.liveness.periodSeconds }}
Oleg Mitsura3a621182019-10-09 12:40:11 -0400124 timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -0500125 {{ end }}
126 readinessProbe:
127 httpGet:
Alexis de Talhouët892564f2019-07-17 08:15:07 -0400128 path: /api/v1/execution-service/health-check
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -0500129 port: {{ .Values.service.http.internalPort }}
Munir Ahmad597db662019-03-26 08:17:11 -0400130 httpHeaders:
131 - name: Authorization
132 value: Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==
Oleg Mitsurabad99342019-10-28 14:06:42 -0400133 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
134 periodSeconds: {{ .Values.readiness.periodSeconds }}
135 timeoutSeconds: {{ .Values.readiness.timeoutSeconds }}
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -0500136 volumeMounts:
137 - mountPath: /etc/localtime
138 name: localtime
139 readOnly: true
140 - mountPath: {{ .Values.config.appConfigDir }}/application.properties
Krzysztof Opasiak32f9aaa2020-02-06 23:05:15 +0100141 name: processed-config
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -0500142 subPath: application.properties
Steve Siani3925d7f2020-03-14 12:15:50 -0400143 - mountPath: {{ .Values.config.appConfigDir }}/error-messages_en.properties
144 name: {{ include "common.fullname" . }}-config
145 subPath: error-messages_en.properties
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -0500146 - mountPath: {{ .Values.config.appConfigDir }}/logback.xml
147 name: {{ include "common.fullname" . }}-config
148 subPath: logback.xml
Sebastien Premont-Tendlandb679d7b2020-02-17 11:32:15 -0500149 - mountPath: {{ .Values.config.appConfigDir }}/hazelcast.yaml
150 name: {{ include "common.fullname" . }}-config
151 subPath: hazelcast.yaml
Abdelmuhaimen Seaudi204c64e2019-07-25 19:04:01 +0000152
153 - mountPath: {{ .Values.config.appConfigDir }}/ONAP_RootCA.cer
154 name: {{ include "common.fullname" . }}-config
155 subPath: ONAP_RootCA.cer
156
Alexis de Talhouët108e28f2019-04-14 18:54:56 -0400157 - mountPath: {{ .Values.persistence.deployedBlueprint }}
158 name: {{ include "common.fullname" . }}-blueprints
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -0500159 resources:
160{{ include "common.resources" . | indent 12 }}
161 {{- if .Values.nodeSelector }}
162 nodeSelector:
163{{ toYaml .Values.nodeSelector | indent 10 }}
164 {{- end -}}
165 {{- if .Values.affinity }}
166 affinity:
167{{ toYaml .Values.affinity | indent 10 }}
168 {{- end }}
169 volumes:
170 - name: localtime
171 hostPath:
172 path: /etc/localtime
173 - name: {{ include "common.fullname" . }}-config
174 configMap:
175 name: {{ include "common.fullname" . }}-configmap
176 items:
177 - key: application.properties
178 path: application.properties
Steve Siani3925d7f2020-03-14 12:15:50 -0400179 - key: error-messages_en.properties
180 path: error-messages_en.properties
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -0500181 - key: logback.xml
182 path: logback.xml
Sebastien Premont-Tendlandb679d7b2020-02-17 11:32:15 -0500183 - key: hazelcast.yaml
184 path: hazelcast.yaml
Abdelmuhaimen Seaudia451fd62019-09-10 14:21:04 +0000185 - key: ONAP_RootCA.cer
186 path: ONAP_RootCA.cer
Alexis de Talhouët108e28f2019-04-14 18:54:56 -0400187 - name: {{ include "common.fullname" . }}-blueprints
188 persistentVolumeClaim:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100189 claimName: {{ include "common.release" . }}-cds-blueprints
Krzysztof Opasiak32f9aaa2020-02-06 23:05:15 +0100190 - name: processed-config
191 emptyDir:
192 medium: Memory
Steve Alphonse Siania1b6b0e2019-01-25 15:23:58 -0500193 imagePullSecrets:
194 - name: "{{ include "common.namespace" . }}-docker-registry-key"