Merge "[SO] update the so-etsi-nfvo-ns-lcm version"
[oom.git] / kubernetes / so / components / so-sdc-controller / templates / deployment.yaml
1 {{/*
2 # Copyright © 2018 AT&T USA
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: apps/v1
17 kind: Deployment
18 metadata:
19   name: {{ include "common.fullname" . }}
20   namespace: {{ include "common.namespace" . }}
21   labels:
22     app: {{ include "common.fullname" . }}
23     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
24     release: {{ include "common.release" . }}
25 spec:
26   selector:
27     matchLabels:
28       app: {{ include "common.name" . }}
29   replicas: {{ index .Values.replicaCount }}
30   minReadySeconds: {{ index .Values.minReadySeconds }}
31   strategy:
32     type: {{ index .Values.updateStrategy.type }}
33     rollingUpdate:
34       maxUnavailable: {{ index .Values.updateStrategy.maxUnavailable }}
35       maxSurge: {{ index .Values.updateStrategy.maxSurge }}
36   template:
37     metadata:
38       labels:
39         app: {{ include "common.name" . }}
40         release: {{ include "common.release" . }}
41     spec:
42       initContainers: {{ include "so.certificate.container_importer" . | nindent 6 }}
43       - command:
44         - /app/ready.py
45         args:
46         - --job-name
47         - {{ include "common.release" . }}-so-mariadb-config-job
48         env:
49         - name: NAMESPACE
50           valueFrom:
51             fieldRef:
52               apiVersion: v1
53               fieldPath: metadata.namespace
54         image: "{{ include "common.repository" . }}/{{ .Values.global.readinessImage }}"
55         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
56         name: {{ include "common.name" . }}-readiness
57       containers:
58       - name: {{ include "common.name" . }}
59         image: {{ include "common.repository" . }}/{{ .Values.image }}
60         resources: {{ include "common.resources" . | nindent 12 }}
61         {{- if .Values.global.aafEnabled }}
62         command:
63         - sh
64         args:
65         - -c
66         - |
67           export $(grep '^c' {{ .Values.soHelpers.certInitializer.credsPath }}/mycreds.prop | xargs -0)
68           export TRUSTSTORE_PASSWORD="${cadi_truststore_password}"
69           {{- if .Values.global.security.aaf.enabled }}
70           export KEYSTORE_PASSWORD="${cadi_keystore_password_p12}"
71           {{- end }}
72           /app/start-app.sh
73         {{- end }}
74         env:
75         - name: DB_HOST
76           value: {{ include "common.mariadbService" . }}
77         - name: DB_PORT
78           value: {{ include "common.mariadbPort" . | quote }}
79         - name: DB_USERNAME
80           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-user-creds" "key" "login") | indent 10 }}
81         - name: DB_PASSWORD
82           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-user-creds" "key" "password") | indent 10 }}
83         - name: DB_ADMIN_USERNAME
84           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-admin-creds" "key" "login") | indent 10 }}
85         - name: DB_ADMIN_PASSWORD
86           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-admin-creds" "key" "password") | indent 10 }}
87         {{ include "so.certificates.env" . | indent 8 | trim }}
88         envFrom:
89         - configMapRef:
90             name: {{ include "common.fullname" . }}-configmap
91         imagePullPolicy:  {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
92         volumeMounts: {{ include "so.certificate.volumeMount" . | nindent 8 }}
93         - name: logs
94           mountPath: /app/logs
95         - name: config
96           mountPath: /app/config
97           readOnly: true
98         - name: {{ include "common.fullname" . }}-logs
99           mountPath: /var/log/onap
100 {{ include "so.helpers.livenessProbe" .| indent 8 }}
101         ports:
102         - containerPort: {{ index .Values.containerPort }}
103           name: {{ .Values.service.portName }}
104           protocol: TCP
105       # Filebeat sidecar container
106       - name: {{ include "common.name" . }}-filebeat-onap
107         image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
108         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
109         volumeMounts:
110         - name: {{ include "common.fullname" . }}-filebeat-conf
111           mountPath: /usr/share/filebeat/filebeat.yml
112           subPath: filebeat.yml
113         - name: {{ include "common.fullname" . }}-data-filebeat
114           mountPath: /usr/share/filebeat/data
115         - name: logs
116           mountPath: /var/log/onap/so
117         - name: {{ include "common.fullname" . }}-logs
118           mountPath: /var/log/onap
119       volumes: {{ include "so.certificate.volumes" . | nindent 6 }}
120       - name: logs
121         emptyDir: {}
122       - name: config
123         configMap:
124             name: {{ include "common.fullname" . }}-app-configmap
125       - name: {{ include "common.fullname" . }}-log-conf
126         configMap:
127           name: {{ include "common.fullname" . }}-log
128       - name: {{ include "common.fullname" . }}-filebeat-conf
129         configMap:
130           name: {{ .Release.Name }}-so-filebeat-configmap
131       - name: {{ include "common.fullname" . }}-data-filebeat
132         emptyDir: {}
133       - name:  {{ include "common.fullname" . }}-logs
134         emptyDir: {}
135       imagePullSecrets:
136         - name: "{{ include "common.namespace" . }}-docker-registry-key"