Sylvain Desbureaux | 47eb4d2 | 2020-12-10 12:15:27 +0100 | [diff] [blame] | 1 | {{/* |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 2 | # Copyright (c) 2017 Amdocs, Bell Canada |
| 3 | # Modifications Copyright (c) 2018 AT&T |
Sylvain Desbureaux | 5b65132 | 2020-12-07 15:34:15 +0100 | [diff] [blame] | 4 | # Modifications Copyright (c) 2020 Nokia, Orange |
Sylvain Desbureaux | 331f004 | 2021-01-18 11:38:49 +0100 | [diff] [blame] | 5 | # Modifications Copyright (c) 2021 Orange |
efiacor | d12c167 | 2023-03-23 12:10:50 +0000 | [diff] [blame] | 6 | # Modifications Copyright © 2023 Nordix Foundation |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 7 | # |
| 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 Desbureaux | 47eb4d2 | 2020-12-10 12:15:27 +0100 | [diff] [blame] | 19 | */}} |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 20 | |
| 21 | apiVersion: apps/v1 |
| 22 | kind: Deployment |
| 23 | metadata: |
| 24 | name: {{ include "common.fullname" . }} |
| 25 | namespace: {{ include "common.namespace" . }} |
| 26 | labels: |
| 27 | app: {{ include "common.name" . }} |
Andreas Geissler | ceac260 | 2023-07-17 18:55:54 +0200 | [diff] [blame] | 28 | app.kubernetes.io/name: {{ include "common.name" . }} |
| 29 | {{- if .Chart.AppVersion }} |
| 30 | version: {{ .Chart.AppVersion | replace "+" "_" }} |
| 31 | {{- else }} |
| 32 | version: {{ .Chart.Version | replace "+" "_" }} |
| 33 | {{- end }} |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 34 | chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }} |
| 35 | release: {{ include "common.release" . }} |
| 36 | heritage: {{ .Release.Service }} |
| 37 | spec: |
| 38 | replicas: {{ .Values.replicaCount }} |
M.Hosnidokht | 15fea93 | 2021-08-25 09:08:40 -0400 | [diff] [blame] | 39 | minReadySeconds: {{ .Values.minReadySeconds }} |
| 40 | strategy: |
| 41 | type: {{ .Values.updateStrategy.type }} |
| 42 | rollingUpdate: |
| 43 | maxUnavailable: {{ .Values.updateStrategy.maxUnavailable }} |
| 44 | maxSurge: {{ .Values.updateStrategy.maxSurge }} |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 45 | 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 Geissler | ceac260 | 2023-07-17 18:55:54 +0200 | [diff] [blame] | 53 | app.kubernetes.io/name: {{ include "common.name" . }} |
| 54 | {{- if .Chart.AppVersion }} |
| 55 | version: {{ .Chart.AppVersion | replace "+" "_" }} |
| 56 | {{- else }} |
| 57 | version: {{ .Chart.Version | replace "+" "_" }} |
| 58 | {{- end }} |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 59 | name: {{ include "common.name" . }} |
| 60 | annotations: |
| 61 | checksum/config: {{ include (print $.Template.BasePath "/configmap.yaml") . | sha256sum }} |
Sylvain Desbureaux | 331f004 | 2021-01-18 11:38:49 +0100 | [diff] [blame] | 62 | {{- if .Values.global.msbEnabled }} |
| 63 | {{ $values := .Values }} |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 64 | msb.onap.org/service-info: '[ |
Sylvain Desbureaux | 331f004 | 2021-01-18 11:38:49 +0100 | [diff] [blame] | 65 | {{- range $api_endpoint := $values.aai_enpoints -}} |
| 66 | {{- range $api_version := $values.api_list }} |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 67 | { |
Sylvain Desbureaux | 331f004 | 2021-01-18 11:38:49 +0100 | [diff] [blame] | 68 | "serviceName": "_{{ $api_endpoint.name }}", |
| 69 | "version": "v{{ $api_version }}", |
| 70 | "url": "/aai/v{{ $api_version }}/{{ $api_endpoint.url }}", |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 71 | "protocol": "REST", |
| 72 | "port": "8446", |
| 73 | "enable_ssl": true, |
| 74 | "lb_policy":"ip_hash", |
| 75 | "visualRange": "1", |
Sylvain Desbureaux | 331f004 | 2021-01-18 11:38:49 +0100 | [diff] [blame] | 76 | "path": "/aai/v{{ $api_version }}/{{ $api_endpoint.url }}" |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 77 | }, |
| 78 | { |
Sylvain Desbureaux | 331f004 | 2021-01-18 11:38:49 +0100 | [diff] [blame] | 79 | "serviceName": "{{ $api_endpoint.name }}", |
| 80 | "version": "v{{ $api_version }}", |
| 81 | "url": "/aai/v{{ $api_version }}/{{ $api_endpoint.url }}", |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 82 | "protocol": "REST", |
| 83 | "port": "8446", |
| 84 | "enable_ssl": true, |
| 85 | "lb_policy":"ip_hash", |
Sylvain Desbureaux | 331f004 | 2021-01-18 11:38:49 +0100 | [diff] [blame] | 86 | "visualRange": "1" |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 87 | }, |
Sylvain Desbureaux | 331f004 | 2021-01-18 11:38:49 +0100 | [diff] [blame] | 88 | {{- end }} |
| 89 | {{- end }} |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 90 | { |
| 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 Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 101 | "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 Desbureaux | 331f004 | 2021-01-18 11:38:49 +0100 | [diff] [blame] | 110 | {{- end }} |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 111 | spec: |
| 112 | hostname: aai-traversal |
M.Hosnidokht | 15fea93 | 2021-08-25 09:08:40 -0400 | [diff] [blame] | 113 | terminationGracePeriodSeconds: {{ .Values.service.terminationGracePeriodSeconds }} |
efiacor | d12c167 | 2023-03-23 12:10:50 +0000 | [diff] [blame] | 114 | initContainers: |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 115 | - command: |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 116 | - /app/ready.py |
| 117 | args: |
Sylvain Desbureaux | a41dfc0 | 2021-02-15 10:14:22 +0100 | [diff] [blame] | 118 | {{- if .Values.global.jobs.migration.enabled }} |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 119 | - --job-name |
| 120 | - {{ include "common.release" . }}-aai-graphadmin-migration |
Sylvain Desbureaux | a41dfc0 | 2021-02-15 10:14:22 +0100 | [diff] [blame] | 121 | {{- else }} |
| 122 | {{- if .Values.global.jobs.createSchema.enabled }} |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 123 | - --job-name |
| 124 | - {{ include "common.release" . }}-aai-graphadmin-create-db-schema |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 125 | {{- else }} |
Sylvain Desbureaux | a41dfc0 | 2021-02-15 10:14:22 +0100 | [diff] [blame] | 126 | - --container-name |
| 127 | {{- if .Values.global.cassandra.localCluster }} |
| 128 | - aai-cassandra |
| 129 | {{- else }} |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 130 | - cassandra |
Sylvain Desbureaux | a41dfc0 | 2021-02-15 10:14:22 +0100 | [diff] [blame] | 131 | {{- end }} |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 132 | - --container-name |
| 133 | - aai-schema-service |
Sylvain Desbureaux | a41dfc0 | 2021-02-15 10:14:22 +0100 | [diff] [blame] | 134 | {{- end }} |
| 135 | {{- end }} |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 136 | env: |
| 137 | - name: NAMESPACE |
| 138 | valueFrom: |
| 139 | fieldRef: |
| 140 | apiVersion: v1 |
| 141 | fieldPath: metadata.namespace |
Sylvain Desbureaux | 5b65132 | 2020-12-07 15:34:15 +0100 | [diff] [blame] | 142 | image: {{ include "repositoryGenerator.image.readiness" . }} |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 143 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 144 | name: {{ include "common.name" . }}-readiness |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 145 | containers: |
| 146 | - name: {{ include "common.name" . }} |
Sylvain Desbureaux | 5b65132 | 2020-12-07 15:34:15 +0100 | [diff] [blame] | 147 | image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }} |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 148 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
Sylvain Desbureaux | a41dfc0 | 2021-02-15 10:14:22 +0100 | [diff] [blame] | 149 | command: |
| 150 | - sh |
| 151 | args: |
| 152 | - -c |
| 153 | - | |
Sylvain Desbureaux | a41dfc0 | 2021-02-15 10:14:22 +0100 | [diff] [blame] | 154 | echo "*** actual launch of AAI Resources" |
| 155 | /bin/bash /opt/app/aai-traversal/docker-entrypoint.sh |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 156 | env: |
| 157 | - name: DISABLE_UPDATE_QUERY |
| 158 | value: {{ .Values.config.disableUpdateQuery | quote }} |
| 159 | - name: LOCAL_USER_ID |
| 160 | value: {{ .Values.global.config.userId | quote }} |
| 161 | - name: LOCAL_GROUP_ID |
| 162 | value: {{ .Values.global.config.groupId | quote }} |
M.Hosnidokht | 15fea93 | 2021-08-25 09:08:40 -0400 | [diff] [blame] | 163 | - name: INTERNAL_PORT_1 |
| 164 | value: {{ .Values.service.internalPort | quote }} |
| 165 | - name: INTERNAL_PORT_2 |
| 166 | value: {{ .Values.service.internalPort2 | quote }} |
leila | 46fb580 | 2022-11-15 11:33:21 -0500 | [diff] [blame] | 167 | - name: INTERNAL_PORT_3 |
| 168 | value: {{ .Values.service.internalPort3 | quote }} |
efiacor | d12c167 | 2023-03-23 12:10:50 +0000 | [diff] [blame] | 169 | volumeMounts: |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 170 | - mountPath: /etc/localtime |
| 171 | name: localtime |
| 172 | readOnly: true |
| 173 | - mountPath: /opt/app/aai-traversal/resources/etc/appprops/janusgraph-realtime.properties |
| 174 | name: {{ include "common.fullname" . }}-config |
| 175 | subPath: janusgraph-realtime.properties |
| 176 | - mountPath: /opt/app/aai-traversal/resources/etc/appprops/janusgraph-cached.properties |
| 177 | name: {{ include "common.fullname" . }}-config |
| 178 | subPath: janusgraph-cached.properties |
| 179 | - mountPath: /opt/app/aai-traversal/resources/etc/appprops/aaiconfig.properties |
| 180 | name: {{ include "common.fullname" . }}-config |
| 181 | subPath: aaiconfig.properties |
| 182 | - mountPath: /opt/aai/logroot/AAI-GQ |
Maciej Wereski | d523d12 | 2021-09-21 11:22:13 +0200 | [diff] [blame] | 183 | name: logs |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 184 | - mountPath: /opt/aai/logroot/AAI-GQ/misc |
| 185 | name: {{ include "common.fullname" . }}-logs-misc |
| 186 | - mountPath: /opt/app/aai-traversal/resources/logback.xml |
| 187 | name: {{ include "common.fullname" . }}-config |
| 188 | subPath: logback.xml |
| 189 | - mountPath: /opt/app/aai-traversal/resources/localhost-access-logback.xml |
| 190 | name: {{ include "common.fullname" . }}-config |
| 191 | subPath: localhost-access-logback.xml |
| 192 | - mountPath: /opt/app/aai-traversal/resources/etc/auth/realm.properties |
| 193 | name: {{ include "common.fullname" . }}-config |
| 194 | subPath: realm.properties |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 195 | - mountPath: /opt/app/aai-traversal/resources/application.properties |
| 196 | name: {{ include "common.fullname" . }}-config |
| 197 | subPath: application.properties |
Sam Huang | 56a6dd4 | 2021-03-26 13:27:17 -0600 | [diff] [blame] | 198 | - mountPath: /opt/app/aai-traversal/resources/application-keycloak.properties |
| 199 | name: {{ include "common.fullname" . }}-config |
| 200 | subPath: application-keycloak.properties |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 201 | ports: |
| 202 | - containerPort: {{ .Values.service.internalPort }} |
Andreas Geissler | ceac260 | 2023-07-17 18:55:54 +0200 | [diff] [blame] | 203 | name: {{ .Values.service.portName }} |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 204 | - containerPort: {{ .Values.service.internalPort2 }} |
Andreas Geissler | ceac260 | 2023-07-17 18:55:54 +0200 | [diff] [blame] | 205 | name: {{ .Values.service.portName2 }} |
leila | 46fb580 | 2022-11-15 11:33:21 -0500 | [diff] [blame] | 206 | - containerPort: {{ .Values.service.internalPort3 }} |
Andreas Geissler | ceac260 | 2023-07-17 18:55:54 +0200 | [diff] [blame] | 207 | name: {{ .Values.service.portName3 }} |
M.Hosnidokht | 15fea93 | 2021-08-25 09:08:40 -0400 | [diff] [blame] | 208 | lifecycle: |
| 209 | # wait for active requests (long-running tasks) to be finished |
| 210 | # Before the SIGTERM is invoked, Kubernetes exposes a preStop hook in the Pod. |
| 211 | preStop: |
| 212 | exec: |
| 213 | command: |
| 214 | - sh |
| 215 | - -c |
| 216 | - | |
| 217 | while (netstat -an | grep ESTABLISHED | grep -e $INTERNAL_PORT_1 -e $INTERNAL_PORT_2) |
| 218 | do sleep 10 |
| 219 | done |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 220 | # disable liveness probe when breakpoints set in debugger |
| 221 | # so K8s doesn't restart unresponsive container |
| 222 | {{ if .Values.liveness.enabled }} |
| 223 | livenessProbe: |
Fiete Ostkamp | c113ef3 | 2022-10-12 09:50:46 +0200 | [diff] [blame] | 224 | httpGet: |
| 225 | path: /aai/util/echo?action=checkDB |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 226 | port: {{ .Values.service.internalPort }} |
efiacor | d12c167 | 2023-03-23 12:10:50 +0000 | [diff] [blame] | 227 | scheme: HTTP |
Fiete Ostkamp | c113ef3 | 2022-10-12 09:50:46 +0200 | [diff] [blame] | 228 | httpHeaders: |
| 229 | - name: X-FromAppId |
| 230 | value: LivenessCheck |
| 231 | - name: X-TransactionId |
| 232 | value: LiveCheck_TID |
| 233 | - name: Accept |
| 234 | value: application/json |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 235 | initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} |
| 236 | periodSeconds: {{ .Values.liveness.periodSeconds }} |
| 237 | {{ end }} |
| 238 | readinessProbe: |
Fiete Ostkamp | c113ef3 | 2022-10-12 09:50:46 +0200 | [diff] [blame] | 239 | httpGet: |
| 240 | path: /aai/util/echo?action=checkDB |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 241 | port: {{ .Values.service.internalPort }} |
efiacor | d12c167 | 2023-03-23 12:10:50 +0000 | [diff] [blame] | 242 | scheme: HTTP |
Fiete Ostkamp | c113ef3 | 2022-10-12 09:50:46 +0200 | [diff] [blame] | 243 | httpHeaders: |
| 244 | - name: X-FromAppId |
| 245 | value: ReadinessCheck |
| 246 | - name: X-TransactionId |
| 247 | value: ReadinessCheck_TID |
| 248 | - name: Accept |
| 249 | value: application/json |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 250 | initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} |
| 251 | periodSeconds: {{ .Values.readiness.periodSeconds }} |
miroslavmasaryk | a7ac7f0 | 2023-03-01 14:12:26 +0100 | [diff] [blame] | 252 | resources: {{ include "common.resources" . | nindent 10 }} |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 253 | {{- if .Values.nodeSelector }} |
| 254 | nodeSelector: |
| 255 | {{ toYaml .Values.nodeSelector | indent 8 }} |
Sylvain Desbureaux | a41dfc0 | 2021-02-15 10:14:22 +0100 | [diff] [blame] | 256 | {{- end }} |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 257 | {{- if .Values.affinity }} |
| 258 | affinity: |
| 259 | {{ toYaml .Values.affinity | indent 8 }} |
| 260 | {{- end }} |
| 261 | |
| 262 | # side car containers |
Maciej Wereski | d523d12 | 2021-09-21 11:22:13 +0200 | [diff] [blame] | 263 | {{ include "common.log.sidecar" . | nindent 6 }} |
farida azmy | d893733 | 2021-03-09 12:20:42 +0200 | [diff] [blame] | 264 | serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}} |
efiacor | d12c167 | 2023-03-23 12:10:50 +0000 | [diff] [blame] | 265 | volumes: |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 266 | - name: localtime |
| 267 | hostPath: |
| 268 | path: /etc/localtime |
Maciej Wereski | d523d12 | 2021-09-21 11:22:13 +0200 | [diff] [blame] | 269 | - name: logs |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 270 | emptyDir: {} |
| 271 | - name: {{ include "common.fullname" . }}-logs-misc |
| 272 | emptyDir: {} |
Maciej Wereski | d523d12 | 2021-09-21 11:22:13 +0200 | [diff] [blame] | 273 | {{ include "common.log.volumes" (dict "dot" . "configMapNamePrefix" (tpl .Values.logConfigMapNamePrefix .)) | nindent 6 }} |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 274 | - name: {{ include "common.fullname" . }}-config |
| 275 | configMap: |
Sylvain Desbureaux | a41dfc0 | 2021-02-15 10:14:22 +0100 | [diff] [blame] | 276 | name: {{ include "common.fullname" . }} |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 277 | restartPolicy: {{ .Values.global.restartPolicy | default .Values.restartPolicy }} |
| 278 | imagePullSecrets: |
| 279 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |