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 |
| 18 | metadata: |
| 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 Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 24 | release: {{ include "common.release" . }} |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [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 }} |
| 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" . }} |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 41 | spec: |
Sylvain Desbureaux | aadf545 | 2020-03-18 18:13:51 +0100 | [diff] [blame] | 42 | initContainers: {{ include "so.certificate.container_importer" . | nindent 6 }} |
jmac | c4f04d3 | 2018-10-12 18:24:24 +0000 | [diff] [blame] | 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 }} |
| 56 | name: {{ include "common.name" . }}-readiness |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 57 | containers: |
| 58 | - name: {{ include "common.name" . }} |
| 59 | image: {{ include "common.repository" . }}/{{ .Values.image }} |
seshukm | 0df1f8e | 2020-08-17 21:45:49 +0530 | [diff] [blame] | 60 | resources: {{ include "common.resources" . | nindent 12 }} |
| 61 | {{- if .Values.global.aafEnabled }} |
| 62 | command: |
| 63 | - sh |
| 64 | args: |
| 65 | - -c |
| 66 | - | |
| 67 | export $(grep '^c' {{ .Values.soHelpers.certInitializer.credsPath }}/mycreds.prop | xargs -0) |
| 68 | export TRUSTSTORE_PASSWORD="${cadi_truststore_password}" |
| 69 | {{- if .Values.global.security.aaf.enabled }} |
Sylvain Desbureaux | a1bbe5c | 2020-10-28 16:55:18 +0100 | [diff] [blame] | 70 | export KEYSTORE_PASSWORD="${cadi_keystore_password_p12}" |
seshukm | 0df1f8e | 2020-08-17 21:45:49 +0530 | [diff] [blame] | 71 | {{- end }} |
| 72 | /app/start-app.sh |
| 73 | {{- end }} |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 74 | env: |
| 75 | - name: DB_HOST |
krishnaa96 | 92b606b | 2020-10-30 11:29:21 +0530 | [diff] [blame^] | 76 | value: {{ include "common.mariadbService" . }} |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 77 | - name: DB_PORT |
krishnaa96 | 92b606b | 2020-10-30 11:29:21 +0530 | [diff] [blame^] | 78 | value: {{ include "common.mariadbPort" . | quote }} |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 79 | - name: DB_USERNAME |
Krzysztof Opasiak | fcfb5f0 | 2020-03-24 23:34:24 +0100 | [diff] [blame] | 80 | {{- 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] | 81 | - name: DB_PASSWORD |
Krzysztof Opasiak | fcfb5f0 | 2020-03-24 23:34:24 +0100 | [diff] [blame] | 82 | {{- 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] | 83 | - name: DB_ADMIN_USERNAME |
Krzysztof Opasiak | fcfb5f0 | 2020-03-24 23:34:24 +0100 | [diff] [blame] | 84 | {{- 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] | 85 | - name: DB_ADMIN_PASSWORD |
Krzysztof Opasiak | fcfb5f0 | 2020-03-24 23:34:24 +0100 | [diff] [blame] | 86 | {{- 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] | 87 | {{ include "so.certificates.env" . | indent 8 | trim }} |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 88 | envFrom: |
| 89 | - configMapRef: |
| 90 | name: {{ include "common.fullname" . }}-configmap |
jmac | c4f04d3 | 2018-10-12 18:24:24 +0000 | [diff] [blame] | 91 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
seshukm | 0df1f8e | 2020-08-17 21:45:49 +0530 | [diff] [blame] | 92 | volumeMounts: {{ include "so.certificate.volumeMount" . | nindent 8 }} |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 93 | - name: logs |
| 94 | mountPath: /app/logs |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 95 | - name: config |
| 96 | mountPath: /app/config |
| 97 | readOnly: true |
| 98 | livenessProbe: |
| 99 | httpGet: |
| 100 | path: {{- index .Values.livenessProbe.path|indent 2}} |
| 101 | port: {{ index .Values.containerPort }} |
| 102 | scheme: {{- index .Values.livenessProbe.scheme| indent 2}} |
| 103 | initialDelaySeconds: {{ index .Values.livenessProbe.initialDelaySeconds}} |
| 104 | periodSeconds: {{ index .Values.livenessProbe.periodSeconds}} |
| 105 | timeoutSeconds: {{ index .Values.livenessProbe.timeoutSeconds}} |
| 106 | successThreshold: {{ index .Values.livenessProbe.successThreshold}} |
| 107 | failureThreshold: {{ index .Values.livenessProbe.failureThreshold}} |
| 108 | ports: |
| 109 | - containerPort: {{ index .Values.containerPort }} |
| 110 | name: {{ .Values.service.portName }} |
| 111 | protocol: TCP |
Sylvain Desbureaux | aadf545 | 2020-03-18 18:13:51 +0100 | [diff] [blame] | 112 | volumes: {{ include "so.certificate.volumes" . | nindent 6 }} |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 113 | - name: logs |
| 114 | emptyDir: {} |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 115 | - name: config |
| 116 | configMap: |
| 117 | name: {{ include "common.fullname" . }}-app-configmap |
| 118 | imagePullSecrets: |
vaibhav16dec | 0da8829 | 2018-08-13 06:10:27 +0000 | [diff] [blame] | 119 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |