Merge "[COMMON] Fix resources indent"
[oom.git] / kubernetes / policy / components / policy-clamp-ac-http-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: RESTSERVER_USER
54           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "restserver-secret" "key" "login") | indent 10 }}
55         - name: RESTSERVER_PASSWORD
56           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "restserver-secret" "key" "password") | indent 10 }}
57 {{- if .Values.config.useStrimziKafka }}
58         - name: JAASLOGIN
59           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "policy-kafka-user" "key" "sasl.jaas.config") | indent 10 }}
60 {{- end }}
61         volumeMounts:
62         - mountPath: /config-input
63           name: ac-http-ppnt-config
64         - mountPath: /config
65           name: ac-http-ppnt-config-processed
66         image: {{ include "repositoryGenerator.image.envsubst" . }}
67         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
68         name: {{ include "common.name" . }}-update-config
69 {{ include "common.certInitializer.initContainer" . | indent 6 }}
70       containers:
71         - name: {{ include "common.name" . }}
72           image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
73           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
74 {{- if .Values.global.aafEnabled }}
75           command: ["sh","-c"]
76           args: ["source {{ .Values.certInitializer.credsPath }}/.ci;\
77                   /opt/app/policy/clamp/bin/http-participant.sh /opt/app/policy/clamp/etc/mounted/HttpParticipantParameters.yaml"]
78 {{- else }}
79           command: ["/opt/app/policy/clamp/bin/http-participant.sh"]
80           args: ["/opt/app/policy/clamp/etc/mounted/HttpParticipantParameters.yaml"]
81           env:
82           - name: KEYSTORE_PASSWD
83             {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "keystore-password" "key" "password") | indent 12 }}
84           - name: TRUSTSTORE_PASSWD
85             {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "truststore-password" "key" "password") | indent 12 }}
86 {{- end }}
87           ports: {{ include "common.containerPorts" . | nindent 12  }}
88           # disable liveness probe when breakpoints set in debugger
89           # so K8s doesn't restart unresponsive container
90           {{- if eq .Values.liveness.enabled true }}
91           livenessProbe:
92             tcpSocket:
93               port: {{ .Values.liveness.port }}
94             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
95             periodSeconds: {{ .Values.liveness.periodSeconds }}
96           {{ end -}}
97           readinessProbe:
98             tcpSocket:
99               port: {{ .Values.readiness.port }}
100             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
101             periodSeconds: {{ .Values.readiness.periodSeconds }}
102           volumeMounts:
103 {{ include "common.certInitializer.volumeMount" . | indent 10 }}
104           - mountPath: /etc/localtime
105             name: localtime
106             readOnly: true
107           - mountPath: /opt/app/policy/clamp/etc/mounted
108             name: ac-http-ppnt-config-processed
109           resources: {{ include "common.resources" . | nindent 12 }}
110         {{- if .Values.nodeSelector }}
111         nodeSelector:
112 {{ toYaml .Values.nodeSelector | indent 10 }}
113         {{- end -}}
114         {{- if .Values.affinity }}
115         affinity:
116 {{ toYaml .Values.affinity | indent 10 }}
117         {{- end }}
118       serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
119       volumes:
120 {{ include "common.certInitializer.volumes" . | indent 8 }}
121         - name: localtime
122           hostPath:
123              path: /etc/localtime
124         - name: ac-http-ppnt-config
125           configMap:
126             name: {{ include "common.fullname" . }}-configmap
127             defaultMode: 0755
128         - name: ac-http-ppnt-config-processed
129           emptyDir:
130             medium: Memory
131       imagePullSecrets:
132       - name: "{{ include "common.namespace" . }}-docker-registry-key"