blob: 7a3f6d78a371337193cfc24b5707a41a8b564df3 [file] [log] [blame]
Jakub Latusekd71d26c2020-10-21 13:36:29 +02001{{/*
jhhd4258672020-08-09 12:08:08 -05002# ============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 Latusekd71d26c2020-10-21 13:36:29 +020019*/}}
jhhd4258672020-08-09 12:08:08 -050020
Grzegorz-Lis4fad3022020-07-31 10:18:21 +020021apiVersion: apps/v1
mmis9cb50292018-09-19 00:31:35 +010022kind: Deployment
23metadata:
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 Opasiak137d7cc2020-01-24 23:49:11 +010029 release: {{ include "common.release" . }}
mmis9cb50292018-09-19 00:31:35 +010030 heritage: {{ .Release.Service }}
31spec:
Grzegorz-Lis4fad3022020-07-31 10:18:21 +020032 selector:
33 matchLabels:
34 app: {{ include "common.name" . }}
mmis9cb50292018-09-19 00:31:35 +010035 replicas: {{ .Values.replicaCount }}
36 template:
37 metadata:
38 labels:
39 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010040 release: {{ include "common.release" . }}
mmis9cb50292018-09-19 00:31:35 +010041 spec:
Dominik Mizyn4aa534f2020-04-14 18:03:53 +020042 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 Desbureaux7c8c6862020-11-19 18:02:37 +010070 image: {{ include "repositoryGenerator.image.envsubst" . }}
Dominik Mizyn4aa534f2020-04-14 18:03:53 +020071 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
72 name: {{ include "common.name" . }}-update-config
jhhd4258672020-08-09 12:08:08 -050073{{ include "common.certInitializer.initContainer" . | indent 6 }}
mmis9cb50292018-09-19 00:31:35 +010074 containers:
75 - name: {{ include "common.name" . }}
Sylvain Desbureaux7c8c6862020-11-19 18:02:37 +010076 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
mmis9cb50292018-09-19 00:31:35 +010077 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
efiacor3f7b3752022-11-28 10:38:56 +000078 env:
efiacor3f7b3752022-11-28 10:38:56 +000079 - name: SASL_JAAS_CONFIG
efiacorab235f42023-02-15 11:51:52 +000080 valueFrom:
81 secretKeyRef:
82 name: {{ include "common.name" . }}-ku
83 key: sasl.jaas.config
jhhd4258672020-08-09 12:08:08 -050084{{- if .Values.global.aafEnabled }}
Taka Cho9658ce82020-12-10 14:34:18 -050085 command: ["sh","-c"]
jhhd4258672020-08-09 12:08:08 -050086 args: ["source {{ .Values.certInitializer.credsPath }}/.ci;\
jhhd4258672020-08-09 12:08:08 -050087 /opt/app/policy/distribution/bin/policy-dist.sh /opt/app/policy/distribution/etc/mounted/config.json"]
88{{- else }}
jhhd4258672020-08-09 12:08:08 -050089 - name: KEYSTORE_PASSWD
90 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "keystore-password" "key" "password") | indent 12 }}
91 - name: TRUSTSTORE_PASSWD
92 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "truststore-password" "key" "password") | indent 12 }}
efiacorab235f42023-02-15 11:51:52 +000093 command: ["/opt/app/policy/distribution/bin/policy-dist.sh"]
94 args: ["/opt/app/policy/distribution/etc/mounted/config.json"]
jhhd4258672020-08-09 12:08:08 -050095{{- end }}
mmis9cb50292018-09-19 00:31:35 +010096 ports:
97 - containerPort: {{ .Values.service.internalPort }}
98 # disable liveness probe when breakpoints set in debugger
99 # so K8s doesn't restart unresponsive container
100 {{- if eq .Values.liveness.enabled true }}
101 livenessProbe:
102 tcpSocket:
103 port: {{ .Values.service.internalPort }}
104 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
105 periodSeconds: {{ .Values.liveness.periodSeconds }}
106 {{ end -}}
107 readinessProbe:
108 tcpSocket:
109 port: {{ .Values.service.internalPort }}
110 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
111 periodSeconds: {{ .Values.readiness.periodSeconds }}
112 volumeMounts:
jhhd4258672020-08-09 12:08:08 -0500113{{ include "common.certInitializer.volumeMount" . | indent 10 }}
mmis9cb50292018-09-19 00:31:35 +0100114 - mountPath: /etc/localtime
115 name: localtime
116 readOnly: true
117 - mountPath: /opt/app/policy/distribution/etc/mounted
118 name: distributionconfig
miroslavmasaryka7ac7f02023-03-01 14:12:26 +0100119 resources: {{ include "common.resources" . | nindent 12 }}
mmis9cb50292018-09-19 00:31:35 +0100120 {{- if .Values.nodeSelector }}
121 nodeSelector:
122{{ toYaml .Values.nodeSelector | indent 10 }}
123 {{- end -}}
124 {{- if .Values.affinity }}
125 affinity:
126{{ toYaml .Values.affinity | indent 10 }}
127 {{- end }}
farida azmyc1178372021-04-11 12:55:33 +0200128 serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
mmis9cb50292018-09-19 00:31:35 +0100129 volumes:
jhhd4258672020-08-09 12:08:08 -0500130{{ include "common.certInitializer.volumes" . | indent 8 }}
mmis9cb50292018-09-19 00:31:35 +0100131 - name: localtime
132 hostPath:
133 path: /etc/localtime
Dominik Mizyn4aa534f2020-04-14 18:03:53 +0200134 - name: distributionconfig-input
mmis9cb50292018-09-19 00:31:35 +0100135 configMap:
136 name: {{ include "common.fullname" . }}-configmap
137 defaultMode: 0755
Dominik Mizyn4aa534f2020-04-14 18:03:53 +0200138 - name: distributionconfig
139 emptyDir:
140 medium: Memory
mmis9cb50292018-09-19 00:31:35 +0100141 imagePullSecrets:
142 - name: "{{ include "common.namespace" . }}-docker-registry-key"