Update MOD component versions
[oom.git] / kubernetes / so / templates / deployment.yaml
1 # Copyright © 2018 AT&T USA
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 apiVersion: extensions/v1beta1
15 kind: Deployment
16 metadata:
17   name: {{ include "common.fullname" . }}
18   namespace: {{ include "common.namespace" . }}
19   labels:
20     app: {{ include "common.fullname" . }}
21     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
22     release: {{ include "common.release" . }}
23 spec:
24   replicas: {{ index .Values.replicaCount }}
25   minReadySeconds: {{ index .Values.minReadySeconds }}
26   strategy:
27     type: {{ index .Values.updateStrategy.type }}
28     rollingUpdate:
29       maxUnavailable: {{ index .Values.updateStrategy.maxUnavailable }}
30       maxSurge: {{ index .Values.updateStrategy.maxSurge }}
31   template:
32     metadata:
33       labels:
34         app: {{ include "common.name" . }}
35         release: {{ include "common.release" . }}
36     spec:
37       initContainers:
38       - command:
39         - /root/job_complete.py
40         args:
41         - --job-name
42         - {{ include "common.release" . }}-so-mariadb-config-job
43         env:
44         - name: NAMESPACE
45           valueFrom:
46             fieldRef:
47               apiVersion: v1
48               fieldPath: metadata.namespace
49         image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
50         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
51         name: {{ include "common.name" . }}-readiness
52       containers:
53       - name: {{ include "common.name" . }}
54         image: {{ include "common.repository" . }}/{{ .Values.image }}
55         resources:
56 {{ include "common.resources" . | indent 12 }}
57         env:
58         - name: DB_HOST
59           valueFrom:
60             secretKeyRef:
61               name: {{ include "common.release" . }}-so-db-secrets
62               key: mariadb.readwrite.host
63         - name: DB_PORT
64           valueFrom:
65             secretKeyRef:
66               name: {{ include "common.release" . }}-so-db-secrets
67               key: mariadb.readwrite.port
68         - name: DB_USERNAME
69           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-user-creds" "key" "login") | indent 10 }}
70         - name: DB_PASSWORD
71           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-user-creds" "key" "password") | indent 10 }}
72         - name: DB_ADMIN_USERNAME
73           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-admin-creds" "key" "login") | indent 10 }}
74         - name: DB_ADMIN_PASSWORD
75           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-admin-creds" "key" "password") | indent 10 }}
76          {{- if eq .Values.global.security.aaf.enabled true }}
77         - name: TRUSTSTORE
78           value: /app/org.onap.so.trust.jks
79         - name: TRUSTSTORE_PASSWORD
80           valueFrom:
81             secretKeyRef:
82               name: {{ .Release.Name}}-so-client-certs-secret
83               key: trustStorePassword
84         - name: KEYSTORE
85           value: /app/org.onap.so.jks
86         - name: KEYSTORE_PASSWORD
87           valueFrom:
88             secretKeyRef:
89               name: {{ .Release.Name}}-so-client-certs-secret
90               key: keyStorePassword
91         {{- end }}
92         envFrom:
93         - configMapRef:
94             name: {{ include "common.fullname" . }}-configmap
95         imagePullPolicy:  {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
96         volumeMounts:
97         - name: logs
98           mountPath: /app/logs
99         - name: config
100           mountPath: /app/config
101           readOnly: true
102         - name: {{ include "common.fullname" . }}-logs
103           mountPath: /var/log/onap
104 {{ include "helpers.livenessProbe" .| indent 8 }}
105         ports:
106         - containerPort: {{ index .Values.containerPort }}
107           name: {{ .Values.service.portName }}
108           protocol: TCP
109       # Filebeat sidecar container
110       - name: {{ include "common.name" . }}-filebeat-onap
111         image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
112         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
113         volumeMounts:
114         - name: {{ include "common.fullname" . }}-filebeat-conf
115           mountPath: /usr/share/filebeat/filebeat.yml
116           subPath: filebeat.yml
117         - name: {{ include "common.fullname" . }}-data-filebeat
118           mountPath: /usr/share/filebeat/data
119         - name: logs
120           mountPath: /var/log/onap/so
121         - name: {{ include "common.fullname" . }}-logs
122           mountPath: /var/log/onap
123       volumes:
124       - name: logs
125         emptyDir: {}
126       - name: config
127         configMap:
128             name: {{ include "common.fullname" . }}-app-configmap
129       - name: {{ include "common.fullname" . }}-log-conf
130         configMap:
131           name: {{ include "common.fullname" . }}-log
132       - name: {{ include "common.fullname" . }}-filebeat-conf
133         configMap:
134           name: {{ .Release.Name }}-so-filebeat-configmap
135       - name: {{ include "common.fullname" . }}-data-filebeat
136         emptyDir: {}
137       - name:  {{ include "common.fullname" . }}-logs
138         emptyDir: {}
139       imagePullSecrets:
140         - name: "{{ include "common.namespace" . }}-docker-registry-key"