d3a280a4d4f8031f8ea2c38b5a60e267c0ec55bc
[oom.git] / kubernetes / policy / components / policy-clamp-ac-k8s-ppnt / templates / deployment.yaml
1 {{/*
2 #  ============LICENSE_START=======================================================
3 #   Copyright (C) 2021-2023 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: RESTSERVER_USER
38           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "restserver-secret" "key" "login") | indent 10 }}
39         - name: RESTSERVER_PASSWORD
40           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "restserver-secret" "key" "password") | indent 10 }}
41         - name: SASL_JAAS_CONFIG
42           valueFrom:
43             secretKeyRef:
44               name: {{ include "common.name" . }}-ku
45               key: sasl.jaas.config
46         volumeMounts:
47         - mountPath: /config-input
48           name: ac-k8s-ppnt-config
49         - mountPath: /config
50           name: ac-k8s-ppnt-config-processed
51         image: {{ include "repositoryGenerator.image.envsubst" . }}
52         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
53         name: {{ include "common.name" . }}-update-config
54       containers:
55         - name: {{ include "common.name" . }}
56           image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
57           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
58           command: ["/opt/app/policy/clamp/bin/kubernetes-participant.sh"]
59           args: ["/opt/app/policy/clamp/etc/mounted/KubernetesParticipantParameters.yaml"]
60           ports: {{ include "common.containerPorts" . | nindent 12  }}
61           # disable liveness probe when breakpoints set in debugger
62           # so K8s doesn't restart unresponsive container
63           {{- if eq .Values.liveness.enabled true }}
64           livenessProbe:
65             tcpSocket:
66               port: {{ .Values.liveness.port }}
67             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
68             periodSeconds: {{ .Values.liveness.periodSeconds }}
69           {{ end -}}
70           readinessProbe:
71             tcpSocket:
72               port: {{ .Values.readiness.port }}
73             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
74             periodSeconds: {{ .Values.readiness.periodSeconds }}
75           volumeMounts:
76           - mountPath: /etc/localtime
77             name: localtime
78             readOnly: true
79           - mountPath: /opt/app/policy/clamp/etc/mounted
80             name: ac-k8s-ppnt-config-processed
81           resources: {{ include "common.resources" . | nindent 12 }}
82         {{- if .Values.nodeSelector }}
83         nodeSelector:
84 {{ toYaml .Values.nodeSelector | indent 10 }}
85         {{- end -}}
86         {{- if .Values.affinity }}
87         affinity:
88 {{ toYaml .Values.affinity | indent 10 }}
89         {{- end }}
90       serviceAccountName: {{ include "common.fullname" (dict "suffix" "create" "dot" . )}}
91       volumes:
92         - name: localtime
93           hostPath:
94              path: /etc/localtime
95         - name: ac-k8s-ppnt-config
96           configMap:
97             name: {{ include "common.fullname" . }}-configmap
98             defaultMode: 0755
99         - name: ac-k8s-ppnt-config-processed
100           emptyDir:
101             medium: Memory
102       {{- include "common.imagePullSecrets" . | nindent 6 }}