blob: d23d9cf6a8f00b9ea825f12320de5505da9a8781 [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
5#
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
Sylvain Desbureaux47eb4d22020-12-10 12:15:27 +010017*/}}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010018
19apiVersion: apps/v1
20kind: Deployment
21metadata:
22 name: {{ include "common.fullname" . }}
23 namespace: {{ include "common.namespace" . }}
24 labels:
25 app: {{ include "common.name" . }}
26 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
27 release: {{ include "common.release" . }}
28 heritage: {{ .Release.Service }}
29spec:
30 replicas: {{ .Values.replicaCount }}
31 selector:
32 matchLabels:
33 app: {{ include "common.name" . }}
34 template:
35 metadata:
Andreas Geissler8624d222022-05-13 17:16:41 +020036 annotations:
37 sidecar.istio.io/rewriteAppHTTPProbers: "false"
Sylvain Desbureaux70070412020-11-09 21:58:48 +010038 labels:
39 app: {{ include "common.name" . }}
40 release: {{ include "common.release" . }}
41 name: {{ include "common.name" . }}
42 spec:
Sylvain Desbureaux375d0ea2021-03-08 16:52:20 +000043 initContainers: {{ include "common.certInitializer.initContainer" . | nindent 6 }}
osk1146127fd7d82021-06-18 00:51:17 +020044 {{- if ( include "common.needTLS" .) }}
Sylvain Desbureaux375d0ea2021-03-08 16:52:20 +000045 - command:
46 - sh
47 args:
48 - -c
49 - |
50 echo "*** retrieve Truststore and Keystore password"
51 export $(cat {{ .Values.certInitializer.credsPath }}/mycreds.prop \
52 | xargs -0)
53 if [ -z "$KEYSTORE_PASSWORD" ]
54 then
55 echo " /!\ certificates retrieval failed"
56 exit 1
57 fi
58 echo "*** write them in portal part"
59 cd /config-input
60 for PFILE in `ls -1 .`
61 do
62 envsubst <${PFILE} >/config/${PFILE}
63 done
64 volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 8 }}
65 - mountPath: /config-input
66 name: portal-config-input
67 - mountPath: /config
68 name: portal-config
69 image: {{ include "repositoryGenerator.image.envsubst" . }}
70 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
71 name: {{ include "common.name" . }}-update-config
osk1146127fd7d82021-06-18 00:51:17 +020072 {{- end }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010073 - command:
74 - /app/ready.py
75 args:
76 - --container-name
Sylvain Desbureaux70070412020-11-09 21:58:48 +010077 - aai
78 env:
79 - name: NAMESPACE
80 valueFrom:
81 fieldRef:
82 apiVersion: v1
83 fieldPath: metadata.namespace
Sylvain Desbureaux5b651322020-12-07 15:34:15 +010084 image: {{ include "repositoryGenerator.image.readiness" . }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010085 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
86 name: {{ include "common.name" . }}-readiness
87 containers:
88 - name: {{ include "common.name" . }}
Sylvain Desbureaux5b651322020-12-07 15:34:15 +010089 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010090 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
Sylvain Desbureaux375d0ea2021-03-08 16:52:20 +000091 command:
92 - sh
93 args:
94 - -c
95 - |
96 echo "*** retrieve Truststore and Keystore password"
97 export $(cat {{ .Values.certInitializer.credsPath }}/mycreds.prop \
98 | xargs -0)
99 echo "*** actual launch of AAI Sparky BE"
100 /opt/app/sparky/bin/start.sh
101 volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 8 }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100102 - mountPath: /etc/localtime
103 name: localtime
104 readOnly: true
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100105 - mountPath: /opt/app/sparky/config/auth/csp-cookie-filter.properties
Sylvain Desbureaux375d0ea2021-03-08 16:52:20 +0000106 name: auth-config
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100107 subPath: csp-cookie-filter.properties
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100108 - mountPath: /opt/app/sparky/config/portal/
Sylvain Desbureaux375d0ea2021-03-08 16:52:20 +0000109 name: portal-config
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100110 - mountPath: /opt/app/sparky/config/portal/BOOT-INF/classes/
Sylvain Desbureaux375d0ea2021-03-08 16:52:20 +0000111 name: portal-config-props
Maciej Wereskid523d122021-09-21 11:22:13 +0200112 - mountPath: {{ .Values.log.path }}
Sylvain Desbureaux375d0ea2021-03-08 16:52:20 +0000113 name: logs
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100114 - mountPath: /opt/app/sparky/config/application.properties
Sylvain Desbureaux375d0ea2021-03-08 16:52:20 +0000115 name: config
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100116 subPath: application.properties
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100117 - mountPath: /opt/app/sparky/config/application-resources.properties
Sylvain Desbureaux375d0ea2021-03-08 16:52:20 +0000118 name: config
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100119 subPath: application-resources.properties
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100120 - mountPath: /opt/app/sparky/config/application-ssl.properties
Sylvain Desbureaux375d0ea2021-03-08 16:52:20 +0000121 name: config
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100122 subPath: application-ssl.properties
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100123 - mountPath: /opt/app/sparky/config/application-oxm-default.properties
Sylvain Desbureaux375d0ea2021-03-08 16:52:20 +0000124 name: config
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100125 subPath: application-oxm-default.properties
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100126 - mountPath: /opt/app/sparky/config/application-oxm-override.properties
Sylvain Desbureaux375d0ea2021-03-08 16:52:20 +0000127 name: config
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100128 subPath: application-oxm-override.properties
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100129 - mountPath: /opt/app/sparky/config/application-oxm-schema-prod.properties
Sylvain Desbureaux375d0ea2021-03-08 16:52:20 +0000130 name: config
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100131 subPath: application-oxm-schema-prod.properties
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100132 - mountPath: /opt/app/sparky/config/roles.config
Sylvain Desbureaux375d0ea2021-03-08 16:52:20 +0000133 name: config
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100134 subPath: roles.config
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100135 - mountPath: /opt/app/sparky/config/users.config
Sylvain Desbureaux375d0ea2021-03-08 16:52:20 +0000136 name: config
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100137 subPath: users.config
Sylvain Desbureaux375d0ea2021-03-08 16:52:20 +0000138 - mountPath: /opt/app/sparky/config/logging/logback.xml
139 name: config
140 subPath: logback.xml
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100141 ports:
142 - containerPort: {{ .Values.service.internalPort }}
143 # disable liveness probe when breakpoints set in debugger
144 # so K8s doesn't restart unresponsive container
145 {{- if eq .Values.liveness.enabled true }}
146 livenessProbe:
147 tcpSocket:
148 port: {{ .Values.service.internalPort }}
149 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
150 periodSeconds: {{ .Values.liveness.periodSeconds }}
151 {{ end -}}
152 readinessProbe:
153 tcpSocket:
154 port: {{ .Values.service.internalPort }}
155 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
156 periodSeconds: {{ .Values.readiness.periodSeconds }}
157 resources:
158{{ include "common.resources" . }}
159 {{- if .Values.nodeSelector }}
160 nodeSelector:
161{{ toYaml .Values.nodeSelector | indent 8 }}
162 {{- end -}}
163 {{- if .Values.affinity }}
164 affinity:
165{{ toYaml .Values.affinity | indent 8 }}
166 {{- end }}
167
168 # side car containers
Maciej Wereskid523d122021-09-21 11:22:13 +0200169 {{ include "common.log.sidecar" . | nindent 6 }}
farida azmyd8937332021-03-09 12:20:42 +0200170 serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
Sylvain Desbureaux375d0ea2021-03-08 16:52:20 +0000171 volumes: {{ include "common.certInitializer.volumes" . | nindent 6 }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100172 - name: localtime
173 hostPath:
174 path: /etc/localtime
Sylvain Desbureaux375d0ea2021-03-08 16:52:20 +0000175 - name: config
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100176 configMap:
177 name: {{ include "common.fullname" . }}
Sylvain Desbureaux375d0ea2021-03-08 16:52:20 +0000178 - name: portal-config
othman touijer51176672021-12-01 16:21:18 +0100179 {{- if .Values.global.aafEnabled }}
Sylvain Desbureaux375d0ea2021-03-08 16:52:20 +0000180 emptyDir:
181 medium: Memory
182 - name: portal-config-input
othman touijer51176672021-12-01 16:21:18 +0100183 {{- end }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100184 configMap:
185 name: {{ include "common.fullname" . }}-portal
Sylvain Desbureaux375d0ea2021-03-08 16:52:20 +0000186 - name: portal-config-props
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100187 configMap:
188 name: {{ include "common.fullname" . }}-portal-props
Sylvain Desbureaux375d0ea2021-03-08 16:52:20 +0000189 - name: auth-config
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100190 secret:
191 secretName: {{ include "common.fullname" . }}
Sylvain Desbureaux375d0ea2021-03-08 16:52:20 +0000192 - name: logs
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100193 emptyDir: {}
Maciej Wereskid523d122021-09-21 11:22:13 +0200194 {{ include "common.log.volumes" (dict "dot" . "configMapNamePrefix" (tpl .Values.logConfigMapNamePrefix .)) | nindent 6 }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100195 - name: modeldir
196 emptyDir: {}
197 restartPolicy: {{ .Values.global.restartPolicy | default .Values.restartPolicy }}
198 imagePullSecrets:
199 - name: "{{ include "common.namespace" . }}-docker-registry-key"