blob: 3fee225c03661dce89cb9a4a73031e1525740aa2 [file] [log] [blame]
Jakub Latusek44f0fdd2020-10-21 13:36:29 +02001{{/*
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +00002# Copyright © 2018 AT&T USA
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00003#
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
Mike Elliottd32d36e2018-02-12 15:54:03 -050017kind: Deployment
18metadata:
Mandeep Khindaa57d8dd2018-03-09 14:29:37 +000019 name: {{ include "common.fullname" . }}
Mike Elliottd32d36e2018-02-12 15:54:03 -050020 namespace: {{ include "common.namespace" . }}
21 labels:
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000022 app: {{ include "common.fullname" . }}
Mike Elliottd32d36e2018-02-12 15:54:03 -050023 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010024 release: {{ include "common.release" . }}
Mike Elliottd32d36e2018-02-12 15:54:03 -050025spec:
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 }}
Mike Elliottd32d36e2018-02-12 15:54:03 -050036 template:
37 metadata:
38 labels:
39 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010040 release: {{ include "common.release" . }}
Mike Elliottd32d36e2018-02-12 15:54:03 -050041 spec:
seshukm0df1f8e2020-08-17 21:45:49 +053042 initContainers:
43 {{ include "so.certificate.container_importer" . | indent 6 | trim }}
Sylvain Desbureauxd055a172020-10-30 14:32:03 +010044 {{ include "common.readinessCheck.waitFor" . | indent 6 | trim }}
Mike Elliottd32d36e2018-02-12 15:54:03 -050045 containers:
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000046 - 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 - |
55 export $(grep '^c' {{ .Values.soHelpers.certInitializer.credsPath }}/mycreds.prop | xargs -0)
56 export TRUSTSTORE_PASSWORD="${cadi_truststore_password}"
57 {{- if .Values.global.security.aaf.enabled }}
Sylvain Desbureauxa1bbe5c2020-10-28 16:55:18 +010058 export KEYSTORE_PASSWORD="${cadi_keystore_password_p12}"
seshukm0df1f8e2020-08-17 21:45:49 +053059 {{- end }}
60 /app/start-app.sh
61 {{- end }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000062 env:
63 - name: DB_HOST
krishnaa9692b606b2020-10-30 11:29:21 +053064 value: {{ include "common.mariadbService" . }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000065 - name: DB_PORT
krishnaa9692b606b2020-10-30 11:29:21 +053066 value: {{ include "common.mariadbPort" . | quote }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000067 - name: DB_USERNAME
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +010068 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-user-creds" "key" "login") | indent 10 }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000069 - name: DB_PASSWORD
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +010070 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-user-creds" "key" "password") | indent 10 }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000071 - name: DB_ADMIN_USERNAME
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +010072 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-admin-creds" "key" "login") | indent 10 }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000073 - name: DB_ADMIN_PASSWORD
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +010074 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-admin-creds" "key" "password") | indent 10 }}
seshukm0df1f8e2020-08-17 21:45:49 +053075 {{ include "so.certificates.env" . | indent 8 | trim }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000076 envFrom:
77 - configMapRef:
78 name: {{ include "common.fullname" . }}-configmap
jmacc4f04d32018-10-12 18:24:24 +000079 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
seshukm0df1f8e2020-08-17 21:45:49 +053080 volumeMounts: {{ include "so.certificate.volumeMount" . | nindent 8 }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000081 - name: logs
82 mountPath: /app/logs
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000083 - name: config
84 mountPath: /app/config
85 readOnly: true
sunilb0a97ab22020-02-25 10:18:48 +053086 - name: {{ include "common.fullname" . }}-logs
87 mountPath: /var/log/onap
seshukm0df1f8e2020-08-17 21:45:49 +053088{{ include "so.helpers.livenessProbe" .| indent 8 }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000089 ports:
90 - containerPort: {{ index .Values.containerPort }}
91 name: {{ .Values.service.portName }}
92 protocol: TCP
sunilb0a97ab22020-02-25 10:18:48 +053093 # Filebeat sidecar container
94 - name: {{ include "common.name" . }}-filebeat-onap
Sylvain Desbureaux747982c2020-11-19 17:40:05 +010095 image: {{ include "repositoryGenerator.image.logging" . }}
sunilb0a97ab22020-02-25 10:18:48 +053096 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
97 volumeMounts:
98 - name: {{ include "common.fullname" . }}-filebeat-conf
99 mountPath: /usr/share/filebeat/filebeat.yml
100 subPath: filebeat.yml
101 - name: {{ include "common.fullname" . }}-data-filebeat
102 mountPath: /usr/share/filebeat/data
103 - name: logs
104 mountPath: /var/log/onap/so
105 - name: {{ include "common.fullname" . }}-logs
106 mountPath: /var/log/onap
Sylvain Desbureauxaadf5452020-03-18 18:13:51 +0100107 volumes: {{ include "so.certificate.volumes" . | nindent 6 }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000108 - name: logs
109 emptyDir: {}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000110 - name: config
111 configMap:
112 name: {{ include "common.fullname" . }}-app-configmap
sunilb0a97ab22020-02-25 10:18:48 +0530113 - name: {{ include "common.fullname" . }}-log-conf
114 configMap:
115 name: {{ include "common.fullname" . }}-log
116 - name: {{ include "common.fullname" . }}-filebeat-conf
117 configMap:
118 name: {{ .Release.Name }}-so-filebeat-configmap
119 - name: {{ include "common.fullname" . }}-data-filebeat
120 emptyDir: {}
121 - name: {{ include "common.fullname" . }}-logs
122 emptyDir: {}
Mike Elliottd32d36e2018-02-12 15:54:03 -0500123 imagePullSecrets:
vaibhav16dec0da88292018-08-13 06:10:27 +0000124 - name: "{{ include "common.namespace" . }}-docker-registry-key"