blob: a42567050b763325348609fbba382476579817ca [file] [log] [blame]
Mike Elliott6ba69cd2018-04-03 16:37:06 -04001# 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
15apiVersion: extensions/v1beta1
16kind: Deployment
17metadata:
18 name: {{ include "common.fullname" . }}
19 namespace: {{ include "common.namespace" . }}
20 labels:
21 app: {{ include "common.name" . }}
22 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010023 release: {{ include "common.release" . }}
Mike Elliott6ba69cd2018-04-03 16:37:06 -040024 heritage: {{ .Release.Service }}
25spec:
26 replicas: {{ .Values.replicaCount }}
27 template:
28 metadata:
29 labels:
30 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010031 release: {{ include "common.release" . }}
Huabing Zhaoc171ac22018-07-31 06:49:03 +000032 annotations:
33 sidecar.istio.io/inject: "{{.Values.istioSidecar}}"
Mike Elliott6ba69cd2018-04-03 16:37:06 -040034 spec:
Mike Elliott6ba69cd2018-04-03 16:37:06 -040035 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:
yangyanaaeedab2020-02-06 10:27:01 +080056 - name: MSB_PROTO
57 value: "{{ .Values.global.config.msbprotocol }}"
58 - name: SSL_ENABLED
59 value: "{{ .Values.global.config.ssl_enabled }}"
Mike Elliott6ba69cd2018-04-03 16:37:06 -040060 - name: MSB_ADDR
mahendrr08c3f452018-04-12 06:57:07 +000061 value: "{{ .Values.global.config.msbServiceName }}:{{ .Values.global.config.msbPort }}"
yangyan0a90d8d2020-03-11 10:14:42 +080062 - name: REG_TO_MSB_WHEN_START
63 value: "{{ .Values.global.config.reg_to_msb_when_start }}"
Mike Elliott6ba69cd2018-04-03 16:37:06 -040064 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:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +000074{{ include "common.resources" . | indent 12 }}
Mike Elliott6ba69cd2018-04-03 16:37:06 -040075 {{- 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:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100109 name: {{ include "common.release" . }}-vfc-filebeat-configmap
Mike Elliott6ba69cd2018-04-03 16:37:06 -0400110 - name: {{ include "common.fullname" . }}-data-filebeat
111 emptyDir: {}
112 imagePullSecrets:
113 - name: "{{ include "common.namespace" . }}-docker-registry-key"