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