blob: 9a61841e67794bb507dc0355034dabbbaae6fa57 [file] [log] [blame]
Sylvain Desbureaux47eb4d22020-12-10 12:15:27 +01001{{/*
Sylvain Desbureaux70070412020-11-09 21:58:48 +01002# Copyright (c) 2017 Amdocs, Bell Canada
3# Modifications Copyright (c) 2018 AT&T
Sylvain Desbureaux5b651322020-12-07 15:34:15 +01004# Modifications Copyright (c) 2020 Nokia, Orange
Sylvain Desbureaux331f0042021-01-18 11:38:49 +01005# Modifications Copyright (c) 2021 Orange
efiacord12c1672023-03-23 12:10:50 +00006# Modifications Copyright © 2023 Nordix Foundation
Sylvain Desbureaux70070412020-11-09 21:58:48 +01007#
8# Licensed under the Apache License, Version 2.0 (the "License");
9# you may not use this file except in compliance with the License.
10# You may obtain a copy of the License at
11#
12# http://www.apache.org/licenses/LICENSE-2.0
13#
14# Unless required by applicable law or agreed to in writing, software
15# distributed under the License is distributed on an "AS IS" BASIS,
16# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17# See the License for the specific language governing permissions and
18# limitations under the License.
Sylvain Desbureaux47eb4d22020-12-10 12:15:27 +010019*/}}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010020
21apiVersion: apps/v1
22kind: Deployment
23metadata:
24 name: {{ include "common.fullname" . }}
25 namespace: {{ include "common.namespace" . }}
26 labels:
27 app: {{ include "common.name" . }}
Andreas Geisslerceac2602023-07-17 18:55:54 +020028 app.kubernetes.io/name: {{ include "common.name" . }}
29 {{- if .Chart.AppVersion }}
Andreas Geissler85a5a342023-07-19 14:05:20 +020030 version: "{{ .Chart.AppVersion | replace "+" "_" }}"
Andreas Geisslerceac2602023-07-17 18:55:54 +020031 {{- else }}
Andreas Geissler85a5a342023-07-19 14:05:20 +020032 version: "{{ .Chart.Version | replace "+" "_" }}"
Andreas Geisslerceac2602023-07-17 18:55:54 +020033 {{- end }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010034 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
35 release: {{ include "common.release" . }}
36 heritage: {{ .Release.Service }}
37spec:
38 replicas: {{ .Values.replicaCount }}
M.Hosnidokht15fea932021-08-25 09:08:40 -040039 minReadySeconds: {{ .Values.minReadySeconds }}
40 strategy:
41 type: {{ .Values.updateStrategy.type }}
42 rollingUpdate:
43 maxUnavailable: {{ .Values.updateStrategy.maxUnavailable }}
44 maxSurge: {{ .Values.updateStrategy.maxSurge }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010045 selector:
46 matchLabels:
47 app: {{ include "common.name" . }}
48 template:
49 metadata:
50 labels:
51 app: {{ include "common.name" . }}
52 release: {{ include "common.release" . }}
Andreas Geisslerceac2602023-07-17 18:55:54 +020053 app.kubernetes.io/name: {{ include "common.name" . }}
54 {{- if .Chart.AppVersion }}
Andreas Geissler85a5a342023-07-19 14:05:20 +020055 version: "{{ .Chart.AppVersion | replace "+" "_" }}"
Andreas Geisslerceac2602023-07-17 18:55:54 +020056 {{- else }}
Andreas Geissler85a5a342023-07-19 14:05:20 +020057 version: "{{ .Chart.Version | replace "+" "_" }}"
Andreas Geisslerceac2602023-07-17 18:55:54 +020058 {{- end }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010059 name: {{ include "common.name" . }}
60 annotations:
61 checksum/config: {{ include (print $.Template.BasePath "/configmap.yaml") . | sha256sum }}
Sylvain Desbureaux331f0042021-01-18 11:38:49 +010062 {{- if .Values.global.msbEnabled }}
63 {{ $values := .Values }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010064 msb.onap.org/service-info: '[
Sylvain Desbureaux331f0042021-01-18 11:38:49 +010065 {{- range $api_endpoint := $values.aai_enpoints -}}
66 {{- range $api_version := $values.api_list }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010067 {
Sylvain Desbureaux331f0042021-01-18 11:38:49 +010068 "serviceName": "_{{ $api_endpoint.name }}",
69 "version": "v{{ $api_version }}",
70 "url": "/aai/v{{ $api_version }}/{{ $api_endpoint.url }}",
Sylvain Desbureaux70070412020-11-09 21:58:48 +010071 "protocol": "REST",
72 "port": "8446",
73 "enable_ssl": true,
74 "lb_policy":"ip_hash",
75 "visualRange": "1",
Sylvain Desbureaux331f0042021-01-18 11:38:49 +010076 "path": "/aai/v{{ $api_version }}/{{ $api_endpoint.url }}"
Sylvain Desbureaux70070412020-11-09 21:58:48 +010077 },
78 {
Sylvain Desbureaux331f0042021-01-18 11:38:49 +010079 "serviceName": "{{ $api_endpoint.name }}",
80 "version": "v{{ $api_version }}",
81 "url": "/aai/v{{ $api_version }}/{{ $api_endpoint.url }}",
Sylvain Desbureaux70070412020-11-09 21:58:48 +010082 "protocol": "REST",
83 "port": "8446",
84 "enable_ssl": true,
85 "lb_policy":"ip_hash",
Sylvain Desbureaux331f0042021-01-18 11:38:49 +010086 "visualRange": "1"
Sylvain Desbureaux70070412020-11-09 21:58:48 +010087 },
Sylvain Desbureaux331f0042021-01-18 11:38:49 +010088 {{- end }}
89 {{- end }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010090 {
91 "serviceName": "_aai-named-query",
92 "url": "/aai/search",
93 "protocol": "REST",
94 "port": "8446",
95 "enable_ssl": true,
96 "lb_policy":"ip_hash",
97 "visualRange": "1",
98 "path": "/aai/search"
99 },
100 {
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100101 "serviceName": "aai-named-query",
102 "url": "/aai/search",
103 "protocol": "REST",
104 "port": "8446",
105 "enable_ssl": true,
106 "lb_policy":"ip_hash",
107 "visualRange": "1"
108 }
109 ]'
Sylvain Desbureaux331f0042021-01-18 11:38:49 +0100110 {{- end }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100111 spec:
112 hostname: aai-traversal
M.Hosnidokht15fea932021-08-25 09:08:40 -0400113 terminationGracePeriodSeconds: {{ .Values.service.terminationGracePeriodSeconds }}
efiacord12c1672023-03-23 12:10:50 +0000114 initContainers:
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100115 - command:
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100116 - /app/ready.py
117 args:
Sylvain Desbureauxa41dfc02021-02-15 10:14:22 +0100118 {{- if .Values.global.jobs.migration.enabled }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100119 - --job-name
120 - {{ include "common.release" . }}-aai-graphadmin-migration
Sylvain Desbureauxa41dfc02021-02-15 10:14:22 +0100121 {{- else }}
122 {{- if .Values.global.jobs.createSchema.enabled }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100123 - --job-name
124 - {{ include "common.release" . }}-aai-graphadmin-create-db-schema
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100125 {{- else }}
Andreas Geisslercfd84342023-08-16 17:18:49 +0200126 - --app-name
Sylvain Desbureauxa41dfc02021-02-15 10:14:22 +0100127 {{- if .Values.global.cassandra.localCluster }}
128 - aai-cassandra
129 {{- else }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100130 - cassandra
Sylvain Desbureauxa41dfc02021-02-15 10:14:22 +0100131 {{- end }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100132 - --container-name
133 - aai-schema-service
Sylvain Desbureauxa41dfc02021-02-15 10:14:22 +0100134 {{- end }}
135 {{- end }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100136 env:
137 - name: NAMESPACE
138 valueFrom:
139 fieldRef:
140 apiVersion: v1
141 fieldPath: metadata.namespace
Sylvain Desbureaux5b651322020-12-07 15:34:15 +0100142 image: {{ include "repositoryGenerator.image.readiness" . }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100143 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
144 name: {{ include "common.name" . }}-readiness
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100145 containers:
146 - name: {{ include "common.name" . }}
Sylvain Desbureaux5b651322020-12-07 15:34:15 +0100147 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100148 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
Sylvain Desbureauxa41dfc02021-02-15 10:14:22 +0100149 command:
150 - sh
151 args:
152 - -c
153 - |
Sylvain Desbureauxa41dfc02021-02-15 10:14:22 +0100154 echo "*** actual launch of AAI Resources"
155 /bin/bash /opt/app/aai-traversal/docker-entrypoint.sh
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100156 env:
Andreas Geissler2ac422a2023-10-25 14:19:19 +0200157 {{- if .Values.config.env }}
158 {{- range $key,$value := .Values.config.env }}
159 - name: {{ $key | upper | quote}}
160 value: {{ $value | quote}}
161 {{- end }}
162 {{- end }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100163 - name: DISABLE_UPDATE_QUERY
164 value: {{ .Values.config.disableUpdateQuery | quote }}
165 - name: LOCAL_USER_ID
166 value: {{ .Values.global.config.userId | quote }}
167 - name: LOCAL_GROUP_ID
168 value: {{ .Values.global.config.groupId | quote }}
M.Hosnidokht15fea932021-08-25 09:08:40 -0400169 - name: INTERNAL_PORT_1
170 value: {{ .Values.service.internalPort | quote }}
171 - name: INTERNAL_PORT_2
172 value: {{ .Values.service.internalPort2 | quote }}
leila46fb5802022-11-15 11:33:21 -0500173 - name: INTERNAL_PORT_3
174 value: {{ .Values.service.internalPort3 | quote }}
efiacord12c1672023-03-23 12:10:50 +0000175 volumeMounts:
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100176 - mountPath: /etc/localtime
177 name: localtime
178 readOnly: true
179 - mountPath: /opt/app/aai-traversal/resources/etc/appprops/janusgraph-realtime.properties
180 name: {{ include "common.fullname" . }}-config
181 subPath: janusgraph-realtime.properties
182 - mountPath: /opt/app/aai-traversal/resources/etc/appprops/janusgraph-cached.properties
183 name: {{ include "common.fullname" . }}-config
184 subPath: janusgraph-cached.properties
185 - mountPath: /opt/app/aai-traversal/resources/etc/appprops/aaiconfig.properties
186 name: {{ include "common.fullname" . }}-config
187 subPath: aaiconfig.properties
188 - mountPath: /opt/aai/logroot/AAI-GQ
Maciej Wereskid523d122021-09-21 11:22:13 +0200189 name: logs
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100190 - mountPath: /opt/aai/logroot/AAI-GQ/misc
191 name: {{ include "common.fullname" . }}-logs-misc
192 - mountPath: /opt/app/aai-traversal/resources/logback.xml
193 name: {{ include "common.fullname" . }}-config
194 subPath: logback.xml
195 - mountPath: /opt/app/aai-traversal/resources/localhost-access-logback.xml
196 name: {{ include "common.fullname" . }}-config
197 subPath: localhost-access-logback.xml
198 - mountPath: /opt/app/aai-traversal/resources/etc/auth/realm.properties
199 name: {{ include "common.fullname" . }}-config
200 subPath: realm.properties
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100201 - mountPath: /opt/app/aai-traversal/resources/application.properties
202 name: {{ include "common.fullname" . }}-config
203 subPath: application.properties
Sam Huang56a6dd42021-03-26 13:27:17 -0600204 - mountPath: /opt/app/aai-traversal/resources/application-keycloak.properties
205 name: {{ include "common.fullname" . }}-config
206 subPath: application-keycloak.properties
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100207 ports:
208 - containerPort: {{ .Values.service.internalPort }}
Andreas Geisslerceac2602023-07-17 18:55:54 +0200209 name: {{ .Values.service.portName }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100210 - containerPort: {{ .Values.service.internalPort2 }}
Andreas Geisslerceac2602023-07-17 18:55:54 +0200211 name: {{ .Values.service.portName2 }}
leila46fb5802022-11-15 11:33:21 -0500212 - containerPort: {{ .Values.service.internalPort3 }}
Andreas Geisslerceac2602023-07-17 18:55:54 +0200213 name: {{ .Values.service.portName3 }}
M.Hosnidokht15fea932021-08-25 09:08:40 -0400214 lifecycle:
215 # wait for active requests (long-running tasks) to be finished
216 # Before the SIGTERM is invoked, Kubernetes exposes a preStop hook in the Pod.
217 preStop:
218 exec:
219 command:
220 - sh
221 - -c
222 - |
223 while (netstat -an | grep ESTABLISHED | grep -e $INTERNAL_PORT_1 -e $INTERNAL_PORT_2)
224 do sleep 10
225 done
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100226 # disable liveness probe when breakpoints set in debugger
227 # so K8s doesn't restart unresponsive container
228 {{ if .Values.liveness.enabled }}
229 livenessProbe:
Fiete Ostkampc113ef32022-10-12 09:50:46 +0200230 httpGet:
231 path: /aai/util/echo?action=checkDB
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100232 port: {{ .Values.service.internalPort }}
efiacord12c1672023-03-23 12:10:50 +0000233 scheme: HTTP
Fiete Ostkampc113ef32022-10-12 09:50:46 +0200234 httpHeaders:
235 - name: X-FromAppId
236 value: LivenessCheck
237 - name: X-TransactionId
238 value: LiveCheck_TID
239 - name: Accept
240 value: application/json
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100241 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
242 periodSeconds: {{ .Values.liveness.periodSeconds }}
243 {{ end }}
244 readinessProbe:
Fiete Ostkampc113ef32022-10-12 09:50:46 +0200245 httpGet:
246 path: /aai/util/echo?action=checkDB
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100247 port: {{ .Values.service.internalPort }}
efiacord12c1672023-03-23 12:10:50 +0000248 scheme: HTTP
Fiete Ostkampc113ef32022-10-12 09:50:46 +0200249 httpHeaders:
250 - name: X-FromAppId
251 value: ReadinessCheck
252 - name: X-TransactionId
253 value: ReadinessCheck_TID
254 - name: Accept
255 value: application/json
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100256 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
257 periodSeconds: {{ .Values.readiness.periodSeconds }}
miroslavmasaryka7ac7f02023-03-01 14:12:26 +0100258 resources: {{ include "common.resources" . | nindent 10 }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100259 {{- if .Values.nodeSelector }}
260 nodeSelector:
261{{ toYaml .Values.nodeSelector | indent 8 }}
Sylvain Desbureauxa41dfc02021-02-15 10:14:22 +0100262 {{- end }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100263 {{- if .Values.affinity }}
264 affinity:
265{{ toYaml .Values.affinity | indent 8 }}
266 {{- end }}
267
268 # side car containers
Maciej Wereskid523d122021-09-21 11:22:13 +0200269 {{ include "common.log.sidecar" . | nindent 6 }}
farida azmyd8937332021-03-09 12:20:42 +0200270 serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
efiacord12c1672023-03-23 12:10:50 +0000271 volumes:
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100272 - name: localtime
273 hostPath:
274 path: /etc/localtime
Maciej Wereskid523d122021-09-21 11:22:13 +0200275 - name: logs
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100276 emptyDir: {}
277 - name: {{ include "common.fullname" . }}-logs-misc
278 emptyDir: {}
Maciej Wereskid523d122021-09-21 11:22:13 +0200279 {{ include "common.log.volumes" (dict "dot" . "configMapNamePrefix" (tpl .Values.logConfigMapNamePrefix .)) | nindent 6 }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100280 - name: {{ include "common.fullname" . }}-config
281 configMap:
Sylvain Desbureauxa41dfc02021-02-15 10:14:22 +0100282 name: {{ include "common.fullname" . }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100283 restartPolicy: {{ .Values.global.restartPolicy | default .Values.restartPolicy }}
284 imagePullSecrets:
285 - name: "{{ include "common.namespace" . }}-docker-registry-key"