blob: 45668eda987bd31e9d5c4d3fe153bb7989899035 [file] [log] [blame]
AndrewLamb8e090442020-10-15 09:28:09 +01001# Copyright © 2020 Nordix Foundation
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15apiVersion: apps/v1
16kind: Deployment
17metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
18spec:
19 selector: {{- include "common.selectors" . | nindent 4 }}
20 replicas: {{ index .Values.replicaCount }}
21 minReadySeconds: {{ index .Values.minReadySeconds }}
22 strategy:
23 type: {{ index .Values.updateStrategy.type }}
24 rollingUpdate:
25 maxUnavailable: {{ index .Values.updateStrategy.maxUnavailable }}
26 maxSurge: {{ index .Values.updateStrategy.maxSurge }}
27 template:
28 metadata: {{- include "common.templateMetadata" . | nindent 6 }}
29 spec:
30 initContainers: {{ include "so.certificate.container_importer" . | nindent 8 }}
31 containers:
32 - name: {{ include "common.name" . }}
33 command:
34 - sh
35 args:
36 - -c
37 - |
38 export ETSI_NFVO_PASSWORD=`htpasswd -bnBC 10 "" $ETSI_NFVO_PASSWORD_INPUT | tr -d ':\n' | sed 's/\$2y/\$2a/'`
39 {{- if .Values.global.aafEnabled }}
40 export $(grep '^c' {{ .Values.soHelpers.certInitializer.credsPath }}/mycreds.prop | xargs -0)
41 export TRUSTSTORE_PASSWORD="${cadi_truststore_password}"
42 {{- if .Values.global.security.aaf.enabled }}
43 export KEYSTORE_PASSWORD="${cadi_keystore_password}"
44 {{- end }}
45 {{- end }}
46 ./start-app.sh
47 image: {{ include "common.repository" . }}/{{ .Values.image }}
48 resources: {{ include "common.resources" . | nindent 12 }}
49 env:
50 - name: ETSI_NFVO_USERNAME
51 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "etsi-nfvo-nslcm-creds" "key" "login") | indent 14 }}
52 - name: ETSI_NFVO_PASSWORD_INPUT
53 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "etsi-nfvo-nslcm-creds" "key" "password") | indent 14 }}
rope2524d3f3682020-09-02 20:49:21 +010054 - name: DB_HOST
55 valueFrom:
56 secretKeyRef:
57 name: {{ include "common.release" . }}-so-db-secrets
58 key: mariadb.readwrite.host
59 - name: DB_PORT
60 valueFrom:
61 secretKeyRef:
62 name: {{ include "common.release" . }}-so-db-secrets
63 key: mariadb.readwrite.port
64 - name: DB_USERNAME
65 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-user-creds" "key" "login") | indent 14 }}
66 - name: DB_PASSWORD
67 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-user-creds" "key" "password") | indent 14 }}
68 - name: DB_ADMIN_USERNAME
69 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-admin-creds" "key" "login") | indent 14 }}
70 - name: DB_ADMIN_PASSWORD
71 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-admin-creds" "key" "password") | indent 14 }}
AndrewLamb8e090442020-10-15 09:28:09 +010072 {{ include "so.certificates.env" . | indent 12 | trim }}
73 envFrom:
74 - configMapRef:
75 name: {{ include "common.fullname" . }}-configmap
76 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
77 volumeMounts: {{ include "so.certificate.volumeMount" . | nindent 12 }}
78 - name: logs
79 mountPath: /app/logs
80 - name: config
81 mountPath: /app/config
82 readOnly: true
83 - name: {{ include "common.fullname" . }}-truststore
84 mountPath: /app/client
85 readonly: true
86 livenessProbe:
87 tcpSocket:
88 port: {{ index .Values.livenessProbe.port }}
89 initialDelaySeconds: {{ index .Values.livenessProbe.initialDelaySeconds}}
90 periodSeconds: {{ index .Values.livenessProbe.periodSeconds}}
91 successThreshold: {{ index .Values.livenessProbe.successThreshold}}
92 failureThreshold: {{ index .Values.livenessProbe.failureThreshold}}
93 ports: {{ include "common.containerPorts" . | nindent 12 }}
94 volumes: {{ include "so.certificate.volumes" . | nindent 8 }}
95 - name: logs
96 emptyDir: {}
97 - name: config
98 configMap:
99 name: {{ include "common.fullname" . }}-app-configmap
100 - name: {{ include "common.fullname" . }}-truststore
101 secret:
102 secretName: {{ include "common.release" . }}-so-truststore-secret
103 imagePullSecrets:
104 - name: "{{ include "common.namespace" . }}-docker-registry-key"