Jakub Latusek | 44f0fdd | 2020-10-21 13:36:29 +0200 | [diff] [blame] | 1 | {{/* |
AndrewLamb | 8e09044 | 2020-10-15 09:28:09 +0100 | [diff] [blame] | 2 | # Copyright © 2020 Nordix Foundation |
| 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. |
Jakub Latusek | 44f0fdd | 2020-10-21 13:36:29 +0200 | [diff] [blame] | 15 | */}} |
AndrewLamb | 8e09044 | 2020-10-15 09:28:09 +0100 | [diff] [blame] | 16 | |
| 17 | apiVersion: apps/v1 |
| 18 | kind: Deployment |
| 19 | metadata: {{- include "common.resourceMetadata" . | nindent 2 }} |
| 20 | spec: |
| 21 | selector: {{- include "common.selectors" . | nindent 4 }} |
| 22 | replicas: {{ index .Values.replicaCount }} |
| 23 | minReadySeconds: {{ index .Values.minReadySeconds }} |
| 24 | strategy: |
| 25 | type: {{ index .Values.updateStrategy.type }} |
| 26 | rollingUpdate: |
| 27 | maxUnavailable: {{ index .Values.updateStrategy.maxUnavailable }} |
| 28 | maxSurge: {{ index .Values.updateStrategy.maxSurge }} |
| 29 | template: |
| 30 | metadata: {{- include "common.templateMetadata" . | nindent 6 }} |
| 31 | spec: |
| 32 | initContainers: {{ include "so.certificate.container_importer" . | nindent 8 }} |
| 33 | containers: |
| 34 | - name: {{ include "common.name" . }} |
| 35 | command: |
| 36 | - sh |
| 37 | args: |
| 38 | - -c |
| 39 | - | |
| 40 | export ETSI_NFVO_PASSWORD=`htpasswd -bnBC 10 "" $ETSI_NFVO_PASSWORD_INPUT | tr -d ':\n' | sed 's/\$2y/\$2a/'` |
| 41 | {{- if .Values.global.aafEnabled }} |
| 42 | export $(grep '^c' {{ .Values.soHelpers.certInitializer.credsPath }}/mycreds.prop | xargs -0) |
| 43 | export TRUSTSTORE_PASSWORD="${cadi_truststore_password}" |
| 44 | {{- if .Values.global.security.aaf.enabled }} |
Sylvain Desbureaux | a1bbe5c | 2020-10-28 16:55:18 +0100 | [diff] [blame] | 45 | export KEYSTORE_PASSWORD="${cadi_keystore_password_p12}" |
AndrewLamb | 8e09044 | 2020-10-15 09:28:09 +0100 | [diff] [blame] | 46 | {{- end }} |
| 47 | {{- end }} |
| 48 | ./start-app.sh |
Sylvain Desbureaux | 747982c | 2020-11-19 17:40:05 +0100 | [diff] [blame^] | 49 | image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }} |
AndrewLamb | 8e09044 | 2020-10-15 09:28:09 +0100 | [diff] [blame] | 50 | resources: {{ include "common.resources" . | nindent 12 }} |
| 51 | env: |
| 52 | - name: ETSI_NFVO_USERNAME |
| 53 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "etsi-nfvo-nslcm-creds" "key" "login") | indent 14 }} |
| 54 | - name: ETSI_NFVO_PASSWORD_INPUT |
| 55 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "etsi-nfvo-nslcm-creds" "key" "password") | indent 14 }} |
rope252 | 4d3f368 | 2020-09-02 20:49:21 +0100 | [diff] [blame] | 56 | - name: DB_HOST |
krishnaa96 | 92b606b | 2020-10-30 11:29:21 +0530 | [diff] [blame] | 57 | value: {{ include "common.mariadbService" . }} |
rope252 | 4d3f368 | 2020-09-02 20:49:21 +0100 | [diff] [blame] | 58 | - name: DB_PORT |
krishnaa96 | 92b606b | 2020-10-30 11:29:21 +0530 | [diff] [blame] | 59 | value: {{ include "common.mariadbPort" . | quote }} |
rope252 | 4d3f368 | 2020-09-02 20:49:21 +0100 | [diff] [blame] | 60 | - name: DB_USERNAME |
| 61 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-user-creds" "key" "login") | indent 14 }} |
| 62 | - name: DB_PASSWORD |
| 63 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-user-creds" "key" "password") | indent 14 }} |
| 64 | - name: DB_ADMIN_USERNAME |
| 65 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-admin-creds" "key" "login") | indent 14 }} |
| 66 | - name: DB_ADMIN_PASSWORD |
| 67 | {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-admin-creds" "key" "password") | indent 14 }} |
AndrewLamb | 8e09044 | 2020-10-15 09:28:09 +0100 | [diff] [blame] | 68 | {{ include "so.certificates.env" . | indent 12 | trim }} |
| 69 | envFrom: |
| 70 | - configMapRef: |
| 71 | name: {{ include "common.fullname" . }}-configmap |
| 72 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 73 | volumeMounts: {{ include "so.certificate.volumeMount" . | nindent 12 }} |
| 74 | - name: logs |
| 75 | mountPath: /app/logs |
| 76 | - name: config |
| 77 | mountPath: /app/config |
| 78 | readOnly: true |
AndrewLamb | 8e09044 | 2020-10-15 09:28:09 +0100 | [diff] [blame] | 79 | livenessProbe: |
| 80 | tcpSocket: |
| 81 | port: {{ index .Values.livenessProbe.port }} |
| 82 | initialDelaySeconds: {{ index .Values.livenessProbe.initialDelaySeconds}} |
| 83 | periodSeconds: {{ index .Values.livenessProbe.periodSeconds}} |
| 84 | successThreshold: {{ index .Values.livenessProbe.successThreshold}} |
| 85 | failureThreshold: {{ index .Values.livenessProbe.failureThreshold}} |
| 86 | ports: {{ include "common.containerPorts" . | nindent 12 }} |
| 87 | volumes: {{ include "so.certificate.volumes" . | nindent 8 }} |
| 88 | - name: logs |
| 89 | emptyDir: {} |
| 90 | - name: config |
| 91 | configMap: |
| 92 | name: {{ include "common.fullname" . }}-app-configmap |
AndrewLamb | 8e09044 | 2020-10-15 09:28:09 +0100 | [diff] [blame] | 93 | imagePullSecrets: |
| 94 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |