Merge "[COMMON] Fix resources indent"
[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 {{- if .Values.config.useStrimziKafka }}
32       - command:
33           - /app/ready.py
34         args:
35           - --container-name
36           - message-router
37         env:
38           - name: NAMESPACE
39             valueFrom:
40               fieldRef:
41                 apiVersion: v1
42                 fieldPath: metadata.namespace
43         image: {{ include "repositoryGenerator.image.readiness" . }}
44         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
45         name: {{ include "common.name" . }}-readiness
46 {{- end }}
47       - command:
48         - sh
49         args:
50         - -c
51         - "cd /config-input && for PFILE in `ls -1`; do envsubst <${PFILE} >/config/${PFILE}; done"
52         env:
53         - name: API_USER
54           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "api-secret" "key" "login") | indent 10 }}
55         - name: API_PASSWORD
56           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "api-secret" "key" "password") | indent 10 }}
57         - name: PAP_USER
58           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "pap-secret" "key" "login") | indent 10 }}
59         - name: PAP_PASSWORD
60           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "pap-secret" "key" "password") | indent 10 }}
61         - name: RESTSERVER_USER
62           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "restserver-secret" "key" "login") | indent 10 }}
63         - name: RESTSERVER_PASSWORD
64           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "restserver-secret" "key" "password") | indent 10 }}
65 {{- if .Values.config.useStrimziKafka }}
66         - name: JAASLOGIN
67           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "policy-kafka-user" "key" "sasl.jaas.config") | indent 10 }}
68 {{- end }}
69         volumeMounts:
70         - mountPath: /config-input
71           name: ac-pf-ppnt-config
72         - mountPath: /config
73           name: ac-pf-ppnt-config-processed
74         image: {{ include "repositoryGenerator.image.envsubst" . }}
75         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
76         name: {{ include "common.name" . }}-update-config
77 {{ include "common.certInitializer.initContainer" . | indent 6 }}
78       containers:
79         - name: {{ include "common.name" . }}
80           image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
81           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
82 {{- if .Values.global.aafEnabled }}
83           command: ["sh","-c"]
84           args: ["source {{ .Values.certInitializer.credsPath }}/.ci;\
85                   /opt/app/policy/clamp/bin/policy-participant.sh /opt/app/policy/clamp/etc/mounted/PolicyParticipantParameters.yaml"]
86 {{- else }}
87           command: ["/opt/app/policy/clamp/bin/policy-participant.sh"]
88           args: ["/opt/app/policy/clamp/etc/mounted/PolicyParticipantParameters.yaml"]
89           env:
90           - name: KEYSTORE_PASSWD
91             {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "keystore-password" "key" "password") | indent 12 }}
92           - name: TRUSTSTORE_PASSWD
93             {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "truststore-password" "key" "password") | indent 12 }}
94 {{- end }}
95           ports: {{ include "common.containerPorts" . | nindent 12  }}
96           # disable liveness probe when breakpoints set in debugger
97           # so K8s doesn't restart unresponsive container
98           {{- if eq .Values.liveness.enabled true }}
99           livenessProbe:
100             tcpSocket:
101               port: {{ .Values.liveness.port }}
102             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
103             periodSeconds: {{ .Values.liveness.periodSeconds }}
104           {{ end -}}
105           readinessProbe:
106             tcpSocket:
107               port: {{ .Values.readiness.port }}
108             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
109             periodSeconds: {{ .Values.readiness.periodSeconds }}
110           volumeMounts:
111 {{ include "common.certInitializer.volumeMount" . | indent 10 }}
112           - mountPath: /etc/localtime
113             name: localtime
114             readOnly: true
115           - mountPath: /opt/app/policy/clamp/etc/mounted
116             name: ac-pf-ppnt-config-processed
117           resources: {{ include "common.resources" . | nindent 12 }}
118         {{- if .Values.nodeSelector }}
119         nodeSelector:
120 {{ toYaml .Values.nodeSelector | indent 10 }}
121         {{- end -}}
122         {{- if .Values.affinity }}
123         affinity:
124 {{ toYaml .Values.affinity | indent 10 }}
125         {{- end }}
126       serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
127       volumes:
128 {{ include "common.certInitializer.volumes" . | indent 8 }}
129         - name: localtime
130           hostPath:
131              path: /etc/localtime
132         - name: ac-pf-ppnt-config
133           configMap:
134             name: {{ include "common.fullname" . }}-configmap
135             defaultMode: 0755
136         - name: ac-pf-ppnt-config-processed
137           emptyDir:
138             medium: Memory
139       imagePullSecrets:
140       - name: "{{ include "common.namespace" . }}-docker-registry-key"