blob: 73ae6dd55a533b32d3eb779e5e6a94ebd934c3e0 [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
Michael Mokryafae9972019-03-11 14:46:34 -050022kind: 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" . }}
Michael Mokryafae9972019-03-11 14:46:34 -050030 heritage: {{ .Release.Service }}
31spec:
Grzegorz-Lis4fad3022020-07-31 10:18:21 +020032 selector:
33 matchLabels:
34 app: {{ include "common.name" . }}
Michael Mokryafae9972019-03-11 14:46:34 -050035 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" . }}
Michael Mokryafae9972019-03-11 14:46:34 -050041 spec:
Michael Mokry3b2647a2019-04-14 20:24:43 -050042 initContainers:
43 - command:
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020044 - /app/ready.py
Michael Mokry3b2647a2019-04-14 20:24:43 -050045 args:
jhhd4258672020-08-09 12:08:08 -050046 - --job-name
47 - {{ include "common.release" . }}-policy-galera-config
Michael Mokry3b2647a2019-04-14 20:24:43 -050048 env:
49 - name: NAMESPACE
50 valueFrom:
51 fieldRef:
52 apiVersion: v1
53 fieldPath: metadata.namespace
Sylvain Desbureaux7c8c6862020-11-19 18:02:37 +010054 image: {{ include "repositoryGenerator.image.readiness" . }}
Michael Mokry3b2647a2019-04-14 20:24:43 -050055 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
56 name: {{ include "common.name" . }}-readiness
Dominik Mizync88bcc92020-04-14 18:20:20 +020057 - command:
58 - sh
59 args:
60 - -c
Taka Choebd62952020-10-08 13:50:09 -040061 - "cd /config-input && for PFILE in `ls -1`; do envsubst <${PFILE} >/config/${PFILE}; done"
Dominik Mizync88bcc92020-04-14 18:20:20 +020062 env:
63 - name: RESTSERVER_USER
64 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "restserver-creds" "key" "login") | indent 10 }}
65 - name: RESTSERVER_PASSWORD
66 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "restserver-creds" "key" "password") | indent 10 }}
67 - name: API_USER
68 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "api-creds" "key" "login") | indent 10 }}
69 - name: API_PASSWORD
70 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "api-creds" "key" "password") | indent 10 }}
jhhed6839f2020-05-08 12:28:27 -050071 - name: SQL_USER
72 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-secret" "key" "login") | indent 10 }}
73 - name: SQL_PASSWORD
74 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-secret" "key" "password") | indent 10 }}
Dominik Mizync88bcc92020-04-14 18:20:20 +020075 volumeMounts:
76 - mountPath: /config-input
77 name: pdpxconfig
78 - mountPath: /config
79 name: pdpxconfig-processed
Sylvain Desbureaux7c8c6862020-11-19 18:02:37 +010080 image: {{ include "repositoryGenerator.image.envsubst" . }}
Dominik Mizync88bcc92020-04-14 18:20:20 +020081 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
82 name: {{ include "common.name" . }}-update-config
jhhd4258672020-08-09 12:08:08 -050083{{ include "common.certInitializer.initContainer" . | indent 6 }}
Michael Mokryafae9972019-03-11 14:46:34 -050084 containers:
85 - name: {{ include "common.name" . }}
Sylvain Desbureaux7c8c6862020-11-19 18:02:37 +010086 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
Michael Mokryafae9972019-03-11 14:46:34 -050087 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
jhhd4258672020-08-09 12:08:08 -050088{{- if .Values.global.aafEnabled }}
Taka Cho9658ce82020-12-10 14:34:18 -050089 command: ["sh","-c"]
jhhd4258672020-08-09 12:08:08 -050090 args: ["source {{ .Values.certInitializer.credsPath }}/.ci;\
jhhd4258672020-08-09 12:08:08 -050091 /opt/app/policy/pdpx/bin/policy-pdpx.sh /opt/app/policy/pdpx/etc/mounted/config.json"]
92{{- else }}
Michael Mokryafae9972019-03-11 14:46:34 -050093 command: ["/opt/app/policy/pdpx/bin/policy-pdpx.sh"]
jhhbf7fb4d2019-08-07 16:54:41 -050094 args: ["/opt/app/policy/pdpx/etc/mounted/config.json"]
jhhd4258672020-08-09 12:08:08 -050095 env:
96 - name: KEYSTORE_PASSWD
97 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "keystore-password" "key" "password") | indent 12 }}
98 - name: TRUSTSTORE_PASSWD
99 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "truststore-password" "key" "password") | indent 12 }}
100{{- end }}
Michael Mokryafae9972019-03-11 14:46:34 -0500101 ports:
102 - containerPort: {{ .Values.service.internalPort }}
103 # disable liveness probe when breakpoints set in debugger
104 # so K8s doesn't restart unresponsive container
105 {{- if eq .Values.liveness.enabled true }}
106 livenessProbe:
107 tcpSocket:
108 port: {{ .Values.service.internalPort }}
109 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
110 periodSeconds: {{ .Values.liveness.periodSeconds }}
111 {{ end -}}
112 readinessProbe:
113 tcpSocket:
114 port: {{ .Values.service.internalPort }}
115 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
116 periodSeconds: {{ .Values.readiness.periodSeconds }}
117 volumeMounts:
jhhd4258672020-08-09 12:08:08 -0500118{{ include "common.certInitializer.volumeMount" . | indent 10 }}
Michael Mokryafae9972019-03-11 14:46:34 -0500119 - mountPath: /etc/localtime
120 name: localtime
121 readOnly: true
122 - mountPath: /opt/app/policy/pdpx/etc/mounted
Dominik Mizync88bcc92020-04-14 18:20:20 +0200123 name: pdpxconfig-processed
Michael Mokryafae9972019-03-11 14:46:34 -0500124 resources:
jhhd4258672020-08-09 12:08:08 -0500125{{ include "common.resources" . }}
Michael Mokryafae9972019-03-11 14:46:34 -0500126 {{- if .Values.nodeSelector }}
127 nodeSelector:
128{{ toYaml .Values.nodeSelector | indent 10 }}
129 {{- end -}}
130 {{- if .Values.affinity }}
131 affinity:
132{{ toYaml .Values.affinity | indent 10 }}
133 {{- end }}
134 volumes:
jhhd4258672020-08-09 12:08:08 -0500135{{ include "common.certInitializer.volumes" . | indent 8 }}
Michael Mokryafae9972019-03-11 14:46:34 -0500136 - name: localtime
137 hostPath:
138 path: /etc/localtime
139 - name: pdpxconfig
140 configMap:
141 name: {{ include "common.fullname" . }}-configmap
142 defaultMode: 0755
Dominik Mizync88bcc92020-04-14 18:20:20 +0200143 - name: pdpxconfig-processed
144 emptyDir:
145 medium: Memory
Michael Mokryafae9972019-03-11 14:46:34 -0500146 imagePullSecrets:
147 - name: "{{ include "common.namespace" . }}-docker-registry-key"