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
9 # http://www.apache.org/licenses/LICENSE-2.0
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.
17 # SPDX-License-Identifier: Apache-2.0
18 # ============LICENSE_END=========================================================
23 metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
25 selector: {{- include "common.selectors" . | nindent 4 }}
26 replicas: {{ .Values.replicaCount }}
28 metadata: {{- include "common.templateMetadata" . | nindent 6 }}
35 - "cd /config-input && for PFILE in `ls -1`; do envsubst <${PFILE} >/config/${PFILE}; done"
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
44 name: {{ include "common.name" . }}-ku
47 - mountPath: /config-input
48 name: ac-k8s-ppnt-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
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 }}
66 port: {{ .Values.liveness.port }}
67 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
68 periodSeconds: {{ .Values.liveness.periodSeconds }}
72 port: {{ .Values.readiness.port }}
73 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
74 periodSeconds: {{ .Values.readiness.periodSeconds }}
76 - mountPath: /opt/app/policy/clamp/etc/mounted
77 name: ac-k8s-ppnt-config-processed
78 resources: {{ include "common.resources" . | nindent 12 }}
79 {{- if .Values.nodeSelector }}
81 {{ toYaml .Values.nodeSelector | indent 10 }}
83 {{- if .Values.affinity }}
85 {{ toYaml .Values.affinity | indent 10 }}
87 serviceAccountName: {{ include "common.fullname" (dict "suffix" "create" "dot" . )}}
89 - name: ac-k8s-ppnt-config
91 name: {{ include "common.fullname" . }}-configmap
93 - name: ac-k8s-ppnt-config-processed
96 {{- include "common.imagePullSecrets" . | nindent 6 }}