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