blob: f390b1c9bf07e78c2b09c834a47969b3eb9854a8 [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" . }}
28 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
29 release: {{ include "common.release" . }}
30 heritage: {{ .Release.Service }}
31spec:
32 replicas: {{ .Values.replicaCount }}
M.Hosnidokht15fea932021-08-25 09:08:40 -040033 minReadySeconds: {{ .Values.minReadySeconds }}
34 strategy:
35 type: {{ .Values.updateStrategy.type }}
36 rollingUpdate:
37 maxUnavailable: {{ .Values.updateStrategy.maxUnavailable }}
38 maxSurge: {{ .Values.updateStrategy.maxSurge }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010039 selector:
40 matchLabels:
41 app: {{ include "common.name" . }}
42 template:
43 metadata:
44 labels:
45 app: {{ include "common.name" . }}
46 release: {{ include "common.release" . }}
47 name: {{ include "common.name" . }}
48 annotations:
49 checksum/config: {{ include (print $.Template.BasePath "/configmap.yaml") . | sha256sum }}
Sylvain Desbureaux331f0042021-01-18 11:38:49 +010050 {{- if .Values.global.msbEnabled }}
51 {{ $values := .Values }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010052 msb.onap.org/service-info: '[
Sylvain Desbureaux331f0042021-01-18 11:38:49 +010053 {{- range $api_endpoint := $values.aai_enpoints -}}
54 {{- range $api_version := $values.api_list }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010055 {
Sylvain Desbureaux331f0042021-01-18 11:38:49 +010056 "serviceName": "_{{ $api_endpoint.name }}",
57 "version": "v{{ $api_version }}",
58 "url": "/aai/v{{ $api_version }}/{{ $api_endpoint.url }}",
Sylvain Desbureaux70070412020-11-09 21:58:48 +010059 "protocol": "REST",
60 "port": "8446",
61 "enable_ssl": true,
62 "lb_policy":"ip_hash",
63 "visualRange": "1",
Sylvain Desbureaux331f0042021-01-18 11:38:49 +010064 "path": "/aai/v{{ $api_version }}/{{ $api_endpoint.url }}"
Sylvain Desbureaux70070412020-11-09 21:58:48 +010065 },
66 {
Sylvain Desbureaux331f0042021-01-18 11:38:49 +010067 "serviceName": "{{ $api_endpoint.name }}",
68 "version": "v{{ $api_version }}",
69 "url": "/aai/v{{ $api_version }}/{{ $api_endpoint.url }}",
Sylvain Desbureaux70070412020-11-09 21:58:48 +010070 "protocol": "REST",
71 "port": "8446",
72 "enable_ssl": true,
73 "lb_policy":"ip_hash",
Sylvain Desbureaux331f0042021-01-18 11:38:49 +010074 "visualRange": "1"
Sylvain Desbureaux70070412020-11-09 21:58:48 +010075 },
Sylvain Desbureaux331f0042021-01-18 11:38:49 +010076 {{- end }}
77 {{- end }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010078 {
79 "serviceName": "_aai-named-query",
80 "url": "/aai/search",
81 "protocol": "REST",
82 "port": "8446",
83 "enable_ssl": true,
84 "lb_policy":"ip_hash",
85 "visualRange": "1",
86 "path": "/aai/search"
87 },
88 {
Sylvain Desbureaux70070412020-11-09 21:58:48 +010089 "serviceName": "aai-named-query",
90 "url": "/aai/search",
91 "protocol": "REST",
92 "port": "8446",
93 "enable_ssl": true,
94 "lb_policy":"ip_hash",
95 "visualRange": "1"
96 }
97 ]'
Sylvain Desbureaux331f0042021-01-18 11:38:49 +010098 {{- end }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010099 spec:
100 hostname: aai-traversal
M.Hosnidokht15fea932021-08-25 09:08:40 -0400101 terminationGracePeriodSeconds: {{ .Values.service.terminationGracePeriodSeconds }}
efiacord12c1672023-03-23 12:10:50 +0000102 initContainers:
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100103 - command:
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100104 - /app/ready.py
105 args:
Sylvain Desbureauxa41dfc02021-02-15 10:14:22 +0100106 {{- if .Values.global.jobs.migration.enabled }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100107 - --job-name
108 - {{ include "common.release" . }}-aai-graphadmin-migration
Sylvain Desbureauxa41dfc02021-02-15 10:14:22 +0100109 {{- else }}
110 {{- if .Values.global.jobs.createSchema.enabled }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100111 - --job-name
112 - {{ include "common.release" . }}-aai-graphadmin-create-db-schema
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100113 {{- else }}
Sylvain Desbureauxa41dfc02021-02-15 10:14:22 +0100114 - --container-name
115 {{- if .Values.global.cassandra.localCluster }}
116 - aai-cassandra
117 {{- else }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100118 - cassandra
Sylvain Desbureauxa41dfc02021-02-15 10:14:22 +0100119 {{- end }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100120 - --container-name
121 - aai-schema-service
Sylvain Desbureauxa41dfc02021-02-15 10:14:22 +0100122 {{- end }}
123 {{- end }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100124 env:
125 - name: NAMESPACE
126 valueFrom:
127 fieldRef:
128 apiVersion: v1
129 fieldPath: metadata.namespace
Sylvain Desbureaux5b651322020-12-07 15:34:15 +0100130 image: {{ include "repositoryGenerator.image.readiness" . }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100131 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
132 name: {{ include "common.name" . }}-readiness
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100133 containers:
134 - name: {{ include "common.name" . }}
Sylvain Desbureaux5b651322020-12-07 15:34:15 +0100135 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100136 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
Sylvain Desbureauxa41dfc02021-02-15 10:14:22 +0100137 command:
138 - sh
139 args:
140 - -c
141 - |
Sylvain Desbureauxa41dfc02021-02-15 10:14:22 +0100142 echo "*** actual launch of AAI Resources"
143 /bin/bash /opt/app/aai-traversal/docker-entrypoint.sh
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100144 env:
145 - name: DISABLE_UPDATE_QUERY
146 value: {{ .Values.config.disableUpdateQuery | quote }}
147 - name: LOCAL_USER_ID
148 value: {{ .Values.global.config.userId | quote }}
149 - name: LOCAL_GROUP_ID
150 value: {{ .Values.global.config.groupId | quote }}
M.Hosnidokht15fea932021-08-25 09:08:40 -0400151 - name: INTERNAL_PORT_1
152 value: {{ .Values.service.internalPort | quote }}
153 - name: INTERNAL_PORT_2
154 value: {{ .Values.service.internalPort2 | quote }}
leila46fb5802022-11-15 11:33:21 -0500155 - name: INTERNAL_PORT_3
156 value: {{ .Values.service.internalPort3 | quote }}
efiacord12c1672023-03-23 12:10:50 +0000157 volumeMounts:
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100158 - mountPath: /etc/localtime
159 name: localtime
160 readOnly: true
161 - mountPath: /opt/app/aai-traversal/resources/etc/appprops/janusgraph-realtime.properties
162 name: {{ include "common.fullname" . }}-config
163 subPath: janusgraph-realtime.properties
164 - mountPath: /opt/app/aai-traversal/resources/etc/appprops/janusgraph-cached.properties
165 name: {{ include "common.fullname" . }}-config
166 subPath: janusgraph-cached.properties
167 - mountPath: /opt/app/aai-traversal/resources/etc/appprops/aaiconfig.properties
168 name: {{ include "common.fullname" . }}-config
169 subPath: aaiconfig.properties
170 - mountPath: /opt/aai/logroot/AAI-GQ
Maciej Wereskid523d122021-09-21 11:22:13 +0200171 name: logs
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100172 - mountPath: /opt/aai/logroot/AAI-GQ/misc
173 name: {{ include "common.fullname" . }}-logs-misc
174 - mountPath: /opt/app/aai-traversal/resources/logback.xml
175 name: {{ include "common.fullname" . }}-config
176 subPath: logback.xml
177 - mountPath: /opt/app/aai-traversal/resources/localhost-access-logback.xml
178 name: {{ include "common.fullname" . }}-config
179 subPath: localhost-access-logback.xml
180 - mountPath: /opt/app/aai-traversal/resources/etc/auth/realm.properties
181 name: {{ include "common.fullname" . }}-config
182 subPath: realm.properties
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100183 - mountPath: /opt/app/aai-traversal/resources/application.properties
184 name: {{ include "common.fullname" . }}-config
185 subPath: application.properties
Sam Huang56a6dd42021-03-26 13:27:17 -0600186 - mountPath: /opt/app/aai-traversal/resources/application-keycloak.properties
187 name: {{ include "common.fullname" . }}-config
188 subPath: application-keycloak.properties
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100189 ports:
190 - containerPort: {{ .Values.service.internalPort }}
191 - containerPort: {{ .Values.service.internalPort2 }}
leila46fb5802022-11-15 11:33:21 -0500192 - containerPort: {{ .Values.service.internalPort3 }}
M.Hosnidokht15fea932021-08-25 09:08:40 -0400193 lifecycle:
194 # wait for active requests (long-running tasks) to be finished
195 # Before the SIGTERM is invoked, Kubernetes exposes a preStop hook in the Pod.
196 preStop:
197 exec:
198 command:
199 - sh
200 - -c
201 - |
202 while (netstat -an | grep ESTABLISHED | grep -e $INTERNAL_PORT_1 -e $INTERNAL_PORT_2)
203 do sleep 10
204 done
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100205 # disable liveness probe when breakpoints set in debugger
206 # so K8s doesn't restart unresponsive container
207 {{ if .Values.liveness.enabled }}
208 livenessProbe:
Fiete Ostkampc113ef32022-10-12 09:50:46 +0200209 httpGet:
210 path: /aai/util/echo?action=checkDB
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100211 port: {{ .Values.service.internalPort }}
efiacord12c1672023-03-23 12:10:50 +0000212 scheme: HTTP
Fiete Ostkampc113ef32022-10-12 09:50:46 +0200213 httpHeaders:
214 - name: X-FromAppId
215 value: LivenessCheck
216 - name: X-TransactionId
217 value: LiveCheck_TID
218 - name: Accept
219 value: application/json
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100220 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
221 periodSeconds: {{ .Values.liveness.periodSeconds }}
222 {{ end }}
223 readinessProbe:
Fiete Ostkampc113ef32022-10-12 09:50:46 +0200224 httpGet:
225 path: /aai/util/echo?action=checkDB
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100226 port: {{ .Values.service.internalPort }}
efiacord12c1672023-03-23 12:10:50 +0000227 scheme: HTTP
Fiete Ostkampc113ef32022-10-12 09:50:46 +0200228 httpHeaders:
229 - name: X-FromAppId
230 value: ReadinessCheck
231 - name: X-TransactionId
232 value: ReadinessCheck_TID
233 - name: Accept
234 value: application/json
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100235 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
236 periodSeconds: {{ .Values.readiness.periodSeconds }}
miroslavmasaryka7ac7f02023-03-01 14:12:26 +0100237 resources: {{ include "common.resources" . | nindent 10 }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100238 {{- if .Values.nodeSelector }}
239 nodeSelector:
240{{ toYaml .Values.nodeSelector | indent 8 }}
Sylvain Desbureauxa41dfc02021-02-15 10:14:22 +0100241 {{- end }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100242 {{- if .Values.affinity }}
243 affinity:
244{{ toYaml .Values.affinity | indent 8 }}
245 {{- end }}
246
247 # side car containers
Maciej Wereskid523d122021-09-21 11:22:13 +0200248 {{ include "common.log.sidecar" . | nindent 6 }}
farida azmyd8937332021-03-09 12:20:42 +0200249 serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
efiacord12c1672023-03-23 12:10:50 +0000250 volumes:
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100251 - name: localtime
252 hostPath:
253 path: /etc/localtime
Maciej Wereskid523d122021-09-21 11:22:13 +0200254 - name: logs
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100255 emptyDir: {}
256 - name: {{ include "common.fullname" . }}-logs-misc
257 emptyDir: {}
Maciej Wereskid523d122021-09-21 11:22:13 +0200258 {{ include "common.log.volumes" (dict "dot" . "configMapNamePrefix" (tpl .Values.logConfigMapNamePrefix .)) | nindent 6 }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100259 - name: {{ include "common.fullname" . }}-config
260 configMap:
Sylvain Desbureauxa41dfc02021-02-15 10:14:22 +0100261 name: {{ include "common.fullname" . }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100262 restartPolicy: {{ .Values.global.restartPolicy | default .Values.restartPolicy }}
263 imagePullSecrets:
264 - name: "{{ include "common.namespace" . }}-docker-registry-key"