blob: 626dc71506c6c20bf54941d8717cc29bfdf65b3c [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
4# Modifications Copyright (c) 2020 Nokia
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.Hosnidokht09523be2021-08-24 09:00:42 -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": "8447",
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": "8447",
84 "enable_ssl": true,
85 "lb_policy":"ip_hash",
86 "visualRange": "1"
87 },
Sylvain Desbureaux331f0042021-01-18 11:38:49 +010088 {{- end }}
89 {{- end }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010090 ]'
Sylvain Desbureaux331f0042021-01-18 11:38:49 +010091 {{- end }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010092 spec:
93 hostname: aai-resources
M.Hosnidokht09523be2021-08-24 09:00:42 -040094 terminationGracePeriodSeconds: {{ .Values.service.terminationGracePeriodSeconds }}
efiacord12c1672023-03-23 12:10:50 +000095 initContainers:
Sylvain Desbureauxb4e038d2020-12-15 12:00:26 +010096 - name: {{ include "common.name" . }}-readiness
97 command:
Sylvain Desbureaux70070412020-11-09 21:58:48 +010098 - /app/ready.py
99 args:
Sylvain Desbureauxb4e038d2020-12-15 12:00:26 +0100100 {{- if .Values.global.jobs.migration.enabled }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100101 - --job-name
102 - {{ include "common.release" . }}-aai-graphadmin-migration
Sylvain Desbureauxb4e038d2020-12-15 12:00:26 +0100103 {{- else }}
104 {{- if .Values.global.jobs.createSchema.enabled }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100105 - --job-name
106 - {{ include "common.release" . }}-aai-graphadmin-create-db-schema
Sylvain Desbureaux6212bb22021-01-18 11:43:33 +0100107 {{- else }}
Andreas Geisslercfd84342023-08-16 17:18:49 +0200108 - --app-name
Sylvain Desbureauxb4e038d2020-12-15 12:00:26 +0100109 {{- if .Values.global.cassandra.localCluster }}
110 - aai-cassandra
111 {{- else }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100112 - cassandra
Sylvain Desbureauxb4e038d2020-12-15 12:00:26 +0100113 {{- end }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100114 - --container-name
115 - aai-schema-service
Sylvain Desbureauxb4e038d2020-12-15 12:00:26 +0100116 {{- end }}
Sylvain Desbureaux6212bb22021-01-18 11:43:33 +0100117 {{- end }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100118 env:
119 - name: NAMESPACE
120 valueFrom:
121 fieldRef:
122 apiVersion: v1
123 fieldPath: metadata.namespace
Sylvain Desbureaux5b651322020-12-07 15:34:15 +0100124 image: {{ include "repositoryGenerator.image.readiness" . }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100125 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100126 containers:
127 - name: {{ include "common.name" . }}
Sylvain Desbureaux5b651322020-12-07 15:34:15 +0100128 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100129 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
Sylvain Desbureauxb4e038d2020-12-15 12:00:26 +0100130 command:
131 - sh
132 args:
133 - -c
134 - |
Sylvain Desbureauxb4e038d2020-12-15 12:00:26 +0100135 echo "*** actual launch of AAI Resources"
136 /bin/bash /opt/app/aai-resources/docker-entrypoint.sh
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100137 env:
Andreas Geissler2ac422a2023-10-25 14:19:19 +0200138 {{- if .Values.config.env }}
139 {{- range $key,$value := .Values.config.env }}
140 - name: {{ $key | upper | quote}}
141 value: {{ $value | quote}}
142 {{- end }}
143 {{- end }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100144 - name: LOCAL_USER_ID
145 value: {{ .Values.global.config.userId | quote }}
146 - name: LOCAL_GROUP_ID
147 value: {{ .Values.global.config.groupId | quote }}
M.Hosnidokht09523be2021-08-24 09:00:42 -0400148 - name: INTERNAL_PORT_1
149 value: {{ .Values.service.internalPort | quote }}
150 - name: INTERNAL_PORT_2
151 value: {{ .Values.service.internalPort2 | quote }}
leila46fb5802022-11-15 11:33:21 -0500152 - name: INTERNAL_PORT_3
153 value: {{ .Values.service.internalPort3 | quote }}
efiacord12c1672023-03-23 12:10:50 +0000154 volumeMounts:
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100155 - mountPath: /etc/localtime
156 name: localtime
157 readOnly: true
158 - mountPath: /opt/app/aai-resources/resources/etc/appprops/janusgraph-realtime.properties
159 name: {{ include "common.fullname" . }}-config
160 subPath: janusgraph-realtime.properties
161 - mountPath: /opt/app/aai-resources/resources/etc/appprops/janusgraph-cached.properties
162 name: {{ include "common.fullname" . }}-config
163 subPath: janusgraph-cached.properties
164 - mountPath: /opt/app/aai-resources/resources/etc/appprops/aaiconfig.properties
165 name: {{ include "common.fullname" . }}-config
166 subPath: aaiconfig.properties
167 - mountPath: /opt/aai/logroot/AAI-RES
Maciej Wereskid523d122021-09-21 11:22:13 +0200168 name: logs
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100169 - mountPath: /opt/app/aai-resources/resources/logback.xml
170 name: {{ include "common.fullname" . }}-config
171 subPath: logback.xml
172 - mountPath: /opt/app/aai-resources/resources/localhost-access-logback.xml
173 name: {{ include "common.fullname" . }}-config
174 subPath: localhost-access-logback.xml
175 - mountPath: /opt/app/aai-resources/resources/etc/auth/realm.properties
176 name: {{ include "common.fullname" . }}-config
177 subPath: realm.properties
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100178 - mountPath: /opt/app/aai-resources/resources/application.properties
179 name: {{ include "common.fullname" . }}-config
180 subPath: application.properties
181 - mountPath: /opt/app/aai-resources/resources/application-keycloak.properties
182 name: {{ include "common.fullname" . }}-config
183 subPath: application-keycloak.properties
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100184 ports:
185 - containerPort: {{ .Values.service.internalPort }}
Andreas Geisslerceac2602023-07-17 18:55:54 +0200186 name: {{ .Values.service.portName }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100187 - containerPort: {{ .Values.service.internalPort2 }}
Andreas Geisslerceac2602023-07-17 18:55:54 +0200188 name: {{ .Values.service.portName2 }}
leila46fb5802022-11-15 11:33:21 -0500189 - containerPort: {{ .Values.service.internalPort3 }}
Andreas Geisslerceac2602023-07-17 18:55:54 +0200190 name: {{ .Values.service.portName3 }}
M.Hosnidokht09523be2021-08-24 09:00:42 -0400191 lifecycle:
192 # wait for active requests (long-running tasks) to be finished
193 # Before the SIGTERM is invoked, Kubernetes exposes a preStop hook in the Pod.
194 preStop:
195 exec:
196 command:
197 - sh
198 - -c
199 - |
200 while (netstat -an | grep ESTABLISHED | grep -e $INTERNAL_PORT_1 -e $INTERNAL_PORT_2)
201 do sleep 10
202 done
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100203 # disable liveness probe when breakpoints set in debugger
204 # so K8s doesn't restart unresponsive container
Sylvain Desbureaux5b651322020-12-07 15:34:15 +0100205 {{- if .Values.liveness.enabled }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100206 livenessProbe:
Rommel Pawarc8845ef2022-09-22 14:04:14 -0700207 httpGet:
208 path: /aai/util/echo?action=checkDB
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100209 port: {{ .Values.service.internalPort }}
efiacord12c1672023-03-23 12:10:50 +0000210 scheme: HTTP
Rommel Pawarc8845ef2022-09-22 14:04:14 -0700211 httpHeaders:
212 - name: X-FromAppId
213 value: LivenessCheck
214 - name: X-TransactionId
215 value: LiveCheck_TID
216 - name: Accept
217 value: application/json
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100218 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
219 periodSeconds: {{ .Values.liveness.periodSeconds }}
Sylvain Desbureaux5b651322020-12-07 15:34:15 +0100220 {{- end }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100221 readinessProbe:
Rommel Pawarc8845ef2022-09-22 14:04:14 -0700222 httpGet:
223 path: /aai/util/echo?action=checkDB
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100224 port: {{ .Values.service.internalPort }}
efiacord12c1672023-03-23 12:10:50 +0000225 scheme: HTTP
Rommel Pawarc8845ef2022-09-22 14:04:14 -0700226 httpHeaders:
227 - name: X-FromAppId
228 value: ReadinessCheck
229 - name: X-TransactionId
230 value: ReadinessCheck_TID
231 - name: Accept
232 value: application/json
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100233 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
234 periodSeconds: {{ .Values.readiness.periodSeconds }}
miroslavmasaryka7ac7f02023-03-01 14:12:26 +0100235 resources: {{ include "common.resources" . | nindent 10 }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100236 {{- if .Values.nodeSelector }}
Sylvain Desbureaux5b651322020-12-07 15:34:15 +0100237 nodeSelector: {{ toYaml .Values.nodeSelector | nindent 8 }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100238 {{- end }}
Sylvain Desbureaux5b651322020-12-07 15:34:15 +0100239 {{- if .Values.affinity }}
240 affinity: {{ toYaml .Values.affinity | nindent 8 }}
241 {{- end }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100242 # side car containers
Maciej Wereskid523d122021-09-21 11:22:13 +0200243 {{ include "common.log.sidecar" . | nindent 6 }}
farida azmyd8937332021-03-09 12:20:42 +0200244 serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
efiacord12c1672023-03-23 12:10:50 +0000245 volumes:
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100246 - name: localtime
247 hostPath:
248 path: /etc/localtime
Maciej Wereskid523d122021-09-21 11:22:13 +0200249 - name: logs
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100250 emptyDir: {}
Maciej Wereskid523d122021-09-21 11:22:13 +0200251 {{ include "common.log.volumes" (dict "dot" . "configMapNamePrefix" (tpl .Values.logConfigMapNamePrefix .)) | nindent 6 }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100252 - name: {{ include "common.fullname" . }}-config
253 configMap:
Sylvain Desbureauxb4e038d2020-12-15 12:00:26 +0100254 name: {{ include "common.fullname" . }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100255 restartPolicy: {{ .Values.restartPolicy }}
256 imagePullSecrets:
257 - name: "{{ include "common.namespace" . }}-docker-registry-key"