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