Jakub Latusek | d71d26c | 2020-10-21 13:36:29 +0200 | [diff] [blame] | 1 | {{/* |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 2 | # ============LICENSE_START======================================================= |
| 3 | # Copyright (C) 2020 AT&T Intellectual Property. |
| 4 | # ================================================================================ |
| 5 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | # you may not use this file except in compliance with the License. |
| 7 | # You may obtain a copy of the License at |
| 8 | # |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | # |
| 11 | # Unless required by applicable law or agreed to in writing, software |
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | # See the License for the specific language governing permissions and |
| 15 | # limitations under the License. |
| 16 | # |
| 17 | # SPDX-License-Identifier: Apache-2.0 |
| 18 | # ============LICENSE_END========================================================= |
Jakub Latusek | d71d26c | 2020-10-21 13:36:29 +0200 | [diff] [blame] | 19 | */}} |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 20 | |
Grzegorz-Lis | 4fad302 | 2020-07-31 10:18:21 +0200 | [diff] [blame] | 21 | apiVersion: apps/v1 |
mmis | 9cb5029 | 2018-09-19 00:31:35 +0100 | [diff] [blame] | 22 | kind: Deployment |
| 23 | metadata: |
| 24 | name: {{ include "common.fullname" . }} |
| 25 | namespace: {{ include "common.namespace" . }} |
| 26 | labels: |
| 27 | app: {{ include "common.name" . }} |
| 28 | chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }} |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 29 | release: {{ include "common.release" . }} |
mmis | 9cb5029 | 2018-09-19 00:31:35 +0100 | [diff] [blame] | 30 | heritage: {{ .Release.Service }} |
| 31 | spec: |
Grzegorz-Lis | 4fad302 | 2020-07-31 10:18:21 +0200 | [diff] [blame] | 32 | selector: |
| 33 | matchLabels: |
| 34 | app: {{ include "common.name" . }} |
mmis | 9cb5029 | 2018-09-19 00:31:35 +0100 | [diff] [blame] | 35 | replicas: {{ .Values.replicaCount }} |
| 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" . }} |
mmis | 9cb5029 | 2018-09-19 00:31:35 +0100 | [diff] [blame] | 41 | spec: |
Dominik Mizyn | 4aa534f | 2020-04-14 18:03:53 +0200 | [diff] [blame] | 42 | initContainers: |
| 43 | - command: |
| 44 | - sh |
| 45 | args: |
| 46 | - -c |
| 47 | - "cd /config-input && for PFILE in `ls -1`; do envsubst <${PFILE} >/config/${PFILE}; done" |
| 48 | env: |
| 49 | - name: RESTSERVER_USER |
| 50 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "restserver-creds" "key" "login") | indent 10 }} |
| 51 | - name: RESTSERVER_PASSWORD |
| 52 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "restserver-creds" "key" "password") | indent 10 }} |
| 53 | - name: API_USER |
| 54 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "apiparameters-creds" "key" "login") | indent 10 }} |
| 55 | - name: API_PASSWORD |
| 56 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "apiparameters-creds" "key" "password") | indent 10 }} |
| 57 | - name: PAP_USER |
| 58 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "papparameters-creds" "key" "login") | indent 10 }} |
| 59 | - name: PAP_PASSWORD |
| 60 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "papparameters-creds" "key" "password") | indent 10 }} |
| 61 | - name: SDCBE_USER |
| 62 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "sdcbe-creds" "key" "login") | indent 10 }} |
| 63 | - name: SDCBE_PASSWORD |
| 64 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "sdcbe-creds" "key" "password") | indent 10 }} |
| 65 | volumeMounts: |
| 66 | - mountPath: /config-input |
| 67 | name: distributionconfig-input |
| 68 | - mountPath: /config |
| 69 | name: distributionconfig |
Sylvain Desbureaux | 7c8c686 | 2020-11-19 18:02:37 +0100 | [diff] [blame] | 70 | image: {{ include "repositoryGenerator.image.envsubst" . }} |
Dominik Mizyn | 4aa534f | 2020-04-14 18:03:53 +0200 | [diff] [blame] | 71 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 72 | name: {{ include "common.name" . }}-update-config |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 73 | {{ include "common.certInitializer.initContainer" . | indent 6 }} |
mmis | 9cb5029 | 2018-09-19 00:31:35 +0100 | [diff] [blame] | 74 | containers: |
| 75 | - name: {{ include "common.name" . }} |
Sylvain Desbureaux | 7c8c686 | 2020-11-19 18:02:37 +0100 | [diff] [blame] | 76 | image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }} |
mmis | 9cb5029 | 2018-09-19 00:31:35 +0100 | [diff] [blame] | 77 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
efiacor | 3f7b375 | 2022-11-28 10:38:56 +0000 | [diff] [blame] | 78 | env: |
| 79 | - name: SECURITY_PROTOCOL |
| 80 | value: {{ .Values.config.kafka.securityProtocol }} |
| 81 | - name: SASL_MECHANISM |
| 82 | value: {{ .Values.config.kafka.saslMechanism }} |
| 83 | - name: SASL_JAAS_CONFIG |
| 84 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "policy-dist-kafka-user" "key" "sasl.jaas.config") | indent 12 }} |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 85 | {{- if .Values.global.aafEnabled }} |
Taka Cho | 9658ce8 | 2020-12-10 14:34:18 -0500 | [diff] [blame] | 86 | command: ["sh","-c"] |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 87 | args: ["source {{ .Values.certInitializer.credsPath }}/.ci;\ |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 88 | /opt/app/policy/distribution/bin/policy-dist.sh /opt/app/policy/distribution/etc/mounted/config.json"] |
| 89 | {{- else }} |
mmis | 9cb5029 | 2018-09-19 00:31:35 +0100 | [diff] [blame] | 90 | command: ["/opt/app/policy/distribution/bin/policy-dist.sh"] |
| 91 | args: ["/opt/app/policy/distribution/etc/mounted/config.json"] |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 92 | env: |
| 93 | - name: KEYSTORE_PASSWD |
| 94 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "keystore-password" "key" "password") | indent 12 }} |
| 95 | - name: TRUSTSTORE_PASSWD |
| 96 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "truststore-password" "key" "password") | indent 12 }} |
| 97 | {{- end }} |
mmis | 9cb5029 | 2018-09-19 00:31:35 +0100 | [diff] [blame] | 98 | ports: |
| 99 | - containerPort: {{ .Values.service.internalPort }} |
| 100 | # disable liveness probe when breakpoints set in debugger |
| 101 | # so K8s doesn't restart unresponsive container |
| 102 | {{- if eq .Values.liveness.enabled true }} |
| 103 | livenessProbe: |
| 104 | tcpSocket: |
| 105 | port: {{ .Values.service.internalPort }} |
| 106 | initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} |
| 107 | periodSeconds: {{ .Values.liveness.periodSeconds }} |
| 108 | {{ end -}} |
| 109 | readinessProbe: |
| 110 | tcpSocket: |
| 111 | port: {{ .Values.service.internalPort }} |
| 112 | initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} |
| 113 | periodSeconds: {{ .Values.readiness.periodSeconds }} |
| 114 | volumeMounts: |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 115 | {{ include "common.certInitializer.volumeMount" . | indent 10 }} |
mmis | 9cb5029 | 2018-09-19 00:31:35 +0100 | [diff] [blame] | 116 | - mountPath: /etc/localtime |
| 117 | name: localtime |
| 118 | readOnly: true |
| 119 | - mountPath: /opt/app/policy/distribution/etc/mounted |
| 120 | name: distributionconfig |
| 121 | resources: |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 122 | {{ include "common.resources" . }} |
mmis | 9cb5029 | 2018-09-19 00:31:35 +0100 | [diff] [blame] | 123 | {{- if .Values.nodeSelector }} |
| 124 | nodeSelector: |
| 125 | {{ toYaml .Values.nodeSelector | indent 10 }} |
| 126 | {{- end -}} |
| 127 | {{- if .Values.affinity }} |
| 128 | affinity: |
| 129 | {{ toYaml .Values.affinity | indent 10 }} |
| 130 | {{- end }} |
farida azmy | c117837 | 2021-04-11 12:55:33 +0200 | [diff] [blame] | 131 | serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}} |
mmis | 9cb5029 | 2018-09-19 00:31:35 +0100 | [diff] [blame] | 132 | volumes: |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 133 | {{ include "common.certInitializer.volumes" . | indent 8 }} |
mmis | 9cb5029 | 2018-09-19 00:31:35 +0100 | [diff] [blame] | 134 | - name: localtime |
| 135 | hostPath: |
| 136 | path: /etc/localtime |
Dominik Mizyn | 4aa534f | 2020-04-14 18:03:53 +0200 | [diff] [blame] | 137 | - name: distributionconfig-input |
mmis | 9cb5029 | 2018-09-19 00:31:35 +0100 | [diff] [blame] | 138 | configMap: |
| 139 | name: {{ include "common.fullname" . }}-configmap |
| 140 | defaultMode: 0755 |
Dominik Mizyn | 4aa534f | 2020-04-14 18:03:53 +0200 | [diff] [blame] | 141 | - name: distributionconfig |
| 142 | emptyDir: |
| 143 | medium: Memory |
mmis | 9cb5029 | 2018-09-19 00:31:35 +0100 | [diff] [blame] | 144 | imagePullSecrets: |
| 145 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |