blob: a13b9f712f96943f2bf8c5beb506e5962bed2ece [file] [log] [blame]
rameshiyer2701b8cc02021-09-21 15:07:50 +01001{{/*
2# ============LICENSE_START=======================================================
efiacor6910bbe2023-03-03 14:53:16 +00003# Copyright (C) 2021-2023 Nordix Foundation.
rameshiyer2701b8cc02021-09-21 15:07:50 +01004# ================================================================================
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=========================================================
19*/}}
20
21apiVersion: apps/v1
22kind: Deployment
23metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
24spec:
25 selector: {{- include "common.selectors" . | nindent 4 }}
26 replicas: {{ .Values.replicaCount }}
27 template:
28 metadata: {{- include "common.templateMetadata" . | nindent 6 }}
29 spec:
30 initContainers:
efiacor6910bbe2023-03-03 14:53:16 +000031{{- if not .Values.global.useStrimziKafka }}
32{{ include "common.readinessCheck.waitFor" . | nindent 6 }}
saul.gill5e611402023-03-02 11:49:23 +000033{{- end }}
rameshiyer2701b8cc02021-09-21 15:07:50 +010034 - command:
35 - sh
36 args:
37 - -c
38 - "cd /config-input && for PFILE in `ls -1`; do envsubst <${PFILE} >/config/${PFILE}; done"
39 env:
FrancescoFioraEst9c79e262022-02-22 13:12:19 +000040 - name: API_USER
41 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "api-secret" "key" "login") | indent 10 }}
42 - name: API_PASSWORD
43 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "api-secret" "key" "password") | indent 10 }}
44 - name: PAP_USER
45 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "pap-secret" "key" "login") | indent 10 }}
46 - name: PAP_PASSWORD
47 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "pap-secret" "key" "password") | indent 10 }}
rameshiyer2701b8cc02021-09-21 15:07:50 +010048 - name: RESTSERVER_USER
49 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "restserver-secret" "key" "login") | indent 10 }}
50 - name: RESTSERVER_PASSWORD
51 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "restserver-secret" "key" "password") | indent 10 }}
efiacor6910bbe2023-03-03 14:53:16 +000052{{- if .Values.global.useStrimziKafka }}
53 - name: SASL_JAAS_CONFIG
54 valueFrom:
55 secretKeyRef:
56 name: {{ include "common.name" . }}-ku
57 key: sasl.jaas.config
Sirisha_Manchikanti73c5f002022-07-25 17:04:45 +010058{{- end }}
rameshiyer2701b8cc02021-09-21 15:07:50 +010059 volumeMounts:
60 - mountPath: /config-input
FrancescoFioraEst9c79e262022-02-22 13:12:19 +000061 name: ac-pf-ppnt-config
rameshiyer2701b8cc02021-09-21 15:07:50 +010062 - mountPath: /config
FrancescoFioraEst9c79e262022-02-22 13:12:19 +000063 name: ac-pf-ppnt-config-processed
rameshiyer2701b8cc02021-09-21 15:07:50 +010064 image: {{ include "repositoryGenerator.image.envsubst" . }}
65 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
66 name: {{ include "common.name" . }}-update-config
rameshiyer2701b8cc02021-09-21 15:07:50 +010067 containers:
68 - name: {{ include "common.name" . }}
69 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
70 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
FrancescoFioraEst9c79e262022-02-22 13:12:19 +000071 command: ["/opt/app/policy/clamp/bin/policy-participant.sh"]
72 args: ["/opt/app/policy/clamp/etc/mounted/PolicyParticipantParameters.yaml"]
rameshiyer2701b8cc02021-09-21 15:07:50 +010073 ports: {{ include "common.containerPorts" . | nindent 12 }}
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.liveness.port }}
80 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
81 periodSeconds: {{ .Values.liveness.periodSeconds }}
82 {{ end -}}
83 readinessProbe:
84 tcpSocket:
85 port: {{ .Values.readiness.port }}
86 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
87 periodSeconds: {{ .Values.readiness.periodSeconds }}
88 volumeMounts:
rameshiyer2701b8cc02021-09-21 15:07:50 +010089 - mountPath: /etc/localtime
90 name: localtime
91 readOnly: true
92 - mountPath: /opt/app/policy/clamp/etc/mounted
FrancescoFioraEst9c79e262022-02-22 13:12:19 +000093 name: ac-pf-ppnt-config-processed
miroslavmasaryka7ac7f02023-03-01 14:12:26 +010094 resources: {{ include "common.resources" . | nindent 12 }}
rameshiyer2701b8cc02021-09-21 15:07:50 +010095 {{- 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 }}
FrancescoFioraEst9c79e262022-02-22 13:12:19 +0000103 serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
rameshiyer2701b8cc02021-09-21 15:07:50 +0100104 volumes:
rameshiyer2701b8cc02021-09-21 15:07:50 +0100105 - name: localtime
106 hostPath:
107 path: /etc/localtime
FrancescoFioraEst9c79e262022-02-22 13:12:19 +0000108 - name: ac-pf-ppnt-config
rameshiyer2701b8cc02021-09-21 15:07:50 +0100109 configMap:
110 name: {{ include "common.fullname" . }}-configmap
111 defaultMode: 0755
FrancescoFioraEst9c79e262022-02-22 13:12:19 +0000112 - name: ac-pf-ppnt-config-processed
rameshiyer2701b8cc02021-09-21 15:07:50 +0100113 emptyDir:
114 medium: Memory
115 imagePullSecrets:
116 - name: "{{ include "common.namespace" . }}-docker-registry-key"