blob: b475d2ce2dded2a0871612c40be4627adb599c2a [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
Andreas Geisslerf10c5552023-03-21 18:09:46 +010023metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
Michael Mokryafae9972019-03-11 14:46:34 -050024spec:
Andreas Geisslerf10c5552023-03-21 18:09:46 +010025 selector: {{- include "common.selectors" . | nindent 4 }}
Michael Mokryafae9972019-03-11 14:46:34 -050026 replicas: {{ .Values.replicaCount }}
27 template:
Andreas Geisslerf10c5552023-03-21 18:09:46 +010028 metadata: {{- include "common.templateMetadata" . | nindent 6 }}
Michael Mokryafae9972019-03-11 14:46:34 -050029 spec:
Michael Mokry3b2647a2019-04-14 20:24:43 -050030 initContainers:
31 - command:
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020032 - /app/ready.py
Michael Mokry3b2647a2019-04-14 20:24:43 -050033 args:
jhhd4258672020-08-09 12:08:08 -050034 - --job-name
35 - {{ include "common.release" . }}-policy-galera-config
Michael Mokry3b2647a2019-04-14 20:24:43 -050036 env:
37 - name: NAMESPACE
38 valueFrom:
39 fieldRef:
40 apiVersion: v1
41 fieldPath: metadata.namespace
Sylvain Desbureaux7c8c6862020-11-19 18:02:37 +010042 image: {{ include "repositoryGenerator.image.readiness" . }}
Michael Mokry3b2647a2019-04-14 20:24:43 -050043 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
44 name: {{ include "common.name" . }}-readiness
Andreas Geissler47537432024-02-27 08:55:23 +010045 resources:
46 limits:
47 cpu: "100m"
Andreas Geissler8cbb3d92024-03-12 16:44:56 +010048 memory: "500Mi"
Andreas Geissler47537432024-02-27 08:55:23 +010049 requests:
50 cpu: "3m"
Andreas Geissler8cbb3d92024-03-12 16:44:56 +010051 memory: "20Mi"
Dominik Mizync88bcc92020-04-14 18:20:20 +020052 - command:
53 - sh
54 args:
55 - -c
Taka Choebd62952020-10-08 13:50:09 -040056 - "cd /config-input && for PFILE in `ls -1`; do envsubst <${PFILE} >/config/${PFILE}; done"
Dominik Mizync88bcc92020-04-14 18:20:20 +020057 env:
58 - name: RESTSERVER_USER
59 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "restserver-creds" "key" "login") | indent 10 }}
60 - name: RESTSERVER_PASSWORD
61 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "restserver-creds" "key" "password") | indent 10 }}
62 - name: API_USER
63 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "api-creds" "key" "login") | indent 10 }}
64 - name: API_PASSWORD
65 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "api-creds" "key" "password") | indent 10 }}
jhhed6839f2020-05-08 12:28:27 -050066 - name: SQL_USER
67 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-secret" "key" "login") | indent 10 }}
68 - name: SQL_PASSWORD
69 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-secret" "key" "password") | indent 10 }}
Dominik Mizync88bcc92020-04-14 18:20:20 +020070 volumeMounts:
71 - mountPath: /config-input
72 name: pdpxconfig
73 - mountPath: /config
74 name: pdpxconfig-processed
Sylvain Desbureaux7c8c6862020-11-19 18:02:37 +010075 image: {{ include "repositoryGenerator.image.envsubst" . }}
Dominik Mizync88bcc92020-04-14 18:20:20 +020076 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
77 name: {{ include "common.name" . }}-update-config
Michael Mokryafae9972019-03-11 14:46:34 -050078 containers:
79 - name: {{ include "common.name" . }}
Sylvain Desbureaux7c8c6862020-11-19 18:02:37 +010080 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
Michael Mokryafae9972019-03-11 14:46:34 -050081 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
82 command: ["/opt/app/policy/pdpx/bin/policy-pdpx.sh"]
jhhbf7fb4d2019-08-07 16:54:41 -050083 args: ["/opt/app/policy/pdpx/etc/mounted/config.json"]
Andreas Geisslerb3f16b92023-04-03 12:19:48 +020084 ports: {{ include "common.containerPorts" . | nindent 12 }}
Michael Mokryafae9972019-03-11 14:46:34 -050085 # disable liveness probe when breakpoints set in debugger
86 # so K8s doesn't restart unresponsive container
87 {{- if eq .Values.liveness.enabled true }}
88 livenessProbe:
89 tcpSocket:
90 port: {{ .Values.service.internalPort }}
91 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
92 periodSeconds: {{ .Values.liveness.periodSeconds }}
93 {{ end -}}
94 readinessProbe:
95 tcpSocket:
96 port: {{ .Values.service.internalPort }}
97 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
98 periodSeconds: {{ .Values.readiness.periodSeconds }}
99 volumeMounts:
100 - mountPath: /etc/localtime
101 name: localtime
102 readOnly: true
103 - mountPath: /opt/app/policy/pdpx/etc/mounted
Dominik Mizync88bcc92020-04-14 18:20:20 +0200104 name: pdpxconfig-processed
miroslavmasaryka7ac7f02023-03-01 14:12:26 +0100105 resources: {{ include "common.resources" . | nindent 12 }}
Michael Mokryafae9972019-03-11 14:46:34 -0500106 {{- if .Values.nodeSelector }}
107 nodeSelector:
108{{ toYaml .Values.nodeSelector | indent 10 }}
109 {{- end -}}
110 {{- if .Values.affinity }}
111 affinity:
112{{ toYaml .Values.affinity | indent 10 }}
113 {{- end }}
farida azmyc1178372021-04-11 12:55:33 +0200114 serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
Michael Mokryafae9972019-03-11 14:46:34 -0500115 volumes:
116 - name: localtime
117 hostPath:
118 path: /etc/localtime
119 - name: pdpxconfig
120 configMap:
121 name: {{ include "common.fullname" . }}-configmap
122 defaultMode: 0755
Dominik Mizync88bcc92020-04-14 18:20:20 +0200123 - name: pdpxconfig-processed
124 emptyDir:
125 medium: Memory
Andreas Geisslerbd0d31a2024-03-20 09:51:32 +0100126 {{- include "common.imagePullSecrets" . | nindent 6 }}