Jakub Latusek | d71d26c | 2020-10-21 13:36:29 +0200 | [diff] [blame] | 1 | {{/* |
mmis | 9597113 | 2018-07-17 00:13:13 +0100 | [diff] [blame] | 2 | # ============LICENSE_START======================================================= |
| 3 | # Copyright (C) 2018 Ericsson. All rights reserved. |
jhh | d425867 | 2020-08-09 12:08:08 -0500 | [diff] [blame] | 4 | # Modifications Copyright (C) 2020 AT&T Intellectual Property. |
Sirisha_Manchikanti | b402a59 | 2022-09-09 12:01:20 +0100 | [diff] [blame] | 5 | # Modifications Copyright © 2022 Nordix Foundation |
Andreas Geissler | f10c555 | 2023-03-21 18:09:46 +0100 | [diff] [blame] | 6 | # Modification (C) 2023 Deutsche Telekom. All rights reserved. |
mmis | 9597113 | 2018-07-17 00:13:13 +0100 | [diff] [blame] | 7 | # ================================================================================ |
| 8 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 9 | # you may not use this file except in compliance with the License. |
| 10 | # You may obtain a copy of the License at |
| 11 | # |
| 12 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | # |
| 14 | # Unless required by applicable law or agreed to in writing, software |
| 15 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 16 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 17 | # See the License for the specific language governing permissions and |
| 18 | # limitations under the License. |
| 19 | # |
| 20 | # SPDX-License-Identifier: Apache-2.0 |
| 21 | # ============LICENSE_END========================================================= |
Jakub Latusek | d71d26c | 2020-10-21 13:36:29 +0200 | [diff] [blame] | 22 | */}} |
mmis | 9597113 | 2018-07-17 00:13:13 +0100 | [diff] [blame] | 23 | |
Grzegorz-Lis | 4fad302 | 2020-07-31 10:18:21 +0200 | [diff] [blame] | 24 | apiVersion: apps/v1 |
saul.gill | ef208b0 | 2023-04-26 16:16:05 +0100 | [diff] [blame] | 25 | kind: Deployment |
Andreas Geissler | f10c555 | 2023-03-21 18:09:46 +0100 | [diff] [blame] | 26 | metadata: {{- include "common.resourceMetadata" . | nindent 2 }} |
mmis | 9597113 | 2018-07-17 00:13:13 +0100 | [diff] [blame] | 27 | spec: |
Andreas Geissler | f10c555 | 2023-03-21 18:09:46 +0100 | [diff] [blame] | 28 | selector: {{- include "common.selectors" . | nindent 4 }} |
mmis | 9597113 | 2018-07-17 00:13:13 +0100 | [diff] [blame] | 29 | replicas: {{ .Values.replicaCount }} |
mmis | 9597113 | 2018-07-17 00:13:13 +0100 | [diff] [blame] | 30 | template: |
Andreas Geissler | f10c555 | 2023-03-21 18:09:46 +0100 | [diff] [blame] | 31 | metadata: {{- include "common.templateMetadata" . | nindent 6 }} |
mmis | 9597113 | 2018-07-17 00:13:13 +0100 | [diff] [blame] | 32 | spec: |
Dominik Mizyn | b8c44b4 | 2020-04-21 10:48:27 +0200 | [diff] [blame] | 33 | initContainers: |
saul.gill | ef208b0 | 2023-04-26 16:16:05 +0100 | [diff] [blame] | 34 | {{- if not .Values.global.useStrimziKafkaPf }} |
| 35 | {{ include "common.readinessCheck.waitFor" . | nindent 6 }} |
| 36 | {{- end }} |
| 37 | - command: ["/bin/sh", "-cx"] |
| 38 | {{- if .Values.global.useStrimziKafkaPf }} |
Dominik Mizyn | b8c44b4 | 2020-04-21 10:48:27 +0200 | [diff] [blame] | 39 | args: |
saul.gill | ef208b0 | 2023-04-26 16:16:05 +0100 | [diff] [blame] | 40 | - JAASLOGIN=`echo $JAASLOGIN | tr -d '"'`; |
| 41 | cd /config-input && for PFILE in `ls -1`; |
| 42 | do envsubst <${PFILE} >/config/${PFILE}; done |
| 43 | {{ else }} |
| 44 | args: |
| 45 | - cd /config-input && for PFILE in `ls -1`; |
| 46 | do envsubst <${PFILE} >/config/${PFILE}; done |
| 47 | {{ end }} |
Dominik Mizyn | b8c44b4 | 2020-04-21 10:48:27 +0200 | [diff] [blame] | 48 | env: |
Dominik Mizyn | b8c44b4 | 2020-04-21 10:48:27 +0200 | [diff] [blame] | 49 | - name: RESTSERVER_USER |
| 50 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "restserver-creds" "key" "login") | indent 10 }} |
| 51 | - name: RESTSERVER_PASSWORD |
| 52 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "restserver-creds" "key" "password") | indent 10 }} |
saul.gill | ef208b0 | 2023-04-26 16:16:05 +0100 | [diff] [blame] | 53 | {{- if .Values.global.useStrimziKafkaPf }} |
Sirisha_Manchikanti | b402a59 | 2022-09-09 12:01:20 +0100 | [diff] [blame] | 54 | - name: JAASLOGIN |
saul.gill | ef208b0 | 2023-04-26 16:16:05 +0100 | [diff] [blame] | 55 | valueFrom: |
| 56 | secretKeyRef: |
| 57 | name: {{ include "common.name" . }}-ku |
| 58 | key: sasl.jaas.config |
| 59 | - name: KAFKA_URL |
| 60 | value: {{ include "common.release" . }}-strimzi-kafka-bootstrap:9092 |
| 61 | - name: SASL |
| 62 | value: {{ .Values.kafkaUser.authenticationType | upper }} |
| 63 | - name: GROUP_ID |
| 64 | value: {{ .Values.config.kafka.consumer.groupId }} |
| 65 | - name: PAP_TOPIC |
| 66 | value: {{ .Values.config.app.listener.policyPdpPapTopic }} |
| 67 | {{ else }} |
| 68 | - name: KAFKA_URL |
| 69 | value: message-router |
| 70 | - name: PAP_TOPIC |
| 71 | value: {{ .Values.config.app.listener.policyPdpPapTopic | upper }} |
Sirisha_Manchikanti | b402a59 | 2022-09-09 12:01:20 +0100 | [diff] [blame] | 72 | {{- end }} |
Dominik Mizyn | b8c44b4 | 2020-04-21 10:48:27 +0200 | [diff] [blame] | 73 | volumeMounts: |
| 74 | - mountPath: /config-input |
| 75 | name: apexconfig-input |
| 76 | - mountPath: /config |
| 77 | name: apexconfig |
Sylvain Desbureaux | 7c8c686 | 2020-11-19 18:02:37 +0100 | [diff] [blame] | 78 | image: {{ include "repositoryGenerator.image.envsubst" . }} |
Dominik Mizyn | b8c44b4 | 2020-04-21 10:48:27 +0200 | [diff] [blame] | 79 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 80 | name: {{ include "common.name" . }}-update-config |
mmis | 9597113 | 2018-07-17 00:13:13 +0100 | [diff] [blame] | 81 | containers: |
| 82 | - name: {{ include "common.name" . }} |
Sylvain Desbureaux | 7c8c686 | 2020-11-19 18:02:37 +0100 | [diff] [blame] | 83 | image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }} |
mmis | 9597113 | 2018-07-17 00:13:13 +0100 | [diff] [blame] | 84 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
saul.gill | ef208b0 | 2023-04-26 16:16:05 +0100 | [diff] [blame] | 85 | command: [ "/bin/sh", "-cx" ] |
| 86 | args: |
| 87 | - id apexuser; |
| 88 | cat /home/apexuser/config/OnapPfConfig.json; |
| 89 | /opt/app/policy/apex-pdp/bin/apexOnapPf.sh -c /home/apexuser/config/OnapPfConfig.json |
Andreas Geissler | f10c555 | 2023-03-21 18:09:46 +0100 | [diff] [blame] | 90 | ports: {{ include "common.containerPorts" . | nindent 12 }} |
mmis | 9597113 | 2018-07-17 00:13:13 +0100 | [diff] [blame] | 91 | {{- if eq .Values.liveness.enabled true }} |
| 92 | livenessProbe: |
| 93 | tcpSocket: |
Andreas Geissler | f10c555 | 2023-03-21 18:09:46 +0100 | [diff] [blame] | 94 | port: {{ .Values.service.internalPort }} |
mmis | 9597113 | 2018-07-17 00:13:13 +0100 | [diff] [blame] | 95 | initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} |
| 96 | periodSeconds: {{ .Values.liveness.periodSeconds }} |
| 97 | {{- end }} |
| 98 | readinessProbe: |
| 99 | tcpSocket: |
Andreas Geissler | f10c555 | 2023-03-21 18:09:46 +0100 | [diff] [blame] | 100 | port: {{ .Values.service.internalPort }} |
mmis | 9597113 | 2018-07-17 00:13:13 +0100 | [diff] [blame] | 101 | initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} |
| 102 | periodSeconds: {{ .Values.readiness.periodSeconds }} |
| 103 | env: |
| 104 | - name: REPLICAS |
| 105 | value: "{{ .Values.replicaCount }}" |
| 106 | volumeMounts: |
| 107 | - mountPath: /etc/localtime |
| 108 | name: localtime |
| 109 | readOnly: true |
| 110 | - mountPath: /var/log/onap |
| 111 | name: policy-logs |
mmis | 0d92fb7 | 2018-09-19 12:44:35 +0100 | [diff] [blame] | 112 | - mountPath: /home/apexuser/config |
mmis | 9597113 | 2018-07-17 00:13:13 +0100 | [diff] [blame] | 113 | name: apexconfig |
miroslavmasaryk | a7ac7f0 | 2023-03-01 14:12:26 +0100 | [diff] [blame] | 114 | resources: {{ include "common.resources" . | nindent 12 }} |
saul.gill | ef208b0 | 2023-04-26 16:16:05 +0100 | [diff] [blame] | 115 | {{- if .Values.nodeSelector }} |
| 116 | nodeSelector: |
mmis | 9597113 | 2018-07-17 00:13:13 +0100 | [diff] [blame] | 117 | {{ toYaml .Values.nodeSelector | indent 10 }} |
| 118 | {{- end -}} |
saul.gill | ef208b0 | 2023-04-26 16:16:05 +0100 | [diff] [blame] | 119 | {{- if .Values.affinity }} |
| 120 | affinity: |
mmis | 9597113 | 2018-07-17 00:13:13 +0100 | [diff] [blame] | 121 | {{ toYaml .Values.affinity | indent 10 }} |
| 122 | {{- end }} |
farida azmy | c117837 | 2021-04-11 12:55:33 +0200 | [diff] [blame] | 123 | serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}} |
mmis | 9597113 | 2018-07-17 00:13:13 +0100 | [diff] [blame] | 124 | volumes: |
| 125 | - name: localtime |
| 126 | hostPath: |
| 127 | path: /etc/localtime |
| 128 | - name: policy-logs |
| 129 | emptyDir: {} |
Dominik Mizyn | b8c44b4 | 2020-04-21 10:48:27 +0200 | [diff] [blame] | 130 | - name: apexconfig-input |
mmis | 9597113 | 2018-07-17 00:13:13 +0100 | [diff] [blame] | 131 | configMap: |
| 132 | name: {{ include "common.fullname" . }}-configmap |
mmis | 0d92fb7 | 2018-09-19 12:44:35 +0100 | [diff] [blame] | 133 | defaultMode: 0755 |
Dominik Mizyn | b8c44b4 | 2020-04-21 10:48:27 +0200 | [diff] [blame] | 134 | - name: apexconfig |
| 135 | emptyDir: |
| 136 | medium: Memory |
mmis | 9597113 | 2018-07-17 00:13:13 +0100 | [diff] [blame] | 137 | imagePullSecrets: |
| 138 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |