Jakub Latusek | fcf6784 | 2020-10-21 13:36:29 +0200 | [diff] [blame] | 1 | {{/* |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 2 | # Copyright © 2017 Amdocs, Bell Canada |
| 3 | # Modifications Copyright © 2018 AT&T |
| 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. |
Jakub Latusek | fcf6784 | 2020-10-21 13:36:29 +0200 | [diff] [blame] | 16 | */}} |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 17 | |
Magdalena_Biernacka | 7d0dcbe | 2020-07-12 23:21:43 +0200 | [diff] [blame] | 18 | apiVersion: apps/v1 |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 19 | kind: Deployment |
| 20 | metadata: |
| 21 | name: {{ include "common.fullname" . }} |
| 22 | namespace: {{ include "common.namespace" . }} |
| 23 | labels: |
| 24 | app: {{ include "common.name" . }} |
| 25 | chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }} |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 26 | release: {{ include "common.release" . }} |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 27 | heritage: {{ .Release.Service }} |
| 28 | spec: |
| 29 | replicas: {{ .Values.replicaCount }} |
Magdalena_Biernacka | 7d0dcbe | 2020-07-12 23:21:43 +0200 | [diff] [blame] | 30 | selector: |
| 31 | matchLabels: |
| 32 | app: {{ include "common.name" . }} |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 33 | template: |
| 34 | metadata: |
| 35 | labels: |
| 36 | app: {{ include "common.name" . }} |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 37 | release: {{ include "common.release" . }} |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 38 | spec: |
| 39 | initContainers: |
| 40 | - command: |
Sylvain Desbureaux | 1694e1d | 2020-08-21 09:58:25 +0200 | [diff] [blame] | 41 | - /app/ready.py |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 42 | args: |
sebdet | 5c44988 | 2021-01-13 11:35:56 +0100 | [diff] [blame] | 43 | - --job-name |
| 44 | - {{ include "common.release" . }}-policy-clamp-galera-config |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 45 | env: |
| 46 | - name: NAMESPACE |
| 47 | valueFrom: |
| 48 | fieldRef: |
| 49 | apiVersion: v1 |
| 50 | fieldPath: metadata.namespace |
Sylvain Desbureaux | f83984f | 2020-11-21 21:32:40 +0100 | [diff] [blame] | 51 | image: {{ include "repositoryGenerator.image.readiness" . }} |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 52 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 53 | name: {{ include "common.name" . }}-readiness |
ChrisC | 2325efd | 2020-09-11 18:39:23 +0200 | [diff] [blame] | 54 | {{ include "common.certInitializer.initContainer" . | indent 6 }} |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 55 | containers: |
| 56 | # side car containers |
Sylvain Desbureaux | 8c2a162 | 2020-04-22 10:50:26 +0200 | [diff] [blame] | 57 | {{ if .Values.global.centralizedLoggingEnabled }}{{ include "common.log.sidecar" . | nindent 8 }}{{ end }} |
| 58 | # main container |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 59 | - name: {{ include "common.name" . }} |
Sylvain Desbureaux | f83984f | 2020-11-21 21:32:40 +0100 | [diff] [blame] | 60 | image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }} |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 61 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
ChrisC | 2325efd | 2020-09-11 18:39:23 +0200 | [diff] [blame] | 62 | command: |
| 63 | - sh |
sebdet | 5c44988 | 2021-01-13 11:35:56 +0100 | [diff] [blame] | 64 | workingDir: "/opt/policy/clamp/" |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 65 | args: |
ChrisC | 2325efd | 2020-09-11 18:39:23 +0200 | [diff] [blame] | 66 | - -c |
| 67 | - | |
sebdet | ac61d3c | 2020-10-23 16:06:55 +0200 | [diff] [blame] | 68 | {{- if .Values.global.aafEnabled }} |
ChrisC | 2325efd | 2020-09-11 18:39:23 +0200 | [diff] [blame] | 69 | export $(grep '^cadi_' {{ .Values.certInitializer.credsPath }}/org.onap.clamp.cred.props | xargs -0) |
sebdet | 9bac0c3 | 2021-04-22 10:23:53 +0200 | [diff] [blame] | 70 | export SDC_CLIENT_PASSWORD_ENC=`java -jar {{ .Values.certInitializer.credsPath }}/aaf-cadi-aaf-2.1.20-full.jar cadi digest ${SDC_CLIENT_PASSWORD} {{ .Values.certInitializer.credsPath }}/org.onap.clamp.keyfile`; |
| 71 | envsubst < "/opt/policy/clamp/sdc-controllers-config.json" > "/opt/policy/clamp/sdc-controllers-config-pass.json" |
ChrisC | 2325efd | 2020-09-11 18:39:23 +0200 | [diff] [blame] | 72 | {{- end }} |
sebdet | 5c44988 | 2021-01-13 11:35:56 +0100 | [diff] [blame] | 73 | java -Djava.security.egd=file:/dev/./urandom ${JAVA_RAM_CONFIGURATION} -jar ./policy-clamp-backend.jar |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 74 | ports: |
| 75 | - containerPort: {{ .Values.service.internalPort }} |
| 76 | # disable liveness probe when breakpoints set in debugger |
| 77 | # so K8s doesn't restart unresponsive container |
| 78 | {{- if eq .Values.liveness.enabled true }} |
| 79 | livenessProbe: |
| 80 | tcpSocket: |
| 81 | port: {{ .Values.service.internalPort }} |
| 82 | initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} |
| 83 | periodSeconds: {{ .Values.liveness.periodSeconds }} |
| 84 | {{ end -}} |
| 85 | readinessProbe: |
| 86 | tcpSocket: |
| 87 | port: {{ .Values.service.internalPort }} |
| 88 | initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} |
| 89 | periodSeconds: {{ .Values.readiness.periodSeconds }} |
ChrisC | 2325efd | 2020-09-11 18:39:23 +0200 | [diff] [blame] | 90 | volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 10 }} |
Sylvain Desbureaux | 8c2a162 | 2020-04-22 10:50:26 +0200 | [diff] [blame] | 91 | - name: logs |
| 92 | mountPath: {{ .Values.log.path }} |
sebdet | 5c44988 | 2021-01-13 11:35:56 +0100 | [diff] [blame] | 93 | - mountPath: /opt/policy/clamp/sdc-controllers-config.json |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 94 | name: {{ include "common.fullname" . }}-config |
| 95 | subPath: sdc-controllers-config.json |
sebdet | 5c44988 | 2021-01-13 11:35:56 +0100 | [diff] [blame] | 96 | - mountPath: /opt/policy/clamp/application.properties |
ChrisC | 2325efd | 2020-09-11 18:39:23 +0200 | [diff] [blame] | 97 | name: {{ include "common.fullname" . }}-config |
| 98 | subPath: application.properties |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 99 | env: |
JulienBe | 26df320 | 2020-04-10 16:50:08 +0200 | [diff] [blame] | 100 | - name: MYSQL_USER |
sebdet | 5c44988 | 2021-01-13 11:35:56 +0100 | [diff] [blame] | 101 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-creds" "key" "login") | indent 12 }} |
JulienBe | 26df320 | 2020-04-10 16:50:08 +0200 | [diff] [blame] | 102 | - name: MYSQL_PASSWORD |
sebdet | 5c44988 | 2021-01-13 11:35:56 +0100 | [diff] [blame] | 103 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-creds" "key" "password") | indent 12 }} |
sebdet | 9bac0c3 | 2021-04-22 10:23:53 +0200 | [diff] [blame] | 104 | - name: SDC_CLIENT_PASSWORD |
| 105 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "sdc-creds" "key" "password") | indent 12 }} |
sebdet | ac61d3c | 2020-10-23 16:06:55 +0200 | [diff] [blame] | 106 | {{- if ne "unlimited" (include "common.flavor" .) }} |
| 107 | - name: JAVA_RAM_CONFIGURATION |
| 108 | value: -XX:MinRAMPercentage=50 -XX:MaxRAMPercentage=75 |
| 109 | {{- end }} |
| 110 | resources: {{ include "common.resources" . | nindent 12 }} |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 111 | {{- if .Values.nodeSelector }} |
sebdet | ac61d3c | 2020-10-23 16:06:55 +0200 | [diff] [blame] | 112 | nodeSelector: {{ toYaml .Values.nodeSelector | nindent 10 }} |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 113 | {{- end -}} |
| 114 | {{- if .Values.affinity }} |
sebdet | ac61d3c | 2020-10-23 16:06:55 +0200 | [diff] [blame] | 115 | affinity: {{ toYaml .Values.affinity | nindent 10 }} |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 116 | {{- end }} |
ChrisC | 2325efd | 2020-09-11 18:39:23 +0200 | [diff] [blame] | 117 | volumes: {{ include "common.certInitializer.volumes" . | nindent 8 }} |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 118 | - name: {{ include "common.fullname" . }}-config |
| 119 | configMap: |
sebdet | 5c44988 | 2021-01-13 11:35:56 +0100 | [diff] [blame] | 120 | name: {{ include "common.fullname" . }}-configmap |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 121 | items: |
| 122 | - key: sdc-controllers-config.json |
| 123 | path: sdc-controllers-config.json |
ChrisC | 2325efd | 2020-09-11 18:39:23 +0200 | [diff] [blame] | 124 | - key: application.properties |
| 125 | path: application.properties |
Sylvain Desbureaux | 8c2a162 | 2020-04-22 10:50:26 +0200 | [diff] [blame] | 126 | - name: logs |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 127 | emptyDir: {} |
Sylvain Desbureaux | 8c2a162 | 2020-04-22 10:50:26 +0200 | [diff] [blame] | 128 | {{ if .Values.global.centralizedLoggingEnabled }}{{ include "common.log.volumes" . | nindent 8 }}{{ end }} |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 129 | imagePullSecrets: |
| 130 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |