Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 1 | # Copyright © 2018 AT&T USA |
vaibhav_16dec | e04b2fe | 2018-03-22 09:07:12 +0000 | [diff] [blame] | 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
Grzegorz-Lis | d1c1f6a | 2020-07-29 12:22:40 +0200 | [diff] [blame] | 14 | apiVersion: apps/v1 |
Mike Elliott | d32d36e | 2018-02-12 15:54:03 -0500 | [diff] [blame] | 15 | kind: Deployment |
| 16 | metadata: |
Mandeep Khinda | a57d8dd | 2018-03-09 14:29:37 +0000 | [diff] [blame] | 17 | name: {{ include "common.fullname" . }} |
Mike Elliott | d32d36e | 2018-02-12 15:54:03 -0500 | [diff] [blame] | 18 | namespace: {{ include "common.namespace" . }} |
| 19 | labels: |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 20 | app: {{ include "common.fullname" . }} |
Mike Elliott | d32d36e | 2018-02-12 15:54:03 -0500 | [diff] [blame] | 21 | chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }} |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 22 | release: {{ include "common.release" . }} |
Mike Elliott | d32d36e | 2018-02-12 15:54:03 -0500 | [diff] [blame] | 23 | spec: |
Grzegorz-Lis | d1c1f6a | 2020-07-29 12:22:40 +0200 | [diff] [blame] | 24 | selector: |
| 25 | matchLabels: |
| 26 | app: {{ include "common.name" . }} |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 27 | replicas: {{ index .Values.replicaCount }} |
| 28 | minReadySeconds: {{ index .Values.minReadySeconds }} |
| 29 | strategy: |
| 30 | type: {{ index .Values.updateStrategy.type }} |
| 31 | rollingUpdate: |
| 32 | maxUnavailable: {{ index .Values.updateStrategy.maxUnavailable }} |
| 33 | maxSurge: {{ index .Values.updateStrategy.maxSurge }} |
Mike Elliott | d32d36e | 2018-02-12 15:54:03 -0500 | [diff] [blame] | 34 | template: |
| 35 | metadata: |
| 36 | labels: |
| 37 | app: {{ include "common.name" . }} |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 38 | release: {{ include "common.release" . }} |
Mike Elliott | d32d36e | 2018-02-12 15:54:03 -0500 | [diff] [blame] | 39 | spec: |
seshukm | 0df1f8e | 2020-08-17 21:45:49 +0530 | [diff] [blame^] | 40 | initContainers: |
| 41 | {{ include "so.certificate.container_importer" . | indent 6 | trim }} |
Sylvain Desbureaux | aadf545 | 2020-03-18 18:13:51 +0100 | [diff] [blame] | 42 | - name: {{ include "common.name" . }}-readiness |
| 43 | command: |
Sylvain Desbureaux | 1694e1d | 2020-08-21 09:58:25 +0200 | [diff] [blame] | 44 | - /app/ready.py |
jmac | c4f04d3 | 2018-10-12 18:24:24 +0000 | [diff] [blame] | 45 | args: |
Mahendra Raghuwanshi | 72b69c1 | 2019-04-04 10:43:25 +0000 | [diff] [blame] | 46 | - --job-name |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 47 | - {{ include "common.release" . }}-so-mariadb-config-job |
jmac | c4f04d3 | 2018-10-12 18:24:24 +0000 | [diff] [blame] | 48 | env: |
| 49 | - name: NAMESPACE |
| 50 | valueFrom: |
| 51 | fieldRef: |
| 52 | apiVersion: v1 |
| 53 | fieldPath: metadata.namespace |
Sylvain Desbureaux | 1694e1d | 2020-08-21 09:58:25 +0200 | [diff] [blame] | 54 | image: "{{ include "common.repository" . }}/{{ .Values.global.readinessImage }}" |
jmac | c4f04d3 | 2018-10-12 18:24:24 +0000 | [diff] [blame] | 55 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
Mike Elliott | d32d36e | 2018-02-12 15:54:03 -0500 | [diff] [blame] | 56 | containers: |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 57 | - name: {{ include "common.name" . }} |
| 58 | image: {{ include "common.repository" . }}/{{ .Values.image }} |
seshukm | 0df1f8e | 2020-08-17 21:45:49 +0530 | [diff] [blame^] | 59 | resources: {{ include "common.resources" . | nindent 12 }} |
| 60 | {{- if .Values.global.aafEnabled }} |
| 61 | command: |
| 62 | - sh |
| 63 | args: |
| 64 | - -c |
| 65 | - | |
| 66 | export $(grep '^c' {{ .Values.soHelpers.certInitializer.credsPath }}/mycreds.prop | xargs -0) |
| 67 | export TRUSTSTORE_PASSWORD="${cadi_truststore_password}" |
| 68 | {{- if .Values.global.security.aaf.enabled }} |
| 69 | export KEYSTORE_PASSWORD="${cadi_keystore_password}" |
| 70 | {{- end }} |
| 71 | /app/start-app.sh |
| 72 | {{- end }} |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 73 | env: |
| 74 | - name: DB_HOST |
| 75 | valueFrom: |
| 76 | secretKeyRef: |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 77 | name: {{ include "common.release" . }}-so-db-secrets |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 78 | key: mariadb.readwrite.host |
| 79 | - name: DB_PORT |
| 80 | valueFrom: |
| 81 | secretKeyRef: |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 82 | name: {{ include "common.release" . }}-so-db-secrets |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 83 | key: mariadb.readwrite.port |
| 84 | - name: DB_USERNAME |
Krzysztof Opasiak | c53ff54 | 2020-03-28 02:14:37 +0100 | [diff] [blame] | 85 | {{- 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] | 86 | - name: DB_PASSWORD |
Krzysztof Opasiak | c53ff54 | 2020-03-28 02:14:37 +0100 | [diff] [blame] | 87 | {{- 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] | 88 | - name: DB_ADMIN_USERNAME |
Krzysztof Opasiak | c53ff54 | 2020-03-28 02:14:37 +0100 | [diff] [blame] | 89 | {{- 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] | 90 | - name: DB_ADMIN_PASSWORD |
Krzysztof Opasiak | c53ff54 | 2020-03-28 02:14:37 +0100 | [diff] [blame] | 91 | {{- 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^] | 92 | {{ include "so.certificates.env" . | indent 8 | trim }} |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 93 | envFrom: |
| 94 | - configMapRef: |
| 95 | name: {{ include "common.fullname" . }}-configmap |
jmac | c4f04d3 | 2018-10-12 18:24:24 +0000 | [diff] [blame] | 96 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
seshukm | 0df1f8e | 2020-08-17 21:45:49 +0530 | [diff] [blame^] | 97 | volumeMounts: {{ include "so.certificate.volumeMount" . | nindent 8 }} |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 98 | - name: logs |
| 99 | mountPath: /app/logs |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 100 | - name: config |
| 101 | mountPath: /app/config |
| 102 | readOnly: true |
sunilb | 0a97ab2 | 2020-02-25 10:18:48 +0530 | [diff] [blame] | 103 | - name: {{ include "common.fullname" . }}-logs |
| 104 | mountPath: /var/log/onap |
seshukm | 0df1f8e | 2020-08-17 21:45:49 +0530 | [diff] [blame^] | 105 | {{ include "so.helpers.livenessProbe" .| indent 8 }} |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 106 | ports: |
| 107 | - containerPort: {{ index .Values.containerPort }} |
| 108 | name: {{ .Values.service.portName }} |
| 109 | protocol: TCP |
sunilb | 0a97ab2 | 2020-02-25 10:18:48 +0530 | [diff] [blame] | 110 | # Filebeat sidecar container |
| 111 | - name: {{ include "common.name" . }}-filebeat-onap |
| 112 | image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}" |
| 113 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 114 | volumeMounts: |
| 115 | - name: {{ include "common.fullname" . }}-filebeat-conf |
| 116 | mountPath: /usr/share/filebeat/filebeat.yml |
| 117 | subPath: filebeat.yml |
| 118 | - name: {{ include "common.fullname" . }}-data-filebeat |
| 119 | mountPath: /usr/share/filebeat/data |
| 120 | - name: logs |
| 121 | mountPath: /var/log/onap/so |
| 122 | - name: {{ include "common.fullname" . }}-logs |
| 123 | mountPath: /var/log/onap |
Sylvain Desbureaux | aadf545 | 2020-03-18 18:13:51 +0100 | [diff] [blame] | 124 | volumes: {{ include "so.certificate.volumes" . | nindent 6 }} |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 125 | - name: logs |
| 126 | emptyDir: {} |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 127 | - name: config |
| 128 | configMap: |
| 129 | name: {{ include "common.fullname" . }}-app-configmap |
sunilb | 0a97ab2 | 2020-02-25 10:18:48 +0530 | [diff] [blame] | 130 | - name: {{ include "common.fullname" . }}-log-conf |
| 131 | configMap: |
| 132 | name: {{ include "common.fullname" . }}-log |
| 133 | - name: {{ include "common.fullname" . }}-filebeat-conf |
| 134 | configMap: |
| 135 | name: {{ .Release.Name }}-so-filebeat-configmap |
| 136 | - name: {{ include "common.fullname" . }}-data-filebeat |
| 137 | emptyDir: {} |
| 138 | - name: {{ include "common.fullname" . }}-logs |
| 139 | emptyDir: {} |
Mike Elliott | d32d36e | 2018-02-12 15:54:03 -0500 | [diff] [blame] | 140 | imagePullSecrets: |
vaibhav16dec | 0da8829 | 2018-08-13 06:10:27 +0000 | [diff] [blame] | 141 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |