Jakub Latusek | 44f0fdd | 2020-10-21 13:36:29 +0200 | [diff] [blame] | 1 | {{/* |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 2 | # 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 Latusek | 44f0fdd | 2020-10-21 13:36:29 +0200 | [diff] [blame] | 15 | */}} |
Grzegorz-Lis | d1c1f6a | 2020-07-29 12:22:40 +0200 | [diff] [blame] | 16 | apiVersion: apps/v1 |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 17 | kind: Deployment |
Andreas Geissler | ad61ccf | 2023-02-23 09:17:36 +0100 | [diff] [blame] | 18 | metadata: {{- include "common.resourceMetadata" . | nindent 2 }} |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 19 | spec: |
Andreas Geissler | ad61ccf | 2023-02-23 09:17:36 +0100 | [diff] [blame] | 20 | selector: {{- include "common.selectors" . | nindent 4 }} |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 21 | replicas: {{ index .Values.replicaCount }} |
| 22 | minReadySeconds: {{ index .Values.minReadySeconds }} |
| 23 | strategy: |
| 24 | type: {{ index .Values.updateStrategy.type }} |
| 25 | rollingUpdate: |
| 26 | maxUnavailable: {{ index .Values.updateStrategy.maxUnavailable }} |
| 27 | maxSurge: {{ index .Values.updateStrategy.maxSurge }} |
| 28 | template: |
Andreas Geissler | ad61ccf | 2023-02-23 09:17:36 +0100 | [diff] [blame] | 29 | metadata: {{- include "common.templateMetadata" . | nindent 6 }} |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 30 | spec: |
Sylvain Desbureaux | d055a17 | 2020-10-30 14:32:03 +0100 | [diff] [blame] | 31 | initContainers: |
Sylvain Desbureaux | d055a17 | 2020-10-30 14:32:03 +0100 | [diff] [blame] | 32 | {{ include "common.readinessCheck.waitFor" . | indent 6 | trim }} |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 33 | containers: |
| 34 | - name: {{ include "common.name" . }} |
Sylvain Desbureaux | 747982c | 2020-11-19 17:40:05 +0100 | [diff] [blame] | 35 | image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }} |
miroslavmasaryk | a7ac7f0 | 2023-03-01 14:12:26 +0100 | [diff] [blame] | 36 | resources: {{ include "common.resources" . | nindent 10 }} |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 37 | env: |
| 38 | - name: DB_HOST |
krishnaa96 | 92b606b | 2020-10-30 11:29:21 +0530 | [diff] [blame] | 39 | value: {{ include "common.mariadbService" . }} |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 40 | - name: DB_PORT |
krishnaa96 | 92b606b | 2020-10-30 11:29:21 +0530 | [diff] [blame] | 41 | value: {{ include "common.mariadbPort" . | quote }} |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 42 | - name: DB_USERNAME |
Krzysztof Opasiak | 2cf3550 | 2020-03-24 23:01:38 +0100 | [diff] [blame] | 43 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-user-creds" "key" "login") | indent 10 }} |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 44 | - name: DB_PASSWORD |
Krzysztof Opasiak | 2cf3550 | 2020-03-24 23:01:38 +0100 | [diff] [blame] | 45 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-user-creds" "key" "password") | indent 10 }} |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 46 | - name: DB_ADMIN_USERNAME |
Krzysztof Opasiak | 2cf3550 | 2020-03-24 23:01:38 +0100 | [diff] [blame] | 47 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-admin-creds" "key" "login") | indent 10 }} |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 48 | - name: DB_ADMIN_PASSWORD |
Krzysztof Opasiak | 2cf3550 | 2020-03-24 23:01:38 +0100 | [diff] [blame] | 49 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-admin-creds" "key" "password") | indent 10 }} |
efiacor | 8d3ff80 | 2022-11-23 12:13:26 +0000 | [diff] [blame] | 50 | - name: SASL_JAAS_CONFIG |
efiacor | 1e6ad11 | 2023-03-22 11:04:45 +0000 | [diff] [blame^] | 51 | valueFrom: |
| 52 | secretKeyRef: |
| 53 | name: {{ include "common.name" . }}-ku |
| 54 | key: sasl.jaas.config |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 55 | envFrom: |
| 56 | - configMapRef: |
| 57 | name: {{ include "common.fullname" . }}-configmap |
jmac | c4f04d3 | 2018-10-12 18:24:24 +0000 | [diff] [blame] | 58 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
Andreas Geissler | ad61ccf | 2023-02-23 09:17:36 +0100 | [diff] [blame] | 59 | volumeMounts: |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 60 | - name: logs |
| 61 | mountPath: /app/logs |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 62 | - name: config |
| 63 | mountPath: /app/config |
| 64 | readOnly: true |
sunilb | 0a97ab2 | 2020-02-25 10:18:48 +0530 | [diff] [blame] | 65 | - name: {{ include "common.fullname" . }}-logs |
| 66 | mountPath: /var/log/onap |
seshukm | 0df1f8e | 2020-08-17 21:45:49 +0530 | [diff] [blame] | 67 | {{ include "so.helpers.livenessProbe" .| indent 8 }} |
Andreas Geissler | ad61ccf | 2023-02-23 09:17:36 +0100 | [diff] [blame] | 68 | ports: {{- include "common.containerPorts" . | nindent 10 }} |
sunilb | 0a97ab2 | 2020-02-25 10:18:48 +0530 | [diff] [blame] | 69 | # Filebeat sidecar container |
Maciej Wereski | df9ba22 | 2021-11-05 14:38:18 +0000 | [diff] [blame] | 70 | {{ include "common.log.sidecar" . | nindent 6 }} |
farida azmy | 87f4622 | 2021-04-06 15:25:15 +0200 | [diff] [blame] | 71 | serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}} |
Andreas Geissler | ad61ccf | 2023-02-23 09:17:36 +0100 | [diff] [blame] | 72 | volumes: |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 73 | - name: logs |
| 74 | emptyDir: {} |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 75 | - name: config |
| 76 | configMap: |
| 77 | name: {{ include "common.fullname" . }}-app-configmap |
sunilb | 0a97ab2 | 2020-02-25 10:18:48 +0530 | [diff] [blame] | 78 | - name: {{ include "common.fullname" . }}-log-conf |
| 79 | configMap: |
| 80 | name: {{ include "common.fullname" . }}-log |
Maciej Wereski | df9ba22 | 2021-11-05 14:38:18 +0000 | [diff] [blame] | 81 | {{ include "common.log.volumes" (dict "dot" . "configMapNamePrefix" (tpl .Values.logConfigMapNamePrefix .)) | nindent 6 }} |
sunilb | 0a97ab2 | 2020-02-25 10:18:48 +0530 | [diff] [blame] | 82 | - name: {{ include "common.fullname" . }}-logs |
| 83 | emptyDir: {} |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 84 | imagePullSecrets: |
vaibhav16dec | 0da8829 | 2018-08-13 06:10:27 +0000 | [diff] [blame] | 85 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |