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 |
Andreas Geissler | f10c555 | 2023-03-21 18:09:46 +0100 | [diff] [blame] | 23 | metadata: {{- include "common.resourceMetadata" . | nindent 2 }} |
mmis | 9cb5029 | 2018-09-19 00:31:35 +0100 | [diff] [blame] | 24 | spec: |
Andreas Geissler | f10c555 | 2023-03-21 18:09:46 +0100 | [diff] [blame] | 25 | selector: {{- include "common.selectors" . | nindent 4 }} |
mmis | 9cb5029 | 2018-09-19 00:31:35 +0100 | [diff] [blame] | 26 | replicas: {{ .Values.replicaCount }} |
| 27 | template: |
Andreas Geissler | f10c555 | 2023-03-21 18:09:46 +0100 | [diff] [blame] | 28 | metadata: {{- include "common.templateMetadata" . | nindent 6 }} |
mmis | 9cb5029 | 2018-09-19 00:31:35 +0100 | [diff] [blame] | 29 | spec: |
Dominik Mizyn | 4aa534f | 2020-04-14 18:03:53 +0200 | [diff] [blame] | 30 | initContainers: |
| 31 | - command: |
| 32 | - sh |
| 33 | args: |
| 34 | - -c |
| 35 | - "cd /config-input && for PFILE in `ls -1`; do envsubst <${PFILE} >/config/${PFILE}; done" |
| 36 | env: |
| 37 | - name: RESTSERVER_USER |
| 38 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "restserver-creds" "key" "login") | indent 10 }} |
| 39 | - name: RESTSERVER_PASSWORD |
| 40 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "restserver-creds" "key" "password") | indent 10 }} |
| 41 | - name: API_USER |
| 42 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "apiparameters-creds" "key" "login") | indent 10 }} |
| 43 | - name: API_PASSWORD |
| 44 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "apiparameters-creds" "key" "password") | indent 10 }} |
| 45 | - name: PAP_USER |
| 46 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "papparameters-creds" "key" "login") | indent 10 }} |
| 47 | - name: PAP_PASSWORD |
| 48 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "papparameters-creds" "key" "password") | indent 10 }} |
| 49 | - name: SDCBE_USER |
| 50 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "sdcbe-creds" "key" "login") | indent 10 }} |
| 51 | - name: SDCBE_PASSWORD |
| 52 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "sdcbe-creds" "key" "password") | indent 10 }} |
| 53 | volumeMounts: |
| 54 | - mountPath: /config-input |
| 55 | name: distributionconfig-input |
| 56 | - mountPath: /config |
| 57 | name: distributionconfig |
Sylvain Desbureaux | 7c8c686 | 2020-11-19 18:02:37 +0100 | [diff] [blame] | 58 | image: {{ include "repositoryGenerator.image.envsubst" . }} |
Dominik Mizyn | 4aa534f | 2020-04-14 18:03:53 +0200 | [diff] [blame] | 59 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 60 | name: {{ include "common.name" . }}-update-config |
mmis | 9cb5029 | 2018-09-19 00:31:35 +0100 | [diff] [blame] | 61 | containers: |
| 62 | - name: {{ include "common.name" . }} |
Sylvain Desbureaux | 7c8c686 | 2020-11-19 18:02:37 +0100 | [diff] [blame] | 63 | image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }} |
mmis | 9cb5029 | 2018-09-19 00:31:35 +0100 | [diff] [blame] | 64 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
efiacor | 3f7b375 | 2022-11-28 10:38:56 +0000 | [diff] [blame] | 65 | env: |
efiacor | 3f7b375 | 2022-11-28 10:38:56 +0000 | [diff] [blame] | 66 | - name: SASL_JAAS_CONFIG |
efiacor | ab235f4 | 2023-02-15 11:51:52 +0000 | [diff] [blame] | 67 | valueFrom: |
| 68 | secretKeyRef: |
| 69 | name: {{ include "common.name" . }}-ku |
| 70 | key: sasl.jaas.config |
efiacor | ab235f4 | 2023-02-15 11:51:52 +0000 | [diff] [blame] | 71 | command: ["/opt/app/policy/distribution/bin/policy-dist.sh"] |
| 72 | args: ["/opt/app/policy/distribution/etc/mounted/config.json"] |
Andreas Geissler | f10c555 | 2023-03-21 18:09:46 +0100 | [diff] [blame] | 73 | ports: {{ include "common.containerPorts" . | nindent 12 }} |
mmis | 9cb5029 | 2018-09-19 00:31:35 +0100 | [diff] [blame] | 74 | # disable liveness probe when breakpoints set in debugger |
| 75 | # so K8s doesn't restart unresponsive container |
| 76 | {{- if eq .Values.liveness.enabled true }} |
| 77 | livenessProbe: |
| 78 | tcpSocket: |
| 79 | port: {{ .Values.service.internalPort }} |
| 80 | initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} |
| 81 | periodSeconds: {{ .Values.liveness.periodSeconds }} |
| 82 | {{ end -}} |
| 83 | readinessProbe: |
| 84 | tcpSocket: |
| 85 | port: {{ .Values.service.internalPort }} |
| 86 | initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} |
| 87 | periodSeconds: {{ .Values.readiness.periodSeconds }} |
| 88 | volumeMounts: |
| 89 | - mountPath: /etc/localtime |
| 90 | name: localtime |
| 91 | readOnly: true |
| 92 | - mountPath: /opt/app/policy/distribution/etc/mounted |
| 93 | name: distributionconfig |
miroslavmasaryk | a7ac7f0 | 2023-03-01 14:12:26 +0100 | [diff] [blame] | 94 | resources: {{ include "common.resources" . | nindent 12 }} |
mmis | 9cb5029 | 2018-09-19 00:31:35 +0100 | [diff] [blame] | 95 | {{- if .Values.nodeSelector }} |
| 96 | nodeSelector: |
| 97 | {{ toYaml .Values.nodeSelector | indent 10 }} |
| 98 | {{- end -}} |
| 99 | {{- if .Values.affinity }} |
| 100 | affinity: |
| 101 | {{ toYaml .Values.affinity | indent 10 }} |
| 102 | {{- end }} |
farida azmy | c117837 | 2021-04-11 12:55:33 +0200 | [diff] [blame] | 103 | serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}} |
mmis | 9cb5029 | 2018-09-19 00:31:35 +0100 | [diff] [blame] | 104 | volumes: |
| 105 | - name: localtime |
| 106 | hostPath: |
| 107 | path: /etc/localtime |
Dominik Mizyn | 4aa534f | 2020-04-14 18:03:53 +0200 | [diff] [blame] | 108 | - name: distributionconfig-input |
mmis | 9cb5029 | 2018-09-19 00:31:35 +0100 | [diff] [blame] | 109 | configMap: |
| 110 | name: {{ include "common.fullname" . }}-configmap |
| 111 | defaultMode: 0755 |
Dominik Mizyn | 4aa534f | 2020-04-14 18:03:53 +0200 | [diff] [blame] | 112 | - name: distributionconfig |
| 113 | emptyDir: |
| 114 | medium: Memory |
mmis | 9cb5029 | 2018-09-19 00:31:35 +0100 | [diff] [blame] | 115 | imagePullSecrets: |
| 116 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |