[DMAAP] DMaaP ServiceMesh compatibility
[oom.git] / kubernetes / vfc / components / vfc-huawei-vnfm-driver / 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       containers:
41         - name: {{ include "common.name" . }}
42           image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
43           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
44           ports:
45           - containerPort: {{ .Values.service.internalPort }}
46           - containerPort: {{ .Values.service.internalPort2 }}
47           # disable liveness probe when breakpoints set in debugger
48           # so K8s doesn't restart unresponsive container
49           {{ if .Values.liveness.enabled }}
50           livenessProbe:
51             tcpSocket:
52               port: {{ .Values.service.internalPort }}
53             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
54             periodSeconds: {{ .Values.liveness.periodSeconds }}
55           {{ end }}
56           readinessProbe:
57             tcpSocket:
58               port: {{ .Values.service.internalPort }}
59             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
60             periodSeconds: {{ .Values.readiness.periodSeconds }}
61           env:
62             - name: MSB_PROTO
63               value: "{{ .Values.global.config.msbprotocol }}"
64             - name: SSL_ENABLED
65               value: "{{ .Values.global.config.ssl_enabled }}"
66             - name: MSB_ADDR
67               value: "{{ .Values.global.config.msbServiceName }}:{{ .Values.global.config.msbPort }}"
68             - name: REG_TO_MSB_WHEN_START
69               value: "{{ .Values.global.config.reg_to_msb_when_start }}"
70           volumeMounts:
71           - name: {{ include "common.fullname" . }}-localtime
72             mountPath: /etc/localtime
73             readOnly: true
74           - name: {{ include "common.fullname" . }}-logs
75             mountPath: {{ .Values.log.path }}
76           - name: {{ include "common.fullname" . }}-logconfig
77             mountPath: /opt/vfc/hwvnfmdriver/config/log4j.properties
78             subPath: log4j.properties
79           resources:
80 {{ include "common.resources" . | indent 12 }}
81         {{- if .Values.nodeSelector }}
82         nodeSelector:
83 {{ toYaml .Values.nodeSelector | indent 10 }}
84         {{- end -}}
85         {{- if .Values.affinity }}
86         affinity:
87 {{ toYaml .Values.affinity | indent 10 }}
88         {{- end }}
89
90         # side car containers
91         {{ include "common.log.sidecar" . | nindent 8 }}
92       volumes:
93         - name: {{ include "common.fullname" . }}-localtime
94           hostPath:
95             path: /etc/localtime
96         - name:  {{ include "common.fullname" . }}-logs
97           emptyDir: {}
98         - name: {{ include "common.fullname" . }}-logconfig
99           configMap:
100             name : {{ include "common.fullname" . }}-logging-configmap
101         {{ include "common.log.volumes" (dict "dot" . "configMapNamePrefix" (tpl .Values.logConfigMapNamePrefix . )) | nindent 8 }}
102       imagePullSecrets:
103       - name: "{{ include "common.namespace" . }}-docker-registry-key"