blob: f1ec31adf188ebd0b2092c187ed32e66eb4f37b6 [file] [log] [blame]
Jakub Latusek44f0fdd2020-10-21 13:36:29 +02001{{/*
jananib28734e02020-04-08 21:35:45 +05302# 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 Latusek44f0fdd2020-10-21 13:36:29 +020015*/}}
jananib28734e02020-04-08 21:35:45 +053016apiVersion: apps/v1
17kind: Deployment
18metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
19spec:
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 Desbureaux1694e1d2020-08-21 09:58:25 +020035 - /app/ready.py
jananib28734e02020-04-08 21:35:45 +053036 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 Desbureaux1694e1d2020-08-21 09:58:25 +020045 image: {{ include "common.repository" . }}/{{ .Values.global.readinessImage }}
jananib28734e02020-04-08 21:35:45 +053046 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
47 containers:
48 - name: {{ include "common.name" . }}
49 command:
50 - sh
51 args:
52 - -c
seshukm0df1f8e2020-08-17 21:45:49 +053053 - |
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
jananib28734e02020-04-08 21:35:45 +053064 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 }}
jananib28734e02020-04-08 21:35:45 +053086 - 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 Opasiak098ff422020-10-21 13:06:52 +020094 {{ include "so.certificates.env" . | nindent 12 }}
jananib28734e02020-04-08 21:35:45 +053095 envFrom:
96 - configMapRef:
97 name: {{ include "common.fullname" . }}-env
98 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
seshukm0df1f8e2020-08-17 21:45:49 +053099 volumeMounts: {{ include "so.certificate.volumeMount" . | nindent 12 }}
jananib28734e02020-04-08 21:35:45 +0530100 - 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"