Merge "[AAI] Add model-loader tracing config"
[oom.git] / kubernetes / so / components / so-sdnc-adapter / 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: {{- include "common.resourceMetadata" . | nindent 2 }}
19 spec:
20   selector: {{- include "common.selectors" . | nindent 4 }}
21   replicas: {{ index .Values.replicaCount }}
22   minReadySeconds: {{ index .Values.minReadySeconds }}
23   strategy:
24     type: {{ index .Values.updateStrategy.type }}
25     rollingUpdate:
26       maxUnavailable: {{ index .Values.updateStrategy.maxUnavailable }}
27       maxSurge: {{ index .Values.updateStrategy.maxSurge }}
28   template:
29     metadata: {{- include "common.templateMetadata" . | nindent 6 }}
30     spec:
31       containers:
32       - name: {{ include "common.name" . }}
33         image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
34         resources: {{ include "common.resources" . | nindent 10 }}
35         env:
36         - name: DB_HOST
37           value: {{ include "common.mariadbService" . }}
38         - name: DB_PORT
39           value: {{ include "common.mariadbPort" . | quote }}
40         - name: DB_USERNAME
41           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-user-creds" "key" "login") | indent 10 }}
42         - name: DB_PASSWORD
43           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-user-creds" "key" "password") | indent 10 }}
44         - name: DB_ADMIN_USERNAME
45           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-admin-creds" "key" "login") | indent 10 }}
46         - name: DB_ADMIN_PASSWORD
47           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-admin-creds" "key" "password") | indent 10 }}
48         - name: MSO_KEY
49           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "sdnc-adapter-mso-key" "key" "password") | indent 10 }}
50         - name: MSO_AUTH
51           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "sdnc-adapter-mso-auth" "key" "password") | indent 10 }}
52         envFrom:
53         - configMapRef:
54             name: {{ include "common.fullname" . }}-configmap
55         imagePullPolicy:  {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
56         volumeMounts:
57         - name: logs
58           mountPath: /app/logs
59         - name: config
60           mountPath: /app/config
61           readOnly: true
62         - name: {{ include "common.fullname" . }}-logs
63           mountPath: /var/log/onap
64 {{ include "so.helpers.livenessProbe" .| indent 8 }}
65         ports: {{- include "common.containerPorts" . | nindent 10 }}
66       # Filebeat sidecar container
67       {{ include "common.log.sidecar" . | nindent 6 }}
68       serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
69       volumes:
70       - name: logs
71         emptyDir: {}
72       - name: config
73         configMap:
74             name: {{ include "common.fullname" . }}-app-configmap
75       - name: {{ include "common.fullname" . }}-log-conf
76         configMap:
77           name: {{ include "common.fullname" . }}-log
78       {{ include "common.log.volumes" (dict "dot" . "configMapNamePrefix" (tpl .Values.logConfigMapNamePrefix .)) | nindent 6 }}
79       - name:  {{ include "common.fullname" . }}-logs
80         emptyDir: {}
81       {{- include "common.imagePullSecrets" . | nindent 6 }}