blob: 72a3d0ea27e4c8ba03ad237c05a2f5ca3824b27b [file] [log] [blame]
rameshiyer2701b8cc02021-09-21 15:07:50 +01001{{/*
2# ============LICENSE_START=======================================================
3# Copyright (C) 2021 Nordix Foundation. All rights reserved.
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 - 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 }}
41 volumeMounts:
42 - mountPath: /config-input
43 name: cl-k8s-ppnt-config
44 - mountPath: /config
45 name: cl-k8s-ppnt-config-processed
46 image: {{ include "repositoryGenerator.image.envsubst" . }}
47 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
48 name: {{ include "common.name" . }}-update-config
49{{ include "common.certInitializer.initContainer" . | indent 6 }}
50 containers:
51 - name: {{ include "common.name" . }}
52 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
53 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
54{{- if .Values.global.aafEnabled }}
55 command: ["sh","-c"]
56 args: ["source {{ .Values.certInitializer.credsPath }}/.ci;\
57 /opt/app/policy/clamp/bin/kubernetes-participant.sh /opt/app/policy/clamp/etc/mounted/KubernetesParticipantParameters.yaml"]
58{{- else }}
59 command: ["/opt/app/policy/clamp/bin/kubernetes-participant.sh"]
60 args: ["/opt/app/policy/clamp/etc/mounted/KubernetesParticipantParameters.yaml"]
61 env:
62 - name: KEYSTORE_PASSWD
63 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "keystore-password" "key" "password") | indent 12 }}
64 - name: TRUSTSTORE_PASSWD
65 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "truststore-password" "key" "password") | indent 12 }}
66{{- end }}
67 ports: {{ include "common.containerPorts" . | nindent 12 }}
68 # disable liveness probe when breakpoints set in debugger
69 # so K8s doesn't restart unresponsive container
70 {{- if eq .Values.liveness.enabled true }}
71 livenessProbe:
72 tcpSocket:
73 port: {{ .Values.liveness.port }}
74 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
75 periodSeconds: {{ .Values.liveness.periodSeconds }}
76 {{ end -}}
77 readinessProbe:
78 tcpSocket:
79 port: {{ .Values.readiness.port }}
80 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
81 periodSeconds: {{ .Values.readiness.periodSeconds }}
82 volumeMounts:
83{{ include "common.certInitializer.volumeMount" . | indent 10 }}
84 - mountPath: /etc/localtime
85 name: localtime
86 readOnly: true
87 - mountPath: /opt/app/policy/clamp/etc/mounted
88 name: cl-k8s-ppnt-config-processed
89 resources:
90{{ include "common.resources" . }}
91 {{- if .Values.nodeSelector }}
92 nodeSelector:
93{{ toYaml .Values.nodeSelector | indent 10 }}
94 {{- end -}}
95 {{- if .Values.affinity }}
96 affinity:
97{{ toYaml .Values.affinity | indent 10 }}
98 {{- end }}
99 serviceAccountName: {{ include "common.fullname" (dict "suffix" "create" "dot" . )}}
100 volumes:
101{{ include "common.certInitializer.volumes" . | indent 8 }}
102 - name: localtime
103 hostPath:
104 path: /etc/localtime
105 - name: cl-k8s-ppnt-config
106 configMap:
107 name: {{ include "common.fullname" . }}-configmap
108 defaultMode: 0755
109 - name: cl-k8s-ppnt-config-processed
110 emptyDir:
111 medium: Memory
112 imagePullSecrets:
113 - name: "{{ include "common.namespace" . }}-docker-registry-key"