blob: 044be0ff70eaa3358bdb7889011919428978656c [file] [log] [blame]
rameshiyer2701b8cc02021-09-21 15:07:50 +01001{{/*
2# ============LICENSE_START=======================================================
FrancescoFioraEst9c79e262022-02-22 13:12:19 +00003# Copyright (C) 2021-2022 Nordix Foundation.
rameshiyer2701b8cc02021-09-21 15:07:50 +01004# ================================================================================
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 - 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 }}
Sirisha_Manchikanti73c5f002022-07-25 17:04:45 +010041{{- if .Values.config.useStrimziKafka }}
42 - name: JAASLOGIN
43 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "policy-kafka-user" "key" "sasl.jaas.config") | indent 10 }}
44{{- end }}
rameshiyer2701b8cc02021-09-21 15:07:50 +010045 volumeMounts:
46 - mountPath: /config-input
FrancescoFioraEst9c79e262022-02-22 13:12:19 +000047 name: ac-http-ppnt-config
rameshiyer2701b8cc02021-09-21 15:07:50 +010048 - mountPath: /config
FrancescoFioraEst9c79e262022-02-22 13:12:19 +000049 name: ac-http-ppnt-config-processed
rameshiyer2701b8cc02021-09-21 15:07:50 +010050 image: {{ include "repositoryGenerator.image.envsubst" . }}
51 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
52 name: {{ include "common.name" . }}-update-config
53{{ include "common.certInitializer.initContainer" . | indent 6 }}
54 containers:
55 - name: {{ include "common.name" . }}
56 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
57 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
58{{- if .Values.global.aafEnabled }}
59 command: ["sh","-c"]
60 args: ["source {{ .Values.certInitializer.credsPath }}/.ci;\
FrancescoFioraEst9c79e262022-02-22 13:12:19 +000061 /opt/app/policy/clamp/bin/http-participant.sh /opt/app/policy/clamp/etc/mounted/HttpParticipantParameters.yaml"]
rameshiyer2701b8cc02021-09-21 15:07:50 +010062{{- else }}
FrancescoFioraEst9c79e262022-02-22 13:12:19 +000063 command: ["/opt/app/policy/clamp/bin/http-participant.sh"]
64 args: ["/opt/app/policy/clamp/etc/mounted/HttpParticipantParameters.yaml"]
rameshiyer2701b8cc02021-09-21 15:07:50 +010065 env:
66 - name: KEYSTORE_PASSWD
67 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "keystore-password" "key" "password") | indent 12 }}
68 - name: TRUSTSTORE_PASSWD
69 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "truststore-password" "key" "password") | indent 12 }}
70{{- end }}
71 ports: {{ include "common.containerPorts" . | nindent 12 }}
72 # disable liveness probe when breakpoints set in debugger
73 # so K8s doesn't restart unresponsive container
74 {{- if eq .Values.liveness.enabled true }}
75 livenessProbe:
76 tcpSocket:
77 port: {{ .Values.liveness.port }}
78 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
79 periodSeconds: {{ .Values.liveness.periodSeconds }}
80 {{ end -}}
81 readinessProbe:
82 tcpSocket:
83 port: {{ .Values.readiness.port }}
84 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
85 periodSeconds: {{ .Values.readiness.periodSeconds }}
86 volumeMounts:
87{{ include "common.certInitializer.volumeMount" . | indent 10 }}
88 - mountPath: /etc/localtime
89 name: localtime
90 readOnly: true
91 - mountPath: /opt/app/policy/clamp/etc/mounted
FrancescoFioraEst9c79e262022-02-22 13:12:19 +000092 name: ac-http-ppnt-config-processed
rameshiyer2701b8cc02021-09-21 15:07:50 +010093 resources:
94{{ include "common.resources" . }}
95 {{- if .Values.nodeSelector }}
96 nodeSelector:
97{{ toYaml .Values.nodeSelector | indent 10 }}
98 {{- end -}}
99 {{- if .Values.affinity }}
100 affinity:
101{{ toYaml .Values.affinity | indent 10 }}
102 {{- end }}
FrancescoFioraEst9c79e262022-02-22 13:12:19 +0000103 serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
rameshiyer2701b8cc02021-09-21 15:07:50 +0100104 volumes:
105{{ include "common.certInitializer.volumes" . | indent 8 }}
106 - name: localtime
107 hostPath:
108 path: /etc/localtime
FrancescoFioraEst9c79e262022-02-22 13:12:19 +0000109 - name: ac-http-ppnt-config
rameshiyer2701b8cc02021-09-21 15:07:50 +0100110 configMap:
111 name: {{ include "common.fullname" . }}-configmap
112 defaultMode: 0755
FrancescoFioraEst9c79e262022-02-22 13:12:19 +0000113 - name: ac-http-ppnt-config-processed
rameshiyer2701b8cc02021-09-21 15:07:50 +0100114 emptyDir:
115 medium: Memory
116 imagePullSecrets:
117 - name: "{{ include "common.namespace" . }}-docker-registry-key"