blob: 01e0ab70772ea6031e84e8abb118ad6d83559f61 [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" . }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000029 replicas: {{ index .Values.replicaCount }}
30 minReadySeconds: {{ index .Values.minReadySeconds }}
31 strategy:
32 type: {{ index .Values.updateStrategy.type }}
33 rollingUpdate:
34 maxUnavailable: {{ index .Values.updateStrategy.maxUnavailable }}
35 maxSurge: {{ index .Values.updateStrategy.maxSurge }}
36 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 Desbureauxaadf5452020-03-18 18:13:51 +010042 initContainers: {{ include "so.certificate.container_importer" . | nindent 6 }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000043 containers:
44 - name: {{ include "common.name" . }}
Sylvain Desbureaux747982c2020-11-19 17:40:05 +010045 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
seshukm0df1f8e2020-08-17 21:45:49 +053046 resources: {{ include "common.resources" . | nindent 12 }}
47 {{- if .Values.global.aafEnabled }}
48 command:
49 - sh
50 args:
51 - -c
52 - |
Sylvain Desbureauxfde94072021-03-19 15:06:41 +010053 export $(cat {{ .Values.soHelpers.certInitializer.credsPath }}/mycreds.prop | xargs -0)
seshukm0df1f8e2020-08-17 21:45:49 +053054 {{- if .Values.global.security.aaf.enabled }}
Sylvain Desbureauxa1bbe5c2020-10-28 16:55:18 +010055 export KEYSTORE_PASSWORD="${cadi_keystore_password_p12}"
seshukm0df1f8e2020-08-17 21:45:49 +053056 {{- end }}
57 /app/start-app.sh
58 {{- end }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000059 env:
60 - name: DB_HOST
krishnaa9692b606b2020-10-30 11:29:21 +053061 value: {{ include "common.mariadbService" . }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000062 - name: DB_PORT
krishnaa9692b606b2020-10-30 11:29:21 +053063 value: {{ include "common.mariadbPort" . | quote }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000064 - name: DB_USERNAME
Krzysztof Opasiak57431412020-03-24 23:18:49 +010065 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-user-creds" "key" "login") | indent 10 }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000066 - name: DB_PASSWORD
Krzysztof Opasiak57431412020-03-24 23:18:49 +010067 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-user-creds" "key" "password") | indent 10 }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000068 - name: DB_ADMIN_USERNAME
Krzysztof Opasiak57431412020-03-24 23:18:49 +010069 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-admin-creds" "key" "login") | indent 10 }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000070 - name: DB_ADMIN_PASSWORD
Krzysztof Opasiak57431412020-03-24 23:18:49 +010071 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-admin-creds" "key" "password") | indent 10 }}
seshukm610d97d2021-03-19 02:57:36 +053072 - name: MSO_KEY
73 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "sdnc-adapter-mso-key" "key" "password") | indent 10 }}
74 - name: MSO_AUTH
75 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "sdnc-adapter-mso-auth" "key" "password") | indent 10 }}
76 - name: AAF_AUTH
77 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "sdnc-adapter-aaf-auth" "key" "password") | indent 10 }}
seshukm0df1f8e2020-08-17 21:45:49 +053078 {{ include "so.certificates.env" . | indent 8 | trim }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000079 envFrom:
80 - configMapRef:
81 name: {{ include "common.fullname" . }}-configmap
jmacc4f04d32018-10-12 18:24:24 +000082 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
seshukm0df1f8e2020-08-17 21:45:49 +053083 volumeMounts: {{ include "so.certificate.volumeMount" . | nindent 8 }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000084 - name: logs
85 mountPath: /app/logs
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000086 - name: config
87 mountPath: /app/config
88 readOnly: true
sunilb0a97ab22020-02-25 10:18:48 +053089 - name: {{ include "common.fullname" . }}-logs
90 mountPath: /var/log/onap
seshukm0df1f8e2020-08-17 21:45:49 +053091{{ include "so.helpers.livenessProbe" .| indent 8 }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000092 ports:
93 - containerPort: {{ index .Values.containerPort }}
94 name: {{ .Values.service.portName }}
95 protocol: TCP
sunilb0a97ab22020-02-25 10:18:48 +053096 # Filebeat sidecar container
Maciej Wereskidf9ba222021-11-05 14:38:18 +000097 {{ include "common.log.sidecar" . | nindent 6 }}
farida azmy87f46222021-04-06 15:25:15 +020098 serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
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
sunilb0a97ab22020-02-25 10:18:48 +0530105 - name: {{ include "common.fullname" . }}-log-conf
106 configMap:
107 name: {{ include "common.fullname" . }}-log
Maciej Wereskidf9ba222021-11-05 14:38:18 +0000108 {{ include "common.log.volumes" (dict "dot" . "configMapNamePrefix" (tpl .Values.logConfigMapNamePrefix .)) | nindent 6 }}
sunilb0a97ab22020-02-25 10:18:48 +0530109 - name: {{ include "common.fullname" . }}-logs
110 emptyDir: {}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000111 imagePullSecrets:
vaibhav16dec0da88292018-08-13 06:10:27 +0000112 - name: "{{ include "common.namespace" . }}-docker-registry-key"