Merge "[AAI] Add model-loader tracing config"
[oom.git] / kubernetes / vfc / components / vfc-vnfmgr / templates / deployment.yaml
1 {{/*
2 # Copyright © 2017 Amdocs, Bell Canada
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
17 apiVersion: apps/v1
18 kind: Deployment
19 metadata:
20   name: {{ include "common.fullname" . }}
21   namespace: {{ include "common.namespace" . }}
22   labels:
23     app: {{ include "common.name" . }}
24     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
25     release: {{ include "common.release" . }}
26     heritage: {{ .Release.Service }}
27 spec:
28   selector:
29     matchLabels:
30       app: {{ include "common.name" . }}
31   replicas: {{ .Values.replicaCount }}
32   template:
33     metadata:
34       labels:
35         app: {{ include "common.name" . }}
36         release: {{ include "common.release" . }}
37       annotations:
38         sidecar.istio.io/inject: "{{.Values.istioSidecar}}"
39     spec:
40       initContainers:
41       - command:
42         - /app/ready.py
43         args:
44         - --service-name
45         - {{ include "common.mariadbService" . }}
46         env:
47         - name: NAMESPACE
48           valueFrom:
49             fieldRef:
50               apiVersion: v1
51               fieldPath: metadata.namespace
52         image: {{ include "repositoryGenerator.image.readiness" . }}
53         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
54         name: {{ include "common.name" . }}-readiness
55         resources:
56           limits:
57             cpu: "100m"
58             memory: "500Mi"
59           requests:
60             cpu: "3m"
61             memory: "20Mi"
62       containers:
63         - name: {{ include "common.name" . }}
64           command:
65             - sh
66           args:
67             - -c
68             - 'MYSQL_AUTH=${MYSQL_ROOT_USER}:${MYSQL_ROOT_PASSWORD} ./docker-entrypoint.sh'
69           image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
70           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
71           ports:
72           - containerPort: {{ .Values.service.internalPort }}
73           # disable liveness probe when breakpoints set in debugger
74           # so K8s doesn't restart unresponsive container
75           {{ if .Values.liveness.enabled }}
76           livenessProbe:
77             tcpSocket:
78               port: {{ .Values.service.internalPort }}
79             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
80             periodSeconds: {{ .Values.liveness.periodSeconds }}
81           {{ end }}
82           readinessProbe:
83             tcpSocket:
84               port: {{ .Values.service.internalPort }}
85             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
86             periodSeconds: {{ .Values.readiness.periodSeconds }}
87           env:
88             - name: MSB_HOST
89               value: "{{ .Values.global.config.msbprotocol }}{{ (eq "true" (include "common.needTLS" .)) | ternary "s" "" }}://{{ .Values.global.config.msbServiceName }}:{{ .Values.global.config.msbPort }}"
90             {{- if and (include "common.needTLS" .) (eq .Values.global.config.ssl_enabled true) }}
91             - name: SSL_ENABLED
92               value: "true"
93             {{- else }}
94             - name: SSL_ENABLED
95               value: "false"
96             {{- end }}
97             - name: MYSQL_ADDR
98               value: '{{ include "common.mariadbService" . }}:{{ include "common.mariadbPort" . }}'
99             - name: REDIS_HOST
100               value: "{{ .Values.global.config.redisServiceName }}"
101             - name: REDIS_PORT
102               value: "{{ .Values.global.config.redisPort }}"
103             - name: MYSQL_ROOT_USER
104               value: "{{ .Values.global.config.mariadb_admin }}"
105             - name: MYSQL_ROOT_PASSWORD
106               {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-root-pass" "key" "password") | indent 14}}
107             - name: REG_TO_MSB_WHEN_START
108               value: "{{ .Values.global.config.reg_to_msb_when_start }}"
109           volumeMounts:
110           - name: {{ include "common.fullname" . }}-logs
111             mountPath: {{ .Values.log.path }}
112           - name: {{ include "common.fullname" . }}-logconfig
113             mountPath: /opt/vfc/gvnfm-vnfmgr/config/log.yml
114             subPath: log.yml
115           resources: {{ include "common.resources" . | nindent 12 }}
116         {{- if .Values.nodeSelector }}
117         nodeSelector:
118 {{ toYaml .Values.nodeSelector | indent 10 }}
119         {{- end -}}
120         {{- if .Values.affinity }}
121         affinity:
122 {{ toYaml .Values.affinity | indent 10 }}
123         {{- end }}
124
125         # side car containers
126         {{ include "common.log.sidecar" . | nindent 8 }}
127       volumes:
128         - name:  {{ include "common.fullname" . }}-logs
129           emptyDir: {}
130         - name: {{ include "common.fullname" . }}-logconfig
131           configMap:
132             name : {{ include "common.fullname" . }}-logging-configmap
133
134         {{ include "common.log.volumes" (dict "dot" . "configMapNamePrefix" (tpl .Values.logConfigMapNamePrefix . )) | nindent 8 }}
135       {{- include "common.imagePullSecrets" . | nindent 6 }}