blob: c76996105990464f4f83745fa2639c0e063cc787 [file] [log] [blame]
Jakub Latusek44f0fdd2020-10-21 13:36:29 +02001{{/*
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +00002# Copyright © 2018 AT&T USA
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
Jakub Latusek44f0fdd2020-10-21 13:36:29 +020015*/}}
Grzegorz-Lisd1c1f6a2020-07-29 12:22:40 +020016apiVersion: apps/v1
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000017kind: Deployment
18metadata:
19 name: {{ include "common.fullname" . }}
20 namespace: {{ include "common.namespace" . }}
21 labels:
22 app: {{ include "common.fullname" . }}
23 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010024 release: {{ include "common.release" . }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000025spec:
Grzegorz-Lisd1c1f6a2020-07-29 12:22:40 +020026 selector:
27 matchLabels:
28 app: {{ include "common.name" . }}
Sylvain Desbureaux747982c2020-11-19 17:40:05 +010029 replicas: {{ .Values.replicaCount }}
30 minReadySeconds: {{ .Values.minReadySeconds }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000031 strategy:
Sylvain Desbureaux747982c2020-11-19 17:40:05 +010032 type: {{ .Values.updateStrategy.type }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000033 rollingUpdate:
Sylvain Desbureaux747982c2020-11-19 17:40:05 +010034 maxUnavailable: {{ .Values.updateStrategy.maxUnavailable }}
35 maxSurge: {{ .Values.updateStrategy.maxSurge }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000036 template:
37 metadata:
38 labels:
39 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010040 release: {{ include "common.release" . }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000041 spec:
Sylvain Desbureauxd055a172020-10-30 14:32:03 +010042 initContainers:
43 {{ include "so.certificate.container_importer" . | indent 6 | trim }}
44 {{ include "common.readinessCheck.waitFor" . | indent 6 | trim }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000045 containers:
46 - name: {{ include "common.name" . }}
Sylvain Desbureaux747982c2020-11-19 17:40:05 +010047 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
seshukm0df1f8e2020-08-17 21:45:49 +053048 resources: {{ include "common.resources" . | nindent 12 }}
49 {{- if .Values.global.aafEnabled }}
50 command:
51 - sh
52 args:
53 - -c
54 - |
Sylvain Desbureauxfde94072021-03-19 15:06:41 +010055 export $(cat {{ .Values.soHelpers.certInitializer.credsPath }}/mycreds.prop | xargs -0)
seshukm0df1f8e2020-08-17 21:45:49 +053056 {{- if .Values.global.security.aaf.enabled }}
Sylvain Desbureauxa1bbe5c2020-10-28 16:55:18 +010057 export KEYSTORE_PASSWORD="${cadi_keystore_password_p12}"
seshukm0df1f8e2020-08-17 21:45:49 +053058 {{- end }}
59 /app/start-app.sh
60 {{- end }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000061 env:
62 - name: DB_HOST
krishnaa9692b606b2020-10-30 11:29:21 +053063 value: {{ include "common.mariadbService" . }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000064 - name: DB_PORT
krishnaa9692b606b2020-10-30 11:29:21 +053065 value: {{ include "common.mariadbPort" . | quote }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000066 - name: DB_USERNAME
Krzysztof Opasiakfcfb5f02020-03-24 23:34:24 +010067 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-user-creds" "key" "login") | indent 10 }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000068 - name: DB_PASSWORD
Krzysztof Opasiakfcfb5f02020-03-24 23:34:24 +010069 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-user-creds" "key" "password") | indent 10 }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000070 - name: DB_ADMIN_USERNAME
Krzysztof Opasiakfcfb5f02020-03-24 23:34:24 +010071 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-admin-creds" "key" "login") | indent 10 }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000072 - name: DB_ADMIN_PASSWORD
Krzysztof Opasiakfcfb5f02020-03-24 23:34:24 +010073 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-admin-creds" "key" "password") | indent 10 }}
seshukm0df1f8e2020-08-17 21:45:49 +053074 {{ include "so.certificates.env" . | indent 8 | trim }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000075 envFrom:
76 - configMapRef:
77 name: {{ include "common.fullname" . }}-configmap
jmacc4f04d32018-10-12 18:24:24 +000078 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
seshukm0df1f8e2020-08-17 21:45:49 +053079 volumeMounts: {{ include "so.certificate.volumeMount" . | nindent 8 }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000080 - name: logs
81 mountPath: /app/logs
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000082 - name: config
83 mountPath: /app/config
84 readOnly: true
85 livenessProbe:
86 httpGet:
Sylvain Desbureaux747982c2020-11-19 17:40:05 +010087 path: {{- .Values.livenessProbe.path|indent 2}}
88 port: {{ .Values.containerPort }}
89 scheme: {{- .Values.livenessProbe.scheme| indent 2}}
90 initialDelaySeconds: {{ .Values.livenessProbe.initialDelaySeconds}}
91 periodSeconds: {{ .Values.livenessProbe.periodSeconds}}
92 timeoutSeconds: {{ .Values.livenessProbe.timeoutSeconds}}
93 successThreshold: {{ .Values.livenessProbe.successThreshold}}
94 failureThreshold: {{ .Values.livenessProbe.failureThreshold}}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000095 ports:
Sylvain Desbureaux747982c2020-11-19 17:40:05 +010096 - containerPort: {{ .Values.containerPort }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000097 name: {{ .Values.service.portName }}
98 protocol: TCP
Sylvain Desbureauxaadf5452020-03-18 18:13:51 +010099 volumes: {{ include "so.certificate.volumes" . | nindent 6 }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000100 - name: logs
101 emptyDir: {}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000102 - name: config
103 configMap:
104 name: {{ include "common.fullname" . }}-app-configmap
105 imagePullSecrets:
vaibhav16dec0da88292018-08-13 06:10:27 +0000106 - name: "{{ include "common.namespace" . }}-docker-registry-key"