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 |
vaibhav_16dec | e04b2fe | 2018-03-22 09:07:12 +0000 | [diff] [blame] | 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 |
Mike Elliott | d32d36e | 2018-02-12 15:54:03 -0500 | [diff] [blame] | 17 | kind: Deployment |
| 18 | metadata: |
Mandeep Khinda | a57d8dd | 2018-03-09 14:29:37 +0000 | [diff] [blame] | 19 | name: {{ include "common.fullname" . }} |
Mike Elliott | d32d36e | 2018-02-12 15:54:03 -0500 | [diff] [blame] | 20 | namespace: {{ include "common.namespace" . }} |
| 21 | labels: |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 22 | app: {{ include "common.fullname" . }} |
Mike Elliott | d32d36e | 2018-02-12 15:54:03 -0500 | [diff] [blame] | 23 | chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }} |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 24 | release: {{ include "common.release" . }} |
Mike Elliott | d32d36e | 2018-02-12 15:54:03 -0500 | [diff] [blame] | 25 | spec: |
Grzegorz-Lis | d1c1f6a | 2020-07-29 12:22:40 +0200 | [diff] [blame] | 26 | selector: |
| 27 | matchLabels: |
| 28 | app: {{ include "common.name" . }} |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 29 | 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 Elliott | d32d36e | 2018-02-12 15:54:03 -0500 | [diff] [blame] | 36 | template: |
| 37 | metadata: |
| 38 | labels: |
| 39 | app: {{ include "common.name" . }} |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 40 | release: {{ include "common.release" . }} |
Mike Elliott | d32d36e | 2018-02-12 15:54:03 -0500 | [diff] [blame] | 41 | spec: |
seshukm | 0df1f8e | 2020-08-17 21:45:49 +0530 | [diff] [blame] | 42 | initContainers: |
| 43 | {{ include "so.certificate.container_importer" . | indent 6 | trim }} |
Sylvain Desbureaux | aadf545 | 2020-03-18 18:13:51 +0100 | [diff] [blame] | 44 | - name: {{ include "common.name" . }}-readiness |
| 45 | command: |
Sylvain Desbureaux | 1694e1d | 2020-08-21 09:58:25 +0200 | [diff] [blame] | 46 | - /app/ready.py |
jmac | c4f04d3 | 2018-10-12 18:24:24 +0000 | [diff] [blame] | 47 | args: |
Mahendra Raghuwanshi | 72b69c1 | 2019-04-04 10:43:25 +0000 | [diff] [blame] | 48 | - --job-name |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 49 | - {{ include "common.release" . }}-so-mariadb-config-job |
jmac | c4f04d3 | 2018-10-12 18:24:24 +0000 | [diff] [blame] | 50 | env: |
| 51 | - name: NAMESPACE |
| 52 | valueFrom: |
| 53 | fieldRef: |
| 54 | apiVersion: v1 |
| 55 | fieldPath: metadata.namespace |
Sylvain Desbureaux | 1694e1d | 2020-08-21 09:58:25 +0200 | [diff] [blame] | 56 | image: "{{ include "common.repository" . }}/{{ .Values.global.readinessImage }}" |
jmac | c4f04d3 | 2018-10-12 18:24:24 +0000 | [diff] [blame] | 57 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
Mike Elliott | d32d36e | 2018-02-12 15:54:03 -0500 | [diff] [blame] | 58 | containers: |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 59 | - name: {{ include "common.name" . }} |
| 60 | image: {{ include "common.repository" . }}/{{ .Values.image }} |
seshukm | 0df1f8e | 2020-08-17 21:45:49 +0530 | [diff] [blame] | 61 | resources: {{ include "common.resources" . | nindent 12 }} |
| 62 | {{- if .Values.global.aafEnabled }} |
| 63 | command: |
| 64 | - sh |
| 65 | args: |
| 66 | - -c |
| 67 | - | |
| 68 | export $(grep '^c' {{ .Values.soHelpers.certInitializer.credsPath }}/mycreds.prop | xargs -0) |
| 69 | export TRUSTSTORE_PASSWORD="${cadi_truststore_password}" |
| 70 | {{- if .Values.global.security.aaf.enabled }} |
Sylvain Desbureaux | a1bbe5c | 2020-10-28 16:55:18 +0100 | [diff] [blame^] | 71 | export KEYSTORE_PASSWORD="${cadi_keystore_password_p12}" |
seshukm | 0df1f8e | 2020-08-17 21:45:49 +0530 | [diff] [blame] | 72 | {{- end }} |
| 73 | /app/start-app.sh |
| 74 | {{- end }} |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 75 | env: |
| 76 | - name: DB_HOST |
| 77 | valueFrom: |
| 78 | secretKeyRef: |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 79 | name: {{ include "common.release" . }}-so-db-secrets |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 80 | key: mariadb.readwrite.host |
| 81 | - name: DB_PORT |
| 82 | valueFrom: |
| 83 | secretKeyRef: |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 84 | name: {{ include "common.release" . }}-so-db-secrets |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 85 | key: mariadb.readwrite.port |
| 86 | - name: DB_USERNAME |
Krzysztof Opasiak | c53ff54 | 2020-03-28 02:14:37 +0100 | [diff] [blame] | 87 | {{- 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] | 88 | - name: DB_PASSWORD |
Krzysztof Opasiak | c53ff54 | 2020-03-28 02:14:37 +0100 | [diff] [blame] | 89 | {{- 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] | 90 | - name: DB_ADMIN_USERNAME |
Krzysztof Opasiak | c53ff54 | 2020-03-28 02:14:37 +0100 | [diff] [blame] | 91 | {{- 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] | 92 | - name: DB_ADMIN_PASSWORD |
Krzysztof Opasiak | c53ff54 | 2020-03-28 02:14:37 +0100 | [diff] [blame] | 93 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-admin-creds" "key" "password") | indent 10 }} |
seshukm | 0df1f8e | 2020-08-17 21:45:49 +0530 | [diff] [blame] | 94 | {{ include "so.certificates.env" . | indent 8 | trim }} |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 95 | envFrom: |
| 96 | - configMapRef: |
| 97 | name: {{ include "common.fullname" . }}-configmap |
jmac | c4f04d3 | 2018-10-12 18:24:24 +0000 | [diff] [blame] | 98 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
seshukm | 0df1f8e | 2020-08-17 21:45:49 +0530 | [diff] [blame] | 99 | volumeMounts: {{ include "so.certificate.volumeMount" . | nindent 8 }} |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 100 | - name: logs |
| 101 | mountPath: /app/logs |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 102 | - name: config |
| 103 | mountPath: /app/config |
| 104 | readOnly: true |
sunilb | 0a97ab2 | 2020-02-25 10:18:48 +0530 | [diff] [blame] | 105 | - name: {{ include "common.fullname" . }}-logs |
| 106 | mountPath: /var/log/onap |
seshukm | 0df1f8e | 2020-08-17 21:45:49 +0530 | [diff] [blame] | 107 | {{ include "so.helpers.livenessProbe" .| indent 8 }} |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 108 | ports: |
| 109 | - containerPort: {{ index .Values.containerPort }} |
| 110 | name: {{ .Values.service.portName }} |
| 111 | protocol: TCP |
sunilb | 0a97ab2 | 2020-02-25 10:18:48 +0530 | [diff] [blame] | 112 | # Filebeat sidecar container |
| 113 | - name: {{ include "common.name" . }}-filebeat-onap |
| 114 | image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}" |
| 115 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 116 | volumeMounts: |
| 117 | - name: {{ include "common.fullname" . }}-filebeat-conf |
| 118 | mountPath: /usr/share/filebeat/filebeat.yml |
| 119 | subPath: filebeat.yml |
| 120 | - name: {{ include "common.fullname" . }}-data-filebeat |
| 121 | mountPath: /usr/share/filebeat/data |
| 122 | - name: logs |
| 123 | mountPath: /var/log/onap/so |
| 124 | - name: {{ include "common.fullname" . }}-logs |
| 125 | mountPath: /var/log/onap |
Sylvain Desbureaux | aadf545 | 2020-03-18 18:13:51 +0100 | [diff] [blame] | 126 | volumes: {{ include "so.certificate.volumes" . | nindent 6 }} |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 127 | - name: logs |
| 128 | emptyDir: {} |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 129 | - name: config |
| 130 | configMap: |
| 131 | name: {{ include "common.fullname" . }}-app-configmap |
sunilb | 0a97ab2 | 2020-02-25 10:18:48 +0530 | [diff] [blame] | 132 | - name: {{ include "common.fullname" . }}-log-conf |
| 133 | configMap: |
| 134 | name: {{ include "common.fullname" . }}-log |
| 135 | - name: {{ include "common.fullname" . }}-filebeat-conf |
| 136 | configMap: |
| 137 | name: {{ .Release.Name }}-so-filebeat-configmap |
| 138 | - name: {{ include "common.fullname" . }}-data-filebeat |
| 139 | emptyDir: {} |
| 140 | - name: {{ include "common.fullname" . }}-logs |
| 141 | emptyDir: {} |
Mike Elliott | d32d36e | 2018-02-12 15:54:03 -0500 | [diff] [blame] | 142 | imagePullSecrets: |
vaibhav16dec | 0da8829 | 2018-08-13 06:10:27 +0000 | [diff] [blame] | 143 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |