Add VFC env about reg_to_msb_when_start to determine whether register to microserice
[oom.git] / kubernetes / vfc / charts / vfc-generic-vnfm-driver / templates / deployment.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
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
15 apiVersion: extensions/v1beta1
16 kind: Deployment
17 metadata:
18   name: {{ include "common.fullname" . }}
19   namespace: {{ include "common.namespace" . }}
20   labels:
21     app: {{ include "common.name" . }}
22     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
23     release: {{ include "common.release" . }}
24     heritage: {{ .Release.Service }}
25 spec:
26   replicas: {{ .Values.replicaCount }}
27   template:
28     metadata:
29       labels:
30         app: {{ include "common.name" . }}
31         release: {{ include "common.release" . }}
32       annotations:
33         sidecar.istio.io/inject: "{{.Values.istioSidecar}}"
34     spec:
35       containers:
36         - name: {{ include "common.name" . }}
37           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
38           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
39           ports:
40           - containerPort: {{ .Values.service.internalPort }}
41           # disable liveness probe when breakpoints set in debugger
42           # so K8s doesn't restart unresponsive container
43           {{ if .Values.liveness.enabled }}
44           livenessProbe:
45             tcpSocket:
46               port: {{ .Values.service.internalPort }}
47             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
48             periodSeconds: {{ .Values.liveness.periodSeconds }}
49           {{ end }}
50           readinessProbe:
51             tcpSocket:
52               port: {{ .Values.service.internalPort }}
53             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
54             periodSeconds: {{ .Values.readiness.periodSeconds }}
55           env:
56             - name: MSB_PROTO
57               value: "{{ .Values.global.config.msbprotocol }}"
58             - name: SSL_ENABLED
59               value: "{{ .Values.global.config.ssl_enabled }}"
60             - name: MSB_ADDR
61               value: "{{ .Values.global.config.msbServiceName }}:{{ .Values.global.config.msbPort }}"
62             - name: REG_TO_MSB_WHEN_START
63               value: "{{ .Values.global.config.reg_to_msb_when_start }}"
64           volumeMounts:
65           - name: {{ include "common.fullname" . }}-localtime
66             mountPath: /etc/localtime
67             readOnly: true
68           - name: {{ include "common.fullname" . }}-logs
69             mountPath: /var/log/onap
70           - name: {{ include "common.fullname" . }}-logconfig
71             mountPath: /opt/vfc/gvnfmdriver/config/log.yml
72             subPath: log.yml
73           resources:
74 {{ include "common.resources" . | indent 12 }}
75         {{- if .Values.nodeSelector }}
76         nodeSelector:
77 {{ toYaml .Values.nodeSelector | indent 10 }}
78         {{- end -}}
79         {{- if .Values.affinity }}
80         affinity:
81 {{ toYaml .Values.affinity | indent 10 }}
82         {{- end }}
83
84         # side car containers
85         - name: {{ include "common.name" . }}-filebeat-onap
86           image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
87           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
88           volumeMounts:
89           - name: {{ include "common.fullname" . }}-filebeat-conf
90             mountPath: /usr/share/filebeat/filebeat.yml
91             subPath: filebeat.yml
92           - name: {{ include "common.fullname" . }}-logs
93             mountPath: /var/log/onap
94           - name: {{ include "common.fullname" . }}-data-filebeat
95             mountPath: /usr/share/filebeat/data
96
97       volumes:
98         - name: {{ include "common.fullname" . }}-localtime
99           hostPath:
100             path: /etc/localtime
101         - name:  {{ include "common.fullname" . }}-logs
102           emptyDir: {}
103         - name: {{ include "common.fullname" . }}-logconfig
104           configMap:
105             name : {{ include "common.fullname" . }}-logging-configmap
106
107         - name: {{ include "common.fullname" . }}-filebeat-conf
108           configMap:
109             name: {{ include "common.release" . }}-vfc-filebeat-configmap
110         - name: {{ include "common.fullname" . }}-data-filebeat
111           emptyDir: {}
112       imagePullSecrets:
113       - name: "{{ include "common.namespace" . }}-docker-registry-key"