Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 1 | # Copyright © 2017 Amdocs, AT&T, Bell Canada |
toshrajbhardwaj | f4fc1c6 | 2018-08-06 07:35:14 +0000 | [diff] [blame] | 2 | # Modifications Copyright © 2018 ZTE |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | |
| 16 | apiVersion: extensions/v1beta1 |
| 17 | kind: Deployment |
| 18 | metadata: |
| 19 | name: {{ include "common.fullname" . }} |
| 20 | namespace: {{ include "common.namespace" . }} |
| 21 | labels: |
| 22 | app: {{ include "common.name" . }} |
| 23 | chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }} |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 24 | release: {{ include "common.release" . }} |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 25 | heritage: {{ .Release.Service }} |
| 26 | spec: |
| 27 | replicas: {{ .Values.replicaCount }} |
| 28 | template: |
| 29 | metadata: |
| 30 | labels: |
| 31 | app: {{ include "common.name" . }} |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 32 | release: {{ include "common.release" . }} |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 33 | spec: |
| 34 | initContainers: |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 35 | - name: {{ include "common.name" . }}-job-completion |
| 36 | image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}" |
| 37 | imagePullPolicy: "{{ .Values.global.pullPolicy | default .Values.pullPolicy }}" |
| 38 | command: |
| 39 | - /root/job_complete.py |
| 40 | args: |
| 41 | - --job-name |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 42 | - {{ include "common.release" . }}-sdc-onboarding-be-cassandra-init |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 43 | env: |
| 44 | - name: NAMESPACE |
| 45 | valueFrom: |
| 46 | fieldRef: |
| 47 | apiVersion: v1 |
| 48 | fieldPath: metadata.namespace |
k.kedron | 2774ab1 | 2020-03-26 11:13:46 +0100 | [diff] [blame] | 49 | - name: {{ include "common.name" . }}-update-config |
| 50 | image: "{{ .Values.global.envsubstImage }}" |
| 51 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 52 | command: |
| 53 | - sh |
| 54 | args: |
| 55 | - -c |
| 56 | - "cd /config-input && for PFILE in `find . -not -type d | grep -v -F ..`; do envsubst <${PFILE} >/config-output/${PFILE}; chmod 0755 /config-output/${PFILE}; done" |
| 57 | env: |
| 58 | - name: KEYSTORE_PASS |
| 59 | valueFrom: |
| 60 | secretKeyRef: |
| 61 | name: {{ include "common.release" . }}-sdc-cs-secrets |
| 62 | key: keystore_password |
| 63 | - name: TRUSTSTORE_PASS |
| 64 | valueFrom: |
| 65 | secretKeyRef: |
| 66 | name: {{ include "common.release" . }}-sdc-cs-secrets |
| 67 | key: truststore_password |
| 68 | volumeMounts: |
| 69 | - name: {{ include "common.fullname" . }}-environments |
| 70 | mountPath: /config-input/ |
| 71 | - name: sdc-environments-output |
| 72 | mountPath: /config-output/ |
MichaelMorris | 276812c | 2020-04-28 09:34:17 +0100 | [diff] [blame] | 73 | - name: volume-permissions |
| 74 | image: {{ .Values.global.busyboxRepository | default .Values.busyboxRepository }}/{{ .Values.global.busyboxImage | default .Values.busyboxImage }} |
| 75 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 76 | command: |
| 77 | - /bin/sh |
| 78 | - -c |
| 79 | - | |
| 80 | chown -R {{ .Values.securityContext.runAsUser }}:{{ .Values.securityContext.fsGroup }} //onboard/cert |
| 81 | securityContext: |
| 82 | runAsUser: 0 |
| 83 | volumeMounts: |
| 84 | - name: {{ include "common.fullname" . }}-cert-storage |
| 85 | mountPath: "/onboard/cert" |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 86 | containers: |
| 87 | - name: {{ include "common.name" . }} |
| 88 | image: "{{ include "common.repository" . }}/{{ .Values.image }}" |
| 89 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 90 | ports: |
| 91 | - containerPort: {{ .Values.service.internalPort }} |
| 92 | - containerPort: {{ .Values.service.internalPort2 }} |
| 93 | {{ if eq .Values.liveness.enabled true }} |
| 94 | livenessProbe: |
amitjai | a4cef27 | 2019-01-08 15:29:42 +0530 | [diff] [blame] | 95 | exec: |
| 96 | command: |
MichaelMorris | b137f7e | 2020-03-15 17:44:48 +0000 | [diff] [blame] | 97 | - "/var/lib/jetty/ready-probe.sh" |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 98 | initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} |
| 99 | periodSeconds: {{ .Values.liveness.periodSeconds }} |
Brian Freeman | 6142d94 | 2019-10-02 09:50:19 -0500 | [diff] [blame] | 100 | timeoutSeconds: {{ .Values.liveness.timeoutSeconds }} |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 101 | {{ end }} |
| 102 | readinessProbe: |
| 103 | exec: |
| 104 | command: |
MichaelMorris | b137f7e | 2020-03-15 17:44:48 +0000 | [diff] [blame] | 105 | - "/var/lib/jetty/ready-probe.sh" |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 106 | initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} |
| 107 | periodSeconds: {{ .Values.readiness.periodSeconds }} |
Brian Freeman | 6142d94 | 2019-10-02 09:50:19 -0500 | [diff] [blame] | 108 | timeoutSeconds: {{ .Values.liveness.timeoutSeconds }} |
Mukul | a93baa8 | 2018-09-19 15:56:58 +0000 | [diff] [blame] | 109 | resources: |
Mandeep Khinda | 5e3f36a | 2018-09-24 15:25:42 +0000 | [diff] [blame] | 110 | {{ include "common.resources" . | indent 12 }} |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 111 | env: |
| 112 | - name: ENVNAME |
| 113 | value: {{ .Values.global.env.name }} |
| 114 | - name: JAVA_OPTIONS |
| 115 | value: {{ .Values.config.javaOptions }} |
| 116 | - name: SDC_CLUSTER_NAME |
| 117 | value: "SDC-CS-{{ .Values.global.env.name }}" |
| 118 | - name: cassandra_ssl_enabled |
| 119 | value: {{ .Values.config.cassandraSslEnabled | quote }} |
| 120 | - name: HOST_IP |
| 121 | valueFrom: |
| 122 | fieldRef: |
| 123 | fieldPath: status.podIP |
| 124 | - name: SDC_USER |
| 125 | valueFrom: |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 126 | secretKeyRef: {name: {{ include "common.release" . }}-sdc-cs-secrets, key: sdc_user} |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 127 | - name: SDC_PASSWORD |
| 128 | valueFrom: |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 129 | secretKeyRef: {name: {{ include "common.release" . }}-sdc-cs-secrets, key: sdc_password} |
kooper | 543d3aa | 2019-05-02 10:27:15 +0000 | [diff] [blame] | 130 | - name: SDC_CERT_DIR |
| 131 | value: {{ .Values.cert.certDir }} |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 132 | volumeMounts: |
k.kedron | 2774ab1 | 2020-03-26 11:13:46 +0100 | [diff] [blame] | 133 | - name: sdc-environments-output |
MichaelMorris | b137f7e | 2020-03-15 17:44:48 +0000 | [diff] [blame] | 134 | mountPath: /var/lib/jetty/chef-solo/environments/ |
k.kedron | 2774ab1 | 2020-03-26 11:13:46 +0100 | [diff] [blame] | 135 | - name: sdc-cert |
| 136 | mountPath: /var/lib/jetty/chef-solo/cookbooks/sdc-onboard-backend/files/default/org.onap.sdc.p12 |
| 137 | subPath: org.onap.sdc.p12 |
| 138 | - name: sdc-cert |
| 139 | mountPath: /var/lib/jetty/chef-solo/cookbooks/sdc-onboard-backend/files/default/org.onap.sdc.trust.jks |
| 140 | subPath: org.onap.sdc.trust.jks |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 141 | - name: {{ include "common.fullname" . }}-localtime |
| 142 | mountPath: /etc/localtime |
| 143 | readOnly: true |
| 144 | - name: {{ include "common.fullname" . }}-logs |
| 145 | mountPath: /var/log/onap |
| 146 | - name: {{ include "common.fullname" . }}-logback |
| 147 | mountPath: /tmp/logback.xml |
| 148 | subPath: logback.xml |
kooper | 543d3aa | 2019-05-02 10:27:15 +0000 | [diff] [blame] | 149 | - name: {{ include "common.fullname" . }}-cert-storage |
| 150 | mountPath: "{{ .Values.cert.certDir }}" |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 151 | lifecycle: |
| 152 | postStart: |
| 153 | exec: |
| 154 | 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] | 155 | # side car containers |
| 156 | - name: {{ include "common.name" . }}-filebeat-onap |
| 157 | image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}" |
| 158 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 159 | volumeMounts: |
| 160 | - name: {{ include "common.fullname" . }}-filebeat-conf |
| 161 | mountPath: /usr/share/filebeat/filebeat.yml |
| 162 | subPath: filebeat.yml |
| 163 | - name: {{ include "common.fullname" . }}-logs |
| 164 | mountPath: /var/log/onap |
| 165 | - name: {{ include "common.fullname" . }}-data-filebeat |
| 166 | mountPath: /usr/share/filebeat/data |
| 167 | volumes: |
| 168 | - name: {{ include "common.fullname" . }}-localtime |
| 169 | hostPath: |
| 170 | path: /etc/localtime |
k.kedron | 2774ab1 | 2020-03-26 11:13:46 +0100 | [diff] [blame] | 171 | - name: sdc-cert |
| 172 | secret: |
| 173 | secretName: sdc-cert |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 174 | - name: {{ include "common.fullname" . }}-filebeat-conf |
| 175 | configMap: |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 176 | name: {{ include "common.release" . }}-sdc-filebeat-configmap |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 177 | - name: {{ include "common.fullname" . }}-data-filebeat |
| 178 | emptyDir: {} |
| 179 | - name: {{ include "common.fullname" . }}-logback |
| 180 | configMap: |
| 181 | name : {{ include "common.fullname" . }}-logging-configmap |
| 182 | - name: {{ include "common.fullname" . }}-environments |
| 183 | configMap: |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 184 | name: {{ include "common.release" . }}-sdc-environments-configmap |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 185 | defaultMode: 0755 |
k.kedron | 2774ab1 | 2020-03-26 11:13:46 +0100 | [diff] [blame] | 186 | - name: sdc-environments-output |
| 187 | emptyDir: { medium: "Memory" } |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 188 | - name: {{ include "common.fullname" . }}-logs |
| 189 | emptyDir: {} |
kooper | 543d3aa | 2019-05-02 10:27:15 +0000 | [diff] [blame] | 190 | - name: {{ include "common.fullname" . }}-cert-storage |
| 191 | persistentVolumeClaim: |
| 192 | claimName: {{ include "common.fullname" . }}-cert |
Mandeep Khinda | 51a8b1b | 2018-04-24 20:05:32 +0000 | [diff] [blame] | 193 | imagePullSecrets: |
toshrajbhardwaj | f4fc1c6 | 2018-08-06 07:35:14 +0000 | [diff] [blame] | 194 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |