rameshiyer27 | 01b8cc0 | 2021-09-21 15:07:50 +0100 | [diff] [blame] | 1 | {{/* |
| 2 | # ============LICENSE_START======================================================= |
efiacor | 6910bbe | 2023-03-03 14:53:16 +0000 | [diff] [blame^] | 3 | # Copyright (C) 2021-2023 Nordix Foundation. |
rameshiyer27 | 01b8cc0 | 2021-09-21 15:07:50 +0100 | [diff] [blame] | 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 | |
| 21 | apiVersion: apps/v1 |
| 22 | kind: Deployment |
| 23 | metadata: {{- include "common.resourceMetadata" . | nindent 2 }} |
| 24 | spec: |
| 25 | selector: {{- include "common.selectors" . | nindent 4 }} |
| 26 | replicas: {{ .Values.replicaCount }} |
| 27 | template: |
| 28 | metadata: {{- include "common.templateMetadata" . | nindent 6 }} |
| 29 | spec: |
| 30 | initContainers: |
efiacor | 6910bbe | 2023-03-03 14:53:16 +0000 | [diff] [blame^] | 31 | {{- if not .Values.global.useStrimziKafka }} |
| 32 | {{ include "common.readinessCheck.waitFor" . | nindent 6 }} |
saul.gill | 5e61140 | 2023-03-02 11:49:23 +0000 | [diff] [blame] | 33 | {{- end }} |
rameshiyer27 | 01b8cc0 | 2021-09-21 15:07:50 +0100 | [diff] [blame] | 34 | - command: |
| 35 | - sh |
| 36 | args: |
| 37 | - -c |
| 38 | - "cd /config-input && for PFILE in `ls -1`; do envsubst <${PFILE} >/config/${PFILE}; done" |
| 39 | env: |
FrancescoFioraEst | 9c79e26 | 2022-02-22 13:12:19 +0000 | [diff] [blame] | 40 | - name: API_USER |
| 41 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "api-secret" "key" "login") | indent 10 }} |
| 42 | - name: API_PASSWORD |
| 43 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "api-secret" "key" "password") | indent 10 }} |
| 44 | - name: PAP_USER |
| 45 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "pap-secret" "key" "login") | indent 10 }} |
| 46 | - name: PAP_PASSWORD |
| 47 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "pap-secret" "key" "password") | indent 10 }} |
rameshiyer27 | 01b8cc0 | 2021-09-21 15:07:50 +0100 | [diff] [blame] | 48 | - name: RESTSERVER_USER |
| 49 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "restserver-secret" "key" "login") | indent 10 }} |
| 50 | - name: RESTSERVER_PASSWORD |
| 51 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "restserver-secret" "key" "password") | indent 10 }} |
efiacor | 6910bbe | 2023-03-03 14:53:16 +0000 | [diff] [blame^] | 52 | {{- if .Values.global.useStrimziKafka }} |
| 53 | - name: SASL_JAAS_CONFIG |
| 54 | valueFrom: |
| 55 | secretKeyRef: |
| 56 | name: {{ include "common.name" . }}-ku |
| 57 | key: sasl.jaas.config |
Sirisha_Manchikanti | 73c5f00 | 2022-07-25 17:04:45 +0100 | [diff] [blame] | 58 | {{- end }} |
rameshiyer27 | 01b8cc0 | 2021-09-21 15:07:50 +0100 | [diff] [blame] | 59 | volumeMounts: |
| 60 | - mountPath: /config-input |
FrancescoFioraEst | 9c79e26 | 2022-02-22 13:12:19 +0000 | [diff] [blame] | 61 | name: ac-pf-ppnt-config |
rameshiyer27 | 01b8cc0 | 2021-09-21 15:07:50 +0100 | [diff] [blame] | 62 | - mountPath: /config |
FrancescoFioraEst | 9c79e26 | 2022-02-22 13:12:19 +0000 | [diff] [blame] | 63 | name: ac-pf-ppnt-config-processed |
rameshiyer27 | 01b8cc0 | 2021-09-21 15:07:50 +0100 | [diff] [blame] | 64 | image: {{ include "repositoryGenerator.image.envsubst" . }} |
| 65 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 66 | name: {{ include "common.name" . }}-update-config |
| 67 | {{ include "common.certInitializer.initContainer" . | indent 6 }} |
| 68 | containers: |
| 69 | - name: {{ include "common.name" . }} |
| 70 | image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }} |
| 71 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 72 | {{- if .Values.global.aafEnabled }} |
| 73 | command: ["sh","-c"] |
| 74 | args: ["source {{ .Values.certInitializer.credsPath }}/.ci;\ |
FrancescoFioraEst | 9c79e26 | 2022-02-22 13:12:19 +0000 | [diff] [blame] | 75 | /opt/app/policy/clamp/bin/policy-participant.sh /opt/app/policy/clamp/etc/mounted/PolicyParticipantParameters.yaml"] |
rameshiyer27 | 01b8cc0 | 2021-09-21 15:07:50 +0100 | [diff] [blame] | 76 | {{- else }} |
FrancescoFioraEst | 9c79e26 | 2022-02-22 13:12:19 +0000 | [diff] [blame] | 77 | command: ["/opt/app/policy/clamp/bin/policy-participant.sh"] |
| 78 | args: ["/opt/app/policy/clamp/etc/mounted/PolicyParticipantParameters.yaml"] |
rameshiyer27 | 01b8cc0 | 2021-09-21 15:07:50 +0100 | [diff] [blame] | 79 | env: |
| 80 | - name: KEYSTORE_PASSWD |
| 81 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "keystore-password" "key" "password") | indent 12 }} |
| 82 | - name: TRUSTSTORE_PASSWD |
| 83 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "truststore-password" "key" "password") | indent 12 }} |
| 84 | {{- end }} |
| 85 | ports: {{ include "common.containerPorts" . | nindent 12 }} |
| 86 | # disable liveness probe when breakpoints set in debugger |
| 87 | # so K8s doesn't restart unresponsive container |
| 88 | {{- if eq .Values.liveness.enabled true }} |
| 89 | livenessProbe: |
| 90 | tcpSocket: |
| 91 | port: {{ .Values.liveness.port }} |
| 92 | initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} |
| 93 | periodSeconds: {{ .Values.liveness.periodSeconds }} |
| 94 | {{ end -}} |
| 95 | readinessProbe: |
| 96 | tcpSocket: |
| 97 | port: {{ .Values.readiness.port }} |
| 98 | initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} |
| 99 | periodSeconds: {{ .Values.readiness.periodSeconds }} |
| 100 | volumeMounts: |
| 101 | {{ include "common.certInitializer.volumeMount" . | indent 10 }} |
| 102 | - mountPath: /etc/localtime |
| 103 | name: localtime |
| 104 | readOnly: true |
| 105 | - mountPath: /opt/app/policy/clamp/etc/mounted |
FrancescoFioraEst | 9c79e26 | 2022-02-22 13:12:19 +0000 | [diff] [blame] | 106 | name: ac-pf-ppnt-config-processed |
miroslavmasaryk | a7ac7f0 | 2023-03-01 14:12:26 +0100 | [diff] [blame] | 107 | resources: {{ include "common.resources" . | nindent 12 }} |
rameshiyer27 | 01b8cc0 | 2021-09-21 15:07:50 +0100 | [diff] [blame] | 108 | {{- if .Values.nodeSelector }} |
| 109 | nodeSelector: |
| 110 | {{ toYaml .Values.nodeSelector | indent 10 }} |
| 111 | {{- end -}} |
| 112 | {{- if .Values.affinity }} |
| 113 | affinity: |
| 114 | {{ toYaml .Values.affinity | indent 10 }} |
| 115 | {{- end }} |
FrancescoFioraEst | 9c79e26 | 2022-02-22 13:12:19 +0000 | [diff] [blame] | 116 | serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}} |
rameshiyer27 | 01b8cc0 | 2021-09-21 15:07:50 +0100 | [diff] [blame] | 117 | volumes: |
| 118 | {{ include "common.certInitializer.volumes" . | indent 8 }} |
| 119 | - name: localtime |
| 120 | hostPath: |
| 121 | path: /etc/localtime |
FrancescoFioraEst | 9c79e26 | 2022-02-22 13:12:19 +0000 | [diff] [blame] | 122 | - name: ac-pf-ppnt-config |
rameshiyer27 | 01b8cc0 | 2021-09-21 15:07:50 +0100 | [diff] [blame] | 123 | configMap: |
| 124 | name: {{ include "common.fullname" . }}-configmap |
| 125 | defaultMode: 0755 |
FrancescoFioraEst | 9c79e26 | 2022-02-22 13:12:19 +0000 | [diff] [blame] | 126 | - name: ac-pf-ppnt-config-processed |
rameshiyer27 | 01b8cc0 | 2021-09-21 15:07:50 +0100 | [diff] [blame] | 127 | emptyDir: |
| 128 | medium: Memory |
| 129 | imagePullSecrets: |
| 130 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |