Merge "[DMAAP] DMaaP ServiceMesh compatibility"
[oom.git] / kubernetes / policy / components / policy-clamp-ac-pf-ppnt / templates / deployment.yaml
1 {{/*
2 #  ============LICENSE_START=======================================================
3 #   Copyright (C) 2021-2022 Nordix Foundation.
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=========================================================
19 */}}
20
21 apiVersion: apps/v1
22 kind: Deployment
23 metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
24 spec:
25   selector: {{- include "common.selectors" . | nindent 4 }}
26   replicas: {{ .Values.replicaCount }}
27   template:
28     metadata: {{- include "common.templateMetadata" . | nindent 6 }}
29     spec:
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: API_USER
38           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "api-secret" "key" "login") | indent 10 }}
39         - name: API_PASSWORD
40           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "api-secret" "key" "password") | indent 10 }}
41         - name: PAP_USER
42           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "pap-secret" "key" "login") | indent 10 }}
43         - name: PAP_PASSWORD
44           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "pap-secret" "key" "password") | indent 10 }}
45         - name: RESTSERVER_USER
46           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "restserver-secret" "key" "login") | indent 10 }}
47         - name: RESTSERVER_PASSWORD
48           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "restserver-secret" "key" "password") | indent 10 }}
49 {{- if .Values.config.useStrimziKafka }}
50         - name: JAASLOGIN
51           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "policy-kafka-user" "key" "sasl.jaas.config") | indent 10 }}
52 {{- end }}
53         volumeMounts:
54         - mountPath: /config-input
55           name: ac-pf-ppnt-config
56         - mountPath: /config
57           name: ac-pf-ppnt-config-processed
58         image: {{ include "repositoryGenerator.image.envsubst" . }}
59         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
60         name: {{ include "common.name" . }}-update-config
61 {{ include "common.certInitializer.initContainer" . | indent 6 }}
62       containers:
63         - name: {{ include "common.name" . }}
64           image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
65           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
66 {{- if .Values.global.aafEnabled }}
67           command: ["sh","-c"]
68           args: ["source {{ .Values.certInitializer.credsPath }}/.ci;\
69                   /opt/app/policy/clamp/bin/policy-participant.sh /opt/app/policy/clamp/etc/mounted/PolicyParticipantParameters.yaml"]
70 {{- else }}
71           command: ["/opt/app/policy/clamp/bin/policy-participant.sh"]
72           args: ["/opt/app/policy/clamp/etc/mounted/PolicyParticipantParameters.yaml"]
73           env:
74           - name: KEYSTORE_PASSWD
75             {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "keystore-password" "key" "password") | indent 12 }}
76           - name: TRUSTSTORE_PASSWD
77             {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "truststore-password" "key" "password") | indent 12 }}
78 {{- end }}
79           ports: {{ include "common.containerPorts" . | nindent 12  }}
80           # disable liveness probe when breakpoints set in debugger
81           # so K8s doesn't restart unresponsive container
82           {{- if eq .Values.liveness.enabled true }}
83           livenessProbe:
84             tcpSocket:
85               port: {{ .Values.liveness.port }}
86             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
87             periodSeconds: {{ .Values.liveness.periodSeconds }}
88           {{ end -}}
89           readinessProbe:
90             tcpSocket:
91               port: {{ .Values.readiness.port }}
92             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
93             periodSeconds: {{ .Values.readiness.periodSeconds }}
94           volumeMounts:
95 {{ include "common.certInitializer.volumeMount" . | indent 10 }}
96           - mountPath: /etc/localtime
97             name: localtime
98             readOnly: true
99           - mountPath: /opt/app/policy/clamp/etc/mounted
100             name: ac-pf-ppnt-config-processed
101           resources:
102 {{ include "common.resources" . }}
103         {{- if .Values.nodeSelector }}
104         nodeSelector:
105 {{ toYaml .Values.nodeSelector | indent 10 }}
106         {{- end -}}
107         {{- if .Values.affinity }}
108         affinity:
109 {{ toYaml .Values.affinity | indent 10 }}
110         {{- end }}
111       serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
112       volumes:
113 {{ include "common.certInitializer.volumes" . | indent 8 }}
114         - name: localtime
115           hostPath:
116              path: /etc/localtime
117         - name: ac-pf-ppnt-config
118           configMap:
119             name: {{ include "common.fullname" . }}-configmap
120             defaultMode: 0755
121         - name: ac-pf-ppnt-config-processed
122           emptyDir:
123             medium: Memory
124       imagePullSecrets:
125       - name: "{{ include "common.namespace" . }}-docker-registry-key"