Jakub Latusek | 0ef8231 | 2020-10-21 13:36:30 +0200 | [diff] [blame] | 1 | {{/* |
jasmineWen | 66f6a3b | 2018-04-03 17:48:41 +0000 | [diff] [blame] | 2 | # Copyright © 2017 Amdocs, Bell Canada |
| 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 | 0ef8231 | 2020-10-21 13:36:30 +0200 | [diff] [blame] | 15 | */}} |
jasmineWen | 66f6a3b | 2018-04-03 17:48:41 +0000 | [diff] [blame] | 16 | |
Grzegorz-Lis | 8fc1611 | 2020-07-30 11:51:34 +0200 | [diff] [blame] | 17 | apiVersion: apps/v1 |
jasmineWen | 66f6a3b | 2018-04-03 17:48:41 +0000 | [diff] [blame] | 18 | kind: Deployment |
| 19 | metadata: |
| 20 | name: {{ include "common.fullname" . }} |
| 21 | namespace: {{ include "common.namespace" . }} |
| 22 | labels: |
| 23 | app: {{ include "common.name" . }} |
| 24 | chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }} |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 25 | release: {{ include "common.release" . }} |
jasmineWen | 66f6a3b | 2018-04-03 17:48:41 +0000 | [diff] [blame] | 26 | heritage: {{ .Release.Service }} |
| 27 | spec: |
| 28 | selector: |
| 29 | matchLabels: |
| 30 | app: {{ include "common.name" . }} |
| 31 | template: |
| 32 | metadata: |
| 33 | labels: |
| 34 | app: {{ include "common.name" . }} |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 35 | release: {{ include "common.release" . }} |
jasmineWen | 66f6a3b | 2018-04-03 17:48:41 +0000 | [diff] [blame] | 36 | name: {{ include "common.name" . }} |
| 37 | spec: |
Sylvain Desbureaux | 554bc6b | 2021-02-25 18:13:19 +0100 | [diff] [blame] | 38 | initContainers: {{ include "common.certInitializer.initContainer" . | nindent 6 }} |
jasmineWen | 66f6a3b | 2018-04-03 17:48:41 +0000 | [diff] [blame] | 39 | - command: |
Krzysztof Opasiak | 79677d3 | 2020-05-05 01:42:23 +0200 | [diff] [blame] | 40 | - sh |
| 41 | args: |
| 42 | - -c |
| 43 | - "cd /config-input && for PFILE in `find . -not -type d | grep -v -F ..`; do envsubst <${PFILE} >/config/${PFILE}; done" |
| 44 | env: |
| 45 | - name: PG_USER |
| 46 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "pg-user-creds" "key" "login") | indent 10 }} |
| 47 | - name: PG_PASSWORD |
| 48 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "pg-user-creds" "key" "password") | indent 10 }} |
| 49 | volumeMounts: |
| 50 | - mountPath: /config-input |
| 51 | name: init-data-input |
| 52 | - mountPath: /config |
| 53 | name: init-data |
Sylvain Desbureaux | 50f9c5d | 2020-11-19 17:25:17 +0100 | [diff] [blame] | 54 | image: {{ include "repositoryGenerator.image.envsubst" . }} |
Krzysztof Opasiak | 79677d3 | 2020-05-05 01:42:23 +0200 | [diff] [blame] | 55 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 56 | name: {{ include "common.name" . }}-update-config |
| 57 | |
| 58 | - command: |
Sylvain Desbureaux | 1694e1d | 2020-08-21 09:58:25 +0200 | [diff] [blame] | 59 | - /app/ready.py |
jasmineWen | 66f6a3b | 2018-04-03 17:48:41 +0000 | [diff] [blame] | 60 | args: |
| 61 | - --container-name |
jasmineWen | fb56f0f | 2018-08-29 15:55:28 +0000 | [diff] [blame] | 62 | - "{{ .Values.postgres.nameOverride }}" |
jasmineWen | 66f6a3b | 2018-04-03 17:48:41 +0000 | [diff] [blame] | 63 | env: |
| 64 | - name: NAMESPACE |
| 65 | valueFrom: |
| 66 | fieldRef: |
| 67 | apiVersion: v1 |
| 68 | fieldPath: metadata.namespace |
Sylvain Desbureaux | 50f9c5d | 2020-11-19 17:25:17 +0100 | [diff] [blame] | 69 | image: {{ include "repositoryGenerator.image.readiness" . }} |
dkamdocs | 6ad3a1c | 2018-12-21 09:25:53 +0000 | [diff] [blame] | 70 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
jasmineWen | 66f6a3b | 2018-04-03 17:48:41 +0000 | [diff] [blame] | 71 | name: {{ include "common.name" . }}-readiness |
| 72 | containers: |
Sylvain Desbureaux | 50f9c5d | 2020-11-19 17:25:17 +0100 | [diff] [blame] | 73 | - image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }} |
dkamdocs | 6ad3a1c | 2018-12-21 09:25:53 +0000 | [diff] [blame] | 74 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
jasmineWen | 66f6a3b | 2018-04-03 17:48:41 +0000 | [diff] [blame] | 75 | name: {{ include "common.name" . }} |
vaibhav_16dec | 0acf518 | 2018-09-19 04:28:55 +0000 | [diff] [blame] | 76 | resources: |
Mandeep Khinda | 5e3f36a | 2018-09-24 15:25:42 +0000 | [diff] [blame] | 77 | {{ include "common.resources" . | indent 12 }} |
Sylvain Desbureaux | 554bc6b | 2021-02-25 18:13:19 +0100 | [diff] [blame] | 78 | volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 8 }} |
Krzysztof Opasiak | 79677d3 | 2020-05-05 01:42:23 +0200 | [diff] [blame] | 79 | - mountPath: /service/webapps/ROOT/WEB-INF/classes/mybatis/configuration/configuration.xml |
| 80 | name: init-data |
| 81 | subPath: configuration.xml |
Sylvain Desbureaux | 554bc6b | 2021-02-25 18:13:19 +0100 | [diff] [blame] | 82 | - mountPath: /etc/nginx/nginx.conf |
| 83 | name: nginx |
| 84 | subPath: nginx.conf |
jasmineWen | 66f6a3b | 2018-04-03 17:48:41 +0000 | [diff] [blame] | 85 | readinessProbe: |
| 86 | tcpSocket: |
| 87 | port: {{ .Values.service.internalPort }} |
| 88 | initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} |
| 89 | periodSeconds: {{ .Values.readiness.periodSeconds }} |
| 90 | imagePullSecrets: |
| 91 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |
Sylvain Desbureaux | 554bc6b | 2021-02-25 18:13:19 +0100 | [diff] [blame] | 92 | volumes: {{ include "common.certInitializer.volumes" . | nindent 6 }} |
Krzysztof Opasiak | 79677d3 | 2020-05-05 01:42:23 +0200 | [diff] [blame] | 93 | - name: init-data-input |
| 94 | configMap: |
| 95 | name: {{ include "common.fullname" . }} |
Sylvain Desbureaux | 554bc6b | 2021-02-25 18:13:19 +0100 | [diff] [blame] | 96 | - name: nginx |
| 97 | configMap: |
| 98 | name: {{ include "common.fullname" . }}-nginx |
Krzysztof Opasiak | 79677d3 | 2020-05-05 01:42:23 +0200 | [diff] [blame] | 99 | - name: init-data |
| 100 | emptyDir: |
| 101 | medium: Memory |