blob: 4590046a1e89dcef8b6fa259847c4bc7c066756a [file] [log] [blame]
aravind.est8d728302022-12-07 12:26:28 +00001{{/*
2# ============LICENSE_START=======================================================
3# Copyright (C) 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
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:
31{{- if .Values.config.useStrimziKafka }}
32 - command:
33 - /app/ready.py
34 args:
35 - --container-name
36 - message-router
37 env:
38 - name: NAMESPACE
39 valueFrom:
40 fieldRef:
41 apiVersion: v1
42 fieldPath: metadata.namespace
43 image: {{ include "repositoryGenerator.image.readiness" . }}
44 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
45 name: {{ include "common.name" . }}-readiness
46{{- end }}
47 - command:
48 - sh
49 args:
50 - -c
51 - "cd /config-input && for PFILE in `ls -1`; do envsubst <${PFILE} >/config/${PFILE}; done"
52 env:
53 - name: RESTSERVER_USER
54 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "restserver-secret" "key" "login") | indent 10 }}
55 - name: RESTSERVER_PASSWORD
56 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "restserver-secret" "key" "password") | indent 10 }}
57{{- if .Values.config.useStrimziKafka }}
58 - name: JAASLOGIN
59 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "policy-kafka-user" "key" "sasl.jaas.config") | indent 10 }}
60{{- end }}
61 volumeMounts:
62 - mountPath: /config-input
63 name: ac-a1pms-ppnt-config
64 - mountPath: /config
65 name: ac-a1pms-ppnt-config-processed
66 image: {{ include "repositoryGenerator.image.envsubst" . }}
67 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
68 name: {{ include "common.name" . }}-update-config
69 containers:
70 - name: {{ include "common.name" . }}
71 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
72 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
73 command: ["/opt/app/policy/clamp/bin/a1pms-participant.sh"]
74 args: ["/opt/app/policy/clamp/etc/mounted/A1pmsParticipantParameters.yaml"]
75 env:
76 - name: KEYSTORE_PASSWD
77 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "keystore-password" "key" "password") | indent 12 }}
78 - name: TRUSTSTORE_PASSWD
79 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "truststore-password" "key" "password") | indent 12 }}
80 ports: {{ include "common.containerPorts" . | nindent 12 }}
81 # disable liveness probe when breakpoints set in debugger
82 # so K8s doesn't restart unresponsive container
83 {{- if eq .Values.liveness.enabled true }}
84 livenessProbe:
85 tcpSocket:
86 port: {{ .Values.liveness.port }}
87 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
88 periodSeconds: {{ .Values.liveness.periodSeconds }}
89 {{ end -}}
90 readinessProbe:
91 tcpSocket:
92 port: {{ .Values.readiness.port }}
93 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
94 periodSeconds: {{ .Values.readiness.periodSeconds }}
95 volumeMounts:
96 - mountPath: /etc/localtime
97 name: localtime
98 readOnly: true
99 - mountPath: /opt/app/policy/clamp/etc/mounted
100 name: ac-a1pms-ppnt-config-processed
miroslavmasaryka7ac7f02023-03-01 14:12:26 +0100101 resources: {{ include "common.resources" . | nindent 12 }}
aravind.est8d728302022-12-07 12:26:28 +0000102 {{- if .Values.nodeSelector }}
103 nodeSelector:
104{{ toYaml .Values.nodeSelector | indent 10 }}
105 {{- end -}}
106 {{- if .Values.affinity }}
107 affinity:
108{{ toYaml .Values.affinity | indent 10 }}
109 {{- end }}
110 serviceAccountName: {{ include "common.fullname" (dict "suffix" "create" "dot" . )}}
111 volumes:
112 - name: localtime
113 hostPath:
114 path: /etc/localtime
115 - name: ac-a1pms-ppnt-config
116 configMap:
117 name: {{ include "common.fullname" . }}-configmap
118 defaultMode: 0755
119 - name: ac-a1pms-ppnt-config-processed
120 emptyDir:
121 medium: Memory
122 imagePullSecrets:
123 - name: "{{ include "common.namespace" . }}-docker-registry-key"