[SO] Add helm chart for SO-ETSI-NFVO-NS-LCM
[oom.git] / kubernetes / so / components / so-etsi-nfvo-ns-lcm / templates / deployment.yaml
1 # 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
15 apiVersion: apps/v1
16 kind: Deployment
17 metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
18 spec:
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 }}
54             {{ include "so.certificates.env" . | indent 12 | trim }}
55           envFrom:
56             - configMapRef:
57                 name: {{ include "common.fullname" . }}-configmap
58           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
59           volumeMounts: {{ include "so.certificate.volumeMount" . | nindent 12 }}
60             - name: logs
61               mountPath: /app/logs
62             - name: config
63               mountPath: /app/config
64               readOnly: true
65             - name: {{ include "common.fullname" . }}-truststore
66               mountPath: /app/client
67               readonly: true
68           livenessProbe:
69             tcpSocket:
70               port: {{ index .Values.livenessProbe.port }}
71             initialDelaySeconds: {{ index .Values.livenessProbe.initialDelaySeconds}}
72             periodSeconds: {{ index .Values.livenessProbe.periodSeconds}}
73             successThreshold: {{ index .Values.livenessProbe.successThreshold}}
74             failureThreshold: {{ index .Values.livenessProbe.failureThreshold}}
75           ports: {{ include "common.containerPorts" . | nindent 12  }}
76       volumes: {{ include "so.certificate.volumes" . | nindent 8 }}
77         - name: logs
78           emptyDir: {}
79         - name: config
80           configMap:
81             name: {{ include "common.fullname" . }}-app-configmap
82         - name: {{ include "common.fullname" . }}-truststore
83           secret:
84             secretName: {{ include "common.release" . }}-so-truststore-secret
85       imagePullSecrets:
86         - name: "{{ include "common.namespace" . }}-docker-registry-key"