Jakub Latusek | 44f0fdd | 2020-10-21 13:36:29 +0200 | [diff] [blame] | 1 | {{/* |
jananib | 28734e0 | 2020-04-08 21:35:45 +0530 | [diff] [blame] | 2 | # Copyright © 2020 Huawei Technologies Co., Ltd. |
| 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 | */}} |
jananib | 28734e0 | 2020-04-08 21:35:45 +0530 | [diff] [blame] | 16 | apiVersion: apps/v1 |
| 17 | kind: Deployment |
| 18 | metadata: {{- include "common.resourceMetadata" . | nindent 2 }} |
| 19 | spec: |
| 20 | selector: {{- include "common.selectors" . | nindent 4 }} |
| 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: |
| 29 | metadata: |
| 30 | labels: {{- include "common.labels" . | nindent 8 }} |
| 31 | spec: |
| 32 | initContainers: {{ include "so.certificate.container_importer" . | nindent 8 }} |
| 33 | - name: {{ include "common.name" . }}-readiness |
| 34 | command: |
Sylvain Desbureaux | 1694e1d | 2020-08-21 09:58:25 +0200 | [diff] [blame] | 35 | - /app/ready.py |
jananib | 28734e0 | 2020-04-08 21:35:45 +0530 | [diff] [blame] | 36 | args: |
| 37 | - --job-name |
| 38 | - {{ include "common.release" . }}-so-mariadb-config-job |
| 39 | env: |
| 40 | - name: NAMESPACE |
| 41 | valueFrom: |
| 42 | fieldRef: |
| 43 | apiVersion: v1 |
| 44 | fieldPath: metadata.namespace |
Sylvain Desbureaux | 1694e1d | 2020-08-21 09:58:25 +0200 | [diff] [blame] | 45 | image: {{ include "common.repository" . }}/{{ .Values.global.readinessImage }} |
jananib | 28734e0 | 2020-04-08 21:35:45 +0530 | [diff] [blame] | 46 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 47 | containers: |
| 48 | - name: {{ include "common.name" . }} |
| 49 | command: |
| 50 | - sh |
| 51 | args: |
| 52 | - -c |
seshukm | 0df1f8e | 2020-08-17 21:45:49 +0530 | [diff] [blame] | 53 | - | |
| 54 | export BPEL_PASSWORD=`htpasswd -bnBC 10 "" $BPEL_PASSWORD_INPUT | tr -d ':\n' | sed 's/\$2y/\$2a/'` |
| 55 | export ACTUATOR_PASSWORD=`htpasswd -bnBC 10 "" $ACTUATOR_PASSWORD_INPUT | tr -d ':\n' | sed 's/\$2y/\$2a/'` |
| 56 | {{- if .Values.global.aafEnabled }} |
| 57 | export $(grep '^c' {{ .Values.soHelpers.certInitializer.credsPath }}/mycreds.prop | xargs -0) |
| 58 | export TRUSTSTORE_PASSWORD="${cadi_truststore_password}" |
| 59 | {{- if .Values.global.security.aaf.enabled }} |
| 60 | export KEYSTORE_PASSWORD="${cadi_keystore_password}" |
| 61 | {{- end }} |
| 62 | {{- end }} |
| 63 | ./start-app.sh |
jananib | 28734e0 | 2020-04-08 21:35:45 +0530 | [diff] [blame] | 64 | image: {{ include "common.repository" . }}/{{ .Values.image }} |
| 65 | resources: {{ include "common.resources" . | nindent 12 }} |
| 66 | ports: {{- include "common.containerPorts" . | nindent 12 }} |
| 67 | env: |
| 68 | - name: DB_HOST |
| 69 | valueFrom: |
| 70 | secretKeyRef: |
| 71 | name: {{ include "common.release" . }}-so-db-secrets |
| 72 | key: mariadb.readwrite.host |
| 73 | - name: DB_PORT |
| 74 | valueFrom: |
| 75 | secretKeyRef: |
| 76 | name: {{ include "common.release" . }}-so-db-secrets |
| 77 | key: mariadb.readwrite.port |
| 78 | - name: DB_USERNAME |
| 79 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-user-creds" "key" "login") | indent 14 }} |
| 80 | - name: DB_PASSWORD |
| 81 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-user-creds" "key" "password") | indent 14 }} |
| 82 | - name: DB_ADMIN_USERNAME |
| 83 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-admin-creds" "key" "login") | indent 14 }} |
| 84 | - name: DB_ADMIN_PASSWORD |
| 85 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-admin-creds" "key" "password") | indent 14 }} |
jananib | 28734e0 | 2020-04-08 21:35:45 +0530 | [diff] [blame] | 86 | - name: BPEL_USERNAME |
| 87 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "server-bpel-creds" "key" "login") | indent 14 }} |
| 88 | - name: BPEL_PASSWORD_INPUT |
| 89 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "server-bpel-creds" "key" "password") | indent 14 }} |
| 90 | - name: ACTUATOR_USERNAME |
| 91 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "server-actuator-creds" "key" "login") | indent 14 }} |
| 92 | - name: ACTUATOR_PASSWORD_INPUT |
| 93 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "server-actuator-creds" "key" "password") | indent 14 }} |
Krzysztof Opasiak | 098ff42 | 2020-10-21 13:06:52 +0200 | [diff] [blame] | 94 | {{ include "so.certificates.env" . | nindent 12 }} |
jananib | 28734e0 | 2020-04-08 21:35:45 +0530 | [diff] [blame] | 95 | envFrom: |
| 96 | - configMapRef: |
| 97 | name: {{ include "common.fullname" . }}-env |
| 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 12 }} |
jananib | 28734e0 | 2020-04-08 21:35:45 +0530 | [diff] [blame] | 100 | - name: logs |
| 101 | mountPath: /app/logs |
| 102 | - name: config |
| 103 | mountPath: /app/config |
| 104 | readOnly: true |
| 105 | - name: {{ include "common.fullname" . }}-truststore |
| 106 | mountPath: /app/client |
| 107 | readOnly: true |
| 108 | livenessProbe: |
| 109 | httpGet: |
| 110 | path: {{ index .Values.livenessProbe.path}} |
| 111 | port: {{ index .Values.containerPort }} |
| 112 | scheme: {{ index .Values.livenessProbe.scheme}} |
| 113 | initialDelaySeconds: {{ index .Values.livenessProbe.initialDelaySeconds}} |
| 114 | periodSeconds: {{ index .Values.livenessProbe.periodSeconds}} |
| 115 | timeoutSeconds: {{ index .Values.livenessProbe.timeoutSeconds}} |
| 116 | successThreshold: {{ index .Values.livenessProbe.successThreshold}} |
| 117 | failureThreshold: {{ index .Values.livenessProbe.failureThreshold}} |
| 118 | volumes: {{ include "so.certificate.volumes" . | nindent 8 }} |
| 119 | - name: logs |
| 120 | emptyDir: {} |
| 121 | - name: config |
| 122 | configMap: |
| 123 | name: {{ include "common.fullname" . }} |
| 124 | - name: {{ include "common.fullname" . }}-truststore |
| 125 | secret: |
| 126 | secretName: {{ include "common.release" . }}-so-truststore-secret |
| 127 | imagePullSecrets: |
| 128 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |