blob: 0602a8225d2df1a8b908aed414155a77bef8ae2e [file] [log] [blame]
aravind.est0879dfc2023-02-22 09:05:50 +00001{{/*
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
21apiVersion: apps/v1
22kind: Deployment
23metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
24spec:
25 selector: {{- include "common.selectors" . | nindent 4 }}
26 replicas: {{ .Values.replicaCount }}
27 template:
28 metadata: {{- include "common.templateMetadata" . | nindent 6 }}
29 spec:
30 initContainers:
aravind.est0879dfc2023-02-22 09:05:50 +000031 - 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 }}
aravind.est0879dfc2023-02-22 09:05:50 +000041 - name: SASL_JAAS_CONFIG
42 valueFrom:
43 secretKeyRef:
44 name: {{ include "common.name" . }}-ku
45 key: sasl.jaas.config
aravind.est0879dfc2023-02-22 09:05:50 +000046 volumeMounts:
47 - mountPath: /config-input
48 name: ac-kserve-ppnt-config
49 - mountPath: /config
50 name: ac-kserve-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/kserve-participant.sh"]
59 args: ["/opt/app/policy/clamp/etc/mounted/KserveParticipantParameters.yaml"]
aravind.est0879dfc2023-02-22 09:05:50 +000060 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-kserve-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-kserve-ppnt-config
96 configMap:
97 name: {{ include "common.fullname" . }}-configmap
98 defaultMode: 0755
99 - name: ac-kserve-ppnt-config-processed
100 emptyDir:
101 medium: Memory
Andreas Geisslerbd0d31a2024-03-20 09:51:32 +0100102 {{- include "common.imagePullSecrets" . | nindent 6 }}