Krzysztof Opasiak | c0a57f8 | 2020-03-23 15:50:13 +0100 | [diff] [blame] | 1 | {{/* |
bt2983 | 2f7e05a | 2018-09-19 22:49:19 -0600 | [diff] [blame] | 2 | # Copyright (C) 2018 AT&T Intellectual Property. |
| 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. |
Krzysztof Opasiak | c0a57f8 | 2020-03-23 15:50:13 +0100 | [diff] [blame] | 15 | */}} |
bt2983 | 2f7e05a | 2018-09-19 22:49:19 -0600 | [diff] [blame] | 16 | |
milaszki | e4cb01a | 2020-07-07 12:45:36 +0000 | [diff] [blame] | 17 | apiVersion: apps/v1 |
bt2983 | 2f7e05a | 2018-09-19 22:49:19 -0600 | [diff] [blame] | 18 | kind: Deployment |
Andreas Geissler | 8c55fdd | 2023-07-20 11:15:42 +0200 | [diff] [blame] | 19 | metadata: {{- include "common.resourceMetadata" . | nindent 2 }} |
bt2983 | 2f7e05a | 2018-09-19 22:49:19 -0600 | [diff] [blame] | 20 | spec: |
Andreas Geissler | 8c55fdd | 2023-07-20 11:15:42 +0200 | [diff] [blame] | 21 | selector: {{- include "common.selectors" . | nindent 4 }} |
bt2983 | 2f7e05a | 2018-09-19 22:49:19 -0600 | [diff] [blame] | 22 | replicas: {{ .Values.replicaCount }} |
| 23 | template: |
Andreas Geissler | 8c55fdd | 2023-07-20 11:15:42 +0200 | [diff] [blame] | 24 | metadata: {{- include "common.templateMetadata" . | nindent 6 }} |
bt2983 | 2f7e05a | 2018-09-19 22:49:19 -0600 | [diff] [blame] | 25 | spec: |
| 26 | initContainers: |
Sylvain Desbureaux | 1694e1d | 2020-08-21 09:58:25 +0200 | [diff] [blame] | 27 | - name: {{ include "common.name" . }}-readiness |
| 28 | command: |
| 29 | - /app/ready.py |
bt2983 | 2f7e05a | 2018-09-19 22:49:19 -0600 | [diff] [blame] | 30 | args: |
Sylvain Desbureaux | 1694e1d | 2020-08-21 09:58:25 +0200 | [diff] [blame] | 31 | {{- if .Values.global.mariadbGalera.localCluster }} |
bt2983 | 2f7e05a | 2018-09-19 22:49:19 -0600 | [diff] [blame] | 32 | - --container-name |
| 33 | - {{ index .Values "mariadb-galera" "nameOverride" }} |
Krzysztof Opasiak | 9df4c55 | 2020-02-14 16:45:20 +0100 | [diff] [blame] | 34 | {{- else }} |
Krzysztof Opasiak | 9df4c55 | 2020-02-14 16:45:20 +0100 | [diff] [blame] | 35 | - --job-name |
| 36 | - {{ include "common.release" . }}-{{ index .Values "mariadb-init" "nameOverride" }}-config-job |
| 37 | {{- end }} |
bt2983 | 2f7e05a | 2018-09-19 22:49:19 -0600 | [diff] [blame] | 38 | env: |
| 39 | - name: NAMESPACE |
| 40 | valueFrom: |
| 41 | fieldRef: |
| 42 | apiVersion: v1 |
| 43 | fieldPath: metadata.namespace |
Sylvain Desbureaux | 415cdee | 2020-11-19 17:20:58 +0100 | [diff] [blame] | 44 | image: {{ include "repositoryGenerator.image.readiness" . }} |
bt2983 | 2f7e05a | 2018-09-19 22:49:19 -0600 | [diff] [blame] | 45 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
bt2983 | 2f7e05a | 2018-09-19 22:49:19 -0600 | [diff] [blame] | 46 | containers: |
| 47 | - name: {{ include "common.name" . }} |
bt2983 | 91566f0 | 2020-05-10 17:06:09 -0600 | [diff] [blame] | 48 | command: |
| 49 | - bash |
| 50 | args: |
| 51 | - '-c' |
| 52 | - 'export POL_BASIC_AUTH=`echo -n $POL_BASIC_AUTH_USER:$POL_BASIC_AUTH_PASSWORD | base64`; /startService.sh' |
Sylvain Desbureaux | 415cdee | 2020-11-19 17:20:58 +0100 | [diff] [blame] | 53 | image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }} |
bt2983 | 2f7e05a | 2018-09-19 22:49:19 -0600 | [diff] [blame] | 54 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 55 | env: |
| 56 | - name: SPRING_PROFILE |
| 57 | value: "{{ .Values.config.springProfile }}" |
| 58 | - name: NENG_DB_USER |
Krzysztof Opasiak | c0a57f8 | 2020-03-23 15:50:13 +0100 | [diff] [blame] | 59 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "neng-db-secret" "key" "login") | indent 10}} |
bt2983 | 2f7e05a | 2018-09-19 22:49:19 -0600 | [diff] [blame] | 60 | - name: NENG_DB_PASS |
Krzysztof Opasiak | c0a57f8 | 2020-03-23 15:50:13 +0100 | [diff] [blame] | 61 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "neng-db-secret" "key" "password") | indent 10}} |
bt2983 | 2f7e05a | 2018-09-19 22:49:19 -0600 | [diff] [blame] | 62 | - name: NENG_DB_URL |
Sylvain Desbureaux | 93a5b49 | 2020-11-27 11:07:42 +0100 | [diff] [blame] | 63 | value: jdbc:mysql://{{ include "common.mariadbService" . }}:{{ include "common.mariadbPort" . }}/{{ index .Values "mariadb-galera" "db" "name" }} |
bt2983 | 2f7e05a | 2018-09-19 22:49:19 -0600 | [diff] [blame] | 64 | - name: POL_CLIENT_AUTH |
| 65 | value: "{{ .Values.config.polClientAuth }}" |
bt2983 | 91566f0 | 2020-05-10 17:06:09 -0600 | [diff] [blame] | 66 | - name: POL_BASIC_AUTH_USER |
| 67 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "pol-basic-auth-secret" "key" "login") | indent 10}} |
| 68 | - name: POL_BASIC_AUTH_PASSWORD |
| 69 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "pol-basic-auth-secret" "key" "password") | indent 10}} |
bt2983 | 2f7e05a | 2018-09-19 22:49:19 -0600 | [diff] [blame] | 70 | - name: POL_URL |
Radoslaw Chmiel | 96397bc | 2022-06-02 19:28:13 +0200 | [diff] [blame] | 71 | {{- if (include "common.needTLS" .) }} |
| 72 | value: "{{ .Values.config.polUrl.https }}" |
| 73 | {{- else }} |
| 74 | value: "{{ .Values.config.polUrl.http }}" |
| 75 | {{- end }} |
bt2983 | 2f7e05a | 2018-09-19 22:49:19 -0600 | [diff] [blame] | 76 | - name: POL_ENV |
| 77 | value: "{{ .Values.config.polEnv }}" |
| 78 | - name: POL_REQ_ID |
| 79 | value: "{{ .Values.config.polReqId }}" |
| 80 | - name: AAI_CERT_PASS |
| 81 | value: "{{ .Values.config.aaiCertPass }}" |
| 82 | - name: AAI_CERT_PATH |
| 83 | value: "{{ .Values.config.aaiCertPath }}" |
| 84 | - name: AAI_URI |
Radoslaw Chmiel | 96397bc | 2022-06-02 19:28:13 +0200 | [diff] [blame] | 85 | {{- if (include "common.needTLS" .) }} |
| 86 | value: "{{ .Values.config.aaiUri.https }}" |
| 87 | {{- else }} |
| 88 | value: "{{ .Values.config.aaiUri.http }}" |
| 89 | {{- end }} |
Alexis de Talhouët | db36b42 | 2018-09-27 22:43:18 +0200 | [diff] [blame] | 90 | - name: AAI_AUTH |
| 91 | value: "{{ .Values.config.aaiAuth }}" |
Dan Timoney | 7ec6cb6 | 2021-10-26 10:59:36 -0400 | [diff] [blame] | 92 | - name: DISABLE_HOST_VERIFICATION |
| 93 | value: "{{ .Values.config.disableHostVerification }}" |
Alexis de Talhouët | db36b42 | 2018-09-27 22:43:18 +0200 | [diff] [blame] | 94 | volumeMounts: |
| 95 | - name: certs |
| 96 | mountPath: /opt/etc/config/aai_keystore |
| 97 | subPath: aai_keystore |
| 98 | readOnly: true |
miroslavmasaryk | a7ac7f0 | 2023-03-01 14:12:26 +0100 | [diff] [blame] | 99 | resources: {{ include "common.resources" . | nindent 10 }} |
bt2983 | 2f7e05a | 2018-09-19 22:49:19 -0600 | [diff] [blame] | 100 | {{- if .Values.nodeSelector }} |
| 101 | nodeSelector: |
| 102 | {{ toYaml .Values.nodeSelector | indent 10 }} |
| 103 | {{- end -}} |
| 104 | {{- if .Values.affinity }} |
| 105 | affinity: |
| 106 | {{ toYaml .Values.affinity | indent 10 }} |
| 107 | {{- end }} |
Andreas Geissler | 6212653 | 2023-08-08 12:57:52 +0200 | [diff] [blame] | 108 | serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}} |
Alexis de Talhouët | db36b42 | 2018-09-27 22:43:18 +0200 | [diff] [blame] | 109 | volumes: |
| 110 | - name: certs |
| 111 | secret: |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 112 | secretName: {{ include "common.release" . }}-aai-keystore |
bt2983 | 2f7e05a | 2018-09-19 22:49:19 -0600 | [diff] [blame] | 113 | imagePullSecrets: |
| 114 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |