Jakub Latusek | 44f0fdd | 2020-10-21 13:36:29 +0200 | [diff] [blame] | 1 | {{/* |
rope252 | cd2142c | 2018-09-17 12:35:36 +0100 | [diff] [blame] | 2 | # ============LICENSE_START======================================================= |
| 3 | # Copyright (C) 2018 Ericsson. All rights reserved. |
Krzysztof Gajewski | cd2e66f | 2020-10-15 20:33:34 +0200 | [diff] [blame] | 4 | # Modifications Copyright © 2020 Nokia |
rope252 | cd2142c | 2018-09-17 12:35:36 +0100 | [diff] [blame] | 5 | # ================================================================================ |
| 6 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | # you may not use this file except in compliance with the License. |
| 8 | # You may obtain a copy of the License at |
| 9 | # |
| 10 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | # |
| 12 | # Unless required by applicable law or agreed to in writing, software |
| 13 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | # See the License for the specific language governing permissions and |
| 16 | # limitations under the License. |
| 17 | # |
| 18 | # SPDX-License-Identifier: Apache-2.0 |
| 19 | # ============LICENSE_END========================================================= |
| 20 | # @author: gareth.roper@ericsson.com |
Jakub Latusek | 44f0fdd | 2020-10-21 13:36:29 +0200 | [diff] [blame] | 21 | */}} |
Grzegorz-Lis | d1c1f6a | 2020-07-29 12:22:40 +0200 | [diff] [blame] | 22 | apiVersion: apps/v1 |
rope252 | cd2142c | 2018-09-17 12:35:36 +0100 | [diff] [blame] | 23 | kind: Deployment |
| 24 | metadata: |
| 25 | name: {{ include "common.fullname" . }} |
| 26 | namespace: {{ include "common.namespace" . }} |
| 27 | labels: |
| 28 | app: {{ include "common.fullname" . }} |
| 29 | chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }} |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 30 | release: {{ include "common.release" . }} |
rope252 | cd2142c | 2018-09-17 12:35:36 +0100 | [diff] [blame] | 31 | spec: |
Grzegorz-Lis | d1c1f6a | 2020-07-29 12:22:40 +0200 | [diff] [blame] | 32 | selector: |
| 33 | matchLabels: |
| 34 | app: {{ include "common.name" . }} |
rope252 | cd2142c | 2018-09-17 12:35:36 +0100 | [diff] [blame] | 35 | replicas: {{ index .Values.replicaCount }} |
| 36 | minReadySeconds: {{ index .Values.minReadySeconds }} |
| 37 | strategy: |
| 38 | type: {{ index .Values.updateStrategy.type }} |
| 39 | rollingUpdate: |
| 40 | maxUnavailable: {{ index .Values.updateStrategy.maxUnavailable }} |
| 41 | maxSurge: {{ index .Values.updateStrategy.maxSurge }} |
| 42 | template: |
| 43 | metadata: |
| 44 | labels: |
| 45 | app: {{ include "common.name" . }} |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 46 | release: {{ include "common.release" . }} |
rope252 | cd2142c | 2018-09-17 12:35:36 +0100 | [diff] [blame] | 47 | spec: |
Krzysztof Gajewski | cd2e66f | 2020-10-15 20:33:34 +0200 | [diff] [blame] | 48 | initContainers: {{ include "so.certificate.container_importer" . | nindent 6 }} |
rope252 | cd2142c | 2018-09-17 12:35:36 +0100 | [diff] [blame] | 49 | - name: so-chown |
Sylvain Desbureaux | 747982c | 2020-11-19 17:40:05 +0100 | [diff] [blame] | 50 | image: {{ include "repositoryGenerator.image.busybox" . }} |
rope252 | cd2142c | 2018-09-17 12:35:36 +0100 | [diff] [blame] | 51 | volumeMounts: |
| 52 | - name: logs |
| 53 | mountPath: /app/logs |
jmac | c4f04d3 | 2018-10-12 18:24:24 +0000 | [diff] [blame] | 54 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
rope252 | cd2142c | 2018-09-17 12:35:36 +0100 | [diff] [blame] | 55 | command: ["/bin/sh", "-c", "chown -Rf 1000:1000 /app/logs"] |
| 56 | restartPolicy: Always |
| 57 | containers: |
| 58 | - name: {{ include "common.name" . }} |
Sylvain Desbureaux | 747982c | 2020-11-19 17:40:05 +0100 | [diff] [blame] | 59 | image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }} |
seshukm | 0df1f8e | 2020-08-17 21:45:49 +0530 | [diff] [blame] | 60 | resources: {{ include "common.resources" . | nindent 12 }} |
Krzysztof Gajewski | cd2e66f | 2020-10-15 20:33:34 +0200 | [diff] [blame] | 61 | command: |
| 62 | - /bin/sh |
| 63 | args: |
| 64 | - -c |
| 65 | - | |
Sylvain Desbureaux | 1eff56b | 2021-02-25 14:13:01 +0100 | [diff] [blame] | 66 | export SO_COCKPIT_PASSWORD=`htpasswd -bnBC 10 "" $SO_COCKPIT_PASS | tr -d ':\n' | sed 's/\$2y/\$2a/'` |
Krzysztof Gajewski | cd2e66f | 2020-10-15 20:33:34 +0200 | [diff] [blame] | 67 | {{- if .Values.global.aafEnabled }} |
| 68 | export $(grep '^c' {{ .Values.soHelpers.certInitializer.credsPath }}/org.onap.so.cred.props | xargs -0) |
Sylvain Desbureaux | fde9407 | 2021-03-19 15:06:41 +0100 | [diff] [blame] | 69 | export $(cat {{ .Values.soHelpers.certInitializer.credsPath }}/mycreds.prop | xargs -0) |
Krzysztof Gajewski | cd2e66f | 2020-10-15 20:33:34 +0200 | [diff] [blame] | 70 | export KEYSTORE=file://$cadi_keystore |
| 71 | export KEYSTORE_PASSWORD=$cadi_keystore_password_p12 |
| 72 | export TRUSTSTORE=file://$cadi_truststore |
| 73 | export TRUSTSTORE_PASSWORD=$cadi_truststore_password |
| 74 | {{- end }} |
| 75 | /app/start-app.sh |
rope252 | cd2142c | 2018-09-17 12:35:36 +0100 | [diff] [blame] | 76 | env: |
| 77 | - name: DB_HOST |
krishnaa96 | 92b606b | 2020-10-30 11:29:21 +0530 | [diff] [blame] | 78 | value: {{ include "common.mariadbService" . }} |
rope252 | cd2142c | 2018-09-17 12:35:36 +0100 | [diff] [blame] | 79 | - name: DB_PORT |
krishnaa96 | 92b606b | 2020-10-30 11:29:21 +0530 | [diff] [blame] | 80 | value: {{ include "common.mariadbPort" . | quote }} |
rope252 | cd2142c | 2018-09-17 12:35:36 +0100 | [diff] [blame] | 81 | - name: DB_USERNAME |
Krzysztof Opasiak | 0be83cb | 2020-03-24 21:44:00 +0100 | [diff] [blame] | 82 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-user-creds" "key" "login") | indent 10 }} |
rope252 | cd2142c | 2018-09-17 12:35:36 +0100 | [diff] [blame] | 83 | - name: DB_PASSWORD |
Krzysztof Opasiak | 0be83cb | 2020-03-24 21:44:00 +0100 | [diff] [blame] | 84 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-user-creds" "key" "password") | indent 10 }} |
rope252 | cd2142c | 2018-09-17 12:35:36 +0100 | [diff] [blame] | 85 | - name: DB_ADMIN_USERNAME |
Krzysztof Opasiak | 0be83cb | 2020-03-24 21:44:00 +0100 | [diff] [blame] | 86 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-admin-creds" "key" "login") | indent 10 }} |
rope252 | cd2142c | 2018-09-17 12:35:36 +0100 | [diff] [blame] | 87 | - name: DB_ADMIN_PASSWORD |
Krzysztof Opasiak | 0be83cb | 2020-03-24 21:44:00 +0100 | [diff] [blame] | 88 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-admin-creds" "key" "password") | indent 10 }} |
Sylvain Desbureaux | 1eff56b | 2021-02-25 14:13:01 +0100 | [diff] [blame] | 89 | - name: SO_COCKPIT_USERNAME |
Krzysztof Gajewski | cd2e66f | 2020-10-15 20:33:34 +0200 | [diff] [blame] | 90 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "app-user-creds" "key" "login") | indent 10 }} |
Sylvain Desbureaux | 1eff56b | 2021-02-25 14:13:01 +0100 | [diff] [blame] | 91 | - name: SO_COCKPIT_PASS |
Krzysztof Gajewski | cd2e66f | 2020-10-15 20:33:34 +0200 | [diff] [blame] | 92 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "app-user-creds" "key" "password") | indent 10 }} |
| 93 | |
rope252 | cd2142c | 2018-09-17 12:35:36 +0100 | [diff] [blame] | 94 | envFrom: |
| 95 | - configMapRef: |
Sylvain Desbureaux | 1eff56b | 2021-02-25 14:13:01 +0100 | [diff] [blame] | 96 | name: {{ include "common.fullname" . }} |
jmac | c4f04d3 | 2018-10-12 18:24:24 +0000 | [diff] [blame] | 97 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
Krzysztof Gajewski | cd2e66f | 2020-10-15 20:33:34 +0200 | [diff] [blame] | 98 | volumeMounts: {{ include "so.certificate.volumeMount" . | nindent 8 }} |
rope252 | cd2142c | 2018-09-17 12:35:36 +0100 | [diff] [blame] | 99 | - name: logs |
| 100 | mountPath: /app/logs |
rope252 | cd2142c | 2018-09-17 12:35:36 +0100 | [diff] [blame] | 101 | - name: config |
| 102 | mountPath: /app/config |
| 103 | readOnly: true |
| 104 | readinessProbe: |
| 105 | tcpSocket: |
| 106 | port: {{ index .Values.readinessProbe.port }} |
| 107 | initialDelaySeconds: {{ index .Values.readinessProbe.initialDelaySeconds}} |
| 108 | periodSeconds: {{ index .Values.readinessProbe.periodSeconds}} |
| 109 | livenessProbe: |
| 110 | tcpSocket: |
| 111 | port: {{ index .Values.livenessProbe.port }} |
| 112 | initialDelaySeconds: {{ index .Values.livenessProbe.initialDelaySeconds}} |
| 113 | periodSeconds: {{ index .Values.livenessProbe.periodSeconds}} |
| 114 | successThreshold: {{ index .Values.livenessProbe.successThreshold}} |
| 115 | failureThreshold: {{ index .Values.livenessProbe.failureThreshold}} |
| 116 | |
| 117 | ports: |
| 118 | - containerPort: {{ index .Values.containerPort }} |
| 119 | name: {{ .Values.service.portName }} |
| 120 | protocol: TCP |
Krzysztof Gajewski | cd2e66f | 2020-10-15 20:33:34 +0200 | [diff] [blame] | 121 | volumes: {{ include "so.certificate.volumes" . | nindent 6 }} |
rope252 | cd2142c | 2018-09-17 12:35:36 +0100 | [diff] [blame] | 122 | - name: logs |
| 123 | emptyDir: {} |
rope252 | cd2142c | 2018-09-17 12:35:36 +0100 | [diff] [blame] | 124 | - name: config |
| 125 | configMap: |
Sylvain Desbureaux | 1eff56b | 2021-02-25 14:13:01 +0100 | [diff] [blame] | 126 | name: {{ include "common.fullname" . }}-app |
rope252 | cd2142c | 2018-09-17 12:35:36 +0100 | [diff] [blame] | 127 | imagePullSecrets: |
| 128 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |