Jakub Latusek | d8eaff6 | 2020-10-21 13:36:29 +0200 | [diff] [blame] | 1 | {{/* |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 2 | # Copyright © 2017 Amdocs, AT&T, Bell Canada |
toshrajbhardwaj | f4fc1c6 | 2018-08-06 07:35:14 +0000 | [diff] [blame] | 3 | # Modifications Copyright © 2018 ZTE |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [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. |
Jakub Latusek | d8eaff6 | 2020-10-21 13:36:29 +0200 | [diff] [blame] | 16 | */}} |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 17 | |
kwasiel | 59cc6a4 | 2020-07-23 10:02:49 +0000 | [diff] [blame] | 18 | apiVersion: apps/v1 |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [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" . }} |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 27 | heritage: {{ .Release.Service }} |
| 28 | spec: |
kwasiel | 59cc6a4 | 2020-07-23 10:02:49 +0000 | [diff] [blame] | 29 | selector: |
| 30 | matchLabels: |
| 31 | app: {{ include "common.name" . }} |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 32 | replicas: {{ .Values.replicaCount }} |
| 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" . }} |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 38 | spec: |
ChrisC | 742a7b2 | 2020-09-04 11:29:57 +0200 | [diff] [blame] | 39 | initContainers: {{ include "common.certInitializer.initContainer" . | nindent 6 }} |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 40 | - name: {{ include "common.name" . }}-job-completion |
Sylvain Desbureaux | 1694e1d | 2020-08-21 09:58:25 +0200 | [diff] [blame] | 41 | image: "{{ include "common.repository" . }}/{{ .Values.global.readinessImage }}" |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 42 | imagePullPolicy: "{{ .Values.global.pullPolicy | default .Values.pullPolicy }}" |
| 43 | command: |
Sylvain Desbureaux | 1694e1d | 2020-08-21 09:58:25 +0200 | [diff] [blame] | 44 | - /app/ready.py |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 45 | args: |
| 46 | - --job-name |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 47 | - {{ include "common.release" . }}-sdc-onboarding-be-cassandra-init |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 48 | env: |
| 49 | - name: NAMESPACE |
| 50 | valueFrom: |
| 51 | fieldRef: |
| 52 | apiVersion: v1 |
| 53 | fieldPath: metadata.namespace |
ChrisC | 3217234 | 2020-10-02 16:39:13 +0200 | [diff] [blame] | 54 | resources: |
| 55 | limits: |
| 56 | cpu: 100m |
| 57 | memory: 100Mi |
| 58 | requests: |
| 59 | cpu: 3m |
| 60 | memory: 20Mi |
ChrisC | 742a7b2 | 2020-09-04 11:29:57 +0200 | [diff] [blame] | 61 | {{- if .Values.global.aafEnabled }} |
k.kedron | 2774ab1 | 2020-03-26 11:13:46 +0100 | [diff] [blame] | 62 | - name: {{ include "common.name" . }}-update-config |
| 63 | image: "{{ .Values.global.envsubstImage }}" |
| 64 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 65 | command: |
ChrisC | 742a7b2 | 2020-09-04 11:29:57 +0200 | [diff] [blame] | 66 | - sh |
k.kedron | 2774ab1 | 2020-03-26 11:13:46 +0100 | [diff] [blame] | 67 | args: |
ChrisC | 742a7b2 | 2020-09-04 11:29:57 +0200 | [diff] [blame] | 68 | - "-c" |
| 69 | - | |
| 70 | export $(grep '^c' {{ .Values.certInitializer.credsPath }}/mycreds.prop | xargs -0) |
| 71 | export KEYSTORE_PASS=$cadi_keystore_password_p12 |
| 72 | export KEYMANAGER_PASS=$cadi_keystore_password_p12 |
| 73 | export TRUSTSTORE_PASS=$cadi_truststore_password |
| 74 | cp {{ .Values.certInitializer.credsPath }}/{{ .Values.certInitializer.keystoreFile }} /config-output |
| 75 | cp {{ .Values.certInitializer.credsPath }}/{{ .Values.certInitializer.truststoreFile }} /config-output |
| 76 | cd /config-input && \ |
| 77 | for PFILE in `find . -not -type d | grep -v -F ..` |
| 78 | do |
| 79 | envsubst <${PFILE} >/config-output/${PFILE} |
| 80 | chmod 0755 /config-output/${PFILE} |
| 81 | done |
| 82 | volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 10 }} |
k.kedron | 2774ab1 | 2020-03-26 11:13:46 +0100 | [diff] [blame] | 83 | - name: {{ include "common.fullname" . }}-environments |
| 84 | mountPath: /config-input/ |
| 85 | - name: sdc-environments-output |
| 86 | mountPath: /config-output/ |
ChrisC | 3217234 | 2020-10-02 16:39:13 +0200 | [diff] [blame] | 87 | resources: |
| 88 | limits: |
| 89 | cpu: 100m |
| 90 | memory: 100Mi |
| 91 | requests: |
| 92 | cpu: 3m |
| 93 | memory: 20Mi |
ChrisC | 742a7b2 | 2020-09-04 11:29:57 +0200 | [diff] [blame] | 94 | {{- end }} |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 95 | containers: |
| 96 | - name: {{ include "common.name" . }} |
| 97 | image: "{{ include "common.repository" . }}/{{ .Values.image }}" |
| 98 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 99 | ports: |
| 100 | - containerPort: {{ .Values.service.internalPort }} |
| 101 | - containerPort: {{ .Values.service.internalPort2 }} |
| 102 | {{ if eq .Values.liveness.enabled true }} |
| 103 | livenessProbe: |
amitjai | a4cef27 | 2019-01-08 15:29:42 +0530 | [diff] [blame] | 104 | exec: |
| 105 | command: |
MichaelMorris | b137f7e | 2020-03-15 17:44:48 +0000 | [diff] [blame] | 106 | - "/var/lib/jetty/ready-probe.sh" |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 107 | initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} |
| 108 | periodSeconds: {{ .Values.liveness.periodSeconds }} |
Brian Freeman | 6142d94 | 2019-10-02 09:50:19 -0500 | [diff] [blame] | 109 | timeoutSeconds: {{ .Values.liveness.timeoutSeconds }} |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 110 | {{ end }} |
| 111 | readinessProbe: |
| 112 | exec: |
| 113 | command: |
MichaelMorris | b137f7e | 2020-03-15 17:44:48 +0000 | [diff] [blame] | 114 | - "/var/lib/jetty/ready-probe.sh" |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 115 | initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} |
| 116 | periodSeconds: {{ .Values.readiness.periodSeconds }} |
Brian Freeman | 6142d94 | 2019-10-02 09:50:19 -0500 | [diff] [blame] | 117 | timeoutSeconds: {{ .Values.liveness.timeoutSeconds }} |
ChrisC | 3217234 | 2020-10-02 16:39:13 +0200 | [diff] [blame] | 118 | resources: {{ include "common.resources" . | nindent 12 }} |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 119 | env: |
| 120 | - name: ENVNAME |
ChrisC | 742a7b2 | 2020-09-04 11:29:57 +0200 | [diff] [blame] | 121 | value: {{ .Values.env.name }} |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 122 | - name: JAVA_OPTIONS |
| 123 | value: {{ .Values.config.javaOptions }} |
| 124 | - name: SDC_CLUSTER_NAME |
ChrisC | 742a7b2 | 2020-09-04 11:29:57 +0200 | [diff] [blame] | 125 | value: "SDC-CS-{{ .Values.env.name }}" |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 126 | - name: cassandra_ssl_enabled |
| 127 | value: {{ .Values.config.cassandraSslEnabled | quote }} |
| 128 | - name: HOST_IP |
| 129 | valueFrom: |
| 130 | fieldRef: |
| 131 | fieldPath: status.podIP |
| 132 | - name: SDC_USER |
| 133 | valueFrom: |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 134 | secretKeyRef: {name: {{ include "common.release" . }}-sdc-cs-secrets, key: sdc_user} |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 135 | - name: SDC_PASSWORD |
| 136 | valueFrom: |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 137 | secretKeyRef: {name: {{ include "common.release" . }}-sdc-cs-secrets, key: sdc_password} |
kooper | 543d3aa | 2019-05-02 10:27:15 +0000 | [diff] [blame] | 138 | - name: SDC_CERT_DIR |
| 139 | value: {{ .Values.cert.certDir }} |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 140 | volumeMounts: |
k.kedron | 2774ab1 | 2020-03-26 11:13:46 +0100 | [diff] [blame] | 141 | - name: sdc-environments-output |
MichaelMorris | b137f7e | 2020-03-15 17:44:48 +0000 | [diff] [blame] | 142 | mountPath: /var/lib/jetty/chef-solo/environments/ |
ChrisC | 742a7b2 | 2020-09-04 11:29:57 +0200 | [diff] [blame] | 143 | - name: sdc-environments-output |
k.kedron | 2774ab1 | 2020-03-26 11:13:46 +0100 | [diff] [blame] | 144 | mountPath: /var/lib/jetty/chef-solo/cookbooks/sdc-onboard-backend/files/default/org.onap.sdc.p12 |
| 145 | subPath: org.onap.sdc.p12 |
ChrisC | 742a7b2 | 2020-09-04 11:29:57 +0200 | [diff] [blame] | 146 | - name: sdc-environments-output |
k.kedron | 2774ab1 | 2020-03-26 11:13:46 +0100 | [diff] [blame] | 147 | mountPath: /var/lib/jetty/chef-solo/cookbooks/sdc-onboard-backend/files/default/org.onap.sdc.trust.jks |
| 148 | subPath: org.onap.sdc.trust.jks |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 149 | - name: {{ include "common.fullname" . }}-localtime |
| 150 | mountPath: /etc/localtime |
| 151 | readOnly: true |
| 152 | - name: {{ include "common.fullname" . }}-logs |
| 153 | mountPath: /var/log/onap |
| 154 | - name: {{ include "common.fullname" . }}-logback |
| 155 | mountPath: /tmp/logback.xml |
| 156 | subPath: logback.xml |
| 157 | lifecycle: |
| 158 | postStart: |
| 159 | exec: |
| 160 | command: ["/bin/sh", "-c", "export LOG=wait_logback.log; touch $LOG; export SRC=/tmp/logback.xml; export DST=/var/lib/jetty/config/onboarding-be/; while [ ! -e $DST ]; do echo 'Waiting for $DST...' >> $LOG; sleep 5; done; sleep 2; /bin/cp -f $SRC $DST; echo 'Done' >> $LOG"] |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 161 | # side car containers |
| 162 | - name: {{ include "common.name" . }}-filebeat-onap |
| 163 | image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}" |
| 164 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 165 | volumeMounts: |
| 166 | - name: {{ include "common.fullname" . }}-filebeat-conf |
| 167 | mountPath: /usr/share/filebeat/filebeat.yml |
| 168 | subPath: filebeat.yml |
| 169 | - name: {{ include "common.fullname" . }}-logs |
| 170 | mountPath: /var/log/onap |
| 171 | - name: {{ include "common.fullname" . }}-data-filebeat |
| 172 | mountPath: /usr/share/filebeat/data |
ChrisC | 3217234 | 2020-10-02 16:39:13 +0200 | [diff] [blame] | 173 | resources: |
| 174 | limits: |
| 175 | cpu: 100m |
| 176 | memory: 100Mi |
| 177 | requests: |
| 178 | cpu: 3m |
| 179 | memory: 20Mi |
ChrisC | 742a7b2 | 2020-09-04 11:29:57 +0200 | [diff] [blame] | 180 | volumes: {{ include "common.certInitializer.volumes" . | nindent 6 }} |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 181 | - name: {{ include "common.fullname" . }}-localtime |
| 182 | hostPath: |
| 183 | path: /etc/localtime |
| 184 | - name: {{ include "common.fullname" . }}-filebeat-conf |
| 185 | configMap: |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 186 | name: {{ include "common.release" . }}-sdc-filebeat-configmap |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 187 | - name: {{ include "common.fullname" . }}-data-filebeat |
| 188 | emptyDir: {} |
| 189 | - name: {{ include "common.fullname" . }}-logback |
| 190 | configMap: |
| 191 | name : {{ include "common.fullname" . }}-logging-configmap |
| 192 | - name: {{ include "common.fullname" . }}-environments |
| 193 | configMap: |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 194 | name: {{ include "common.release" . }}-sdc-environments-configmap |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 195 | defaultMode: 0755 |
k.kedron | 2774ab1 | 2020-03-26 11:13:46 +0100 | [diff] [blame] | 196 | - name: sdc-environments-output |
| 197 | emptyDir: { medium: "Memory" } |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 198 | - name: {{ include "common.fullname" . }}-logs |
| 199 | emptyDir: {} |
| 200 | imagePullSecrets: |
toshrajbhardwaj | f4fc1c6 | 2018-08-06 07:35:14 +0000 | [diff] [blame] | 201 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |