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