blob: 00d91fe64676dc0124a62af05a34ce63bbcc35f6 [file] [log] [blame]
Jakub Latusekbe896842020-10-21 13:36:29 +02001{{/*
Prateekinlinux445a18e2018-08-01 06:48:33 +00002# Copyright © 2018 Amdocs, Bell Canada , ZTE
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.
Jakub Latusekbe896842020-10-21 13:36:29 +020015*/}}
Grzegorz-Lis055b6ce2020-07-23 10:03:54 +020016apiVersion: apps/v1
BorislavG0433c912018-03-21 18:35:30 +020017kind: Deployment
18metadata:
19 name: {{ include "common.fullname" . }}
20 namespace: {{ include "common.namespace" . }}
21 labels:
22 app: {{ include "common.name" . }}
23 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010024 release: {{ include "common.release" . }}
BorislavG0433c912018-03-21 18:35:30 +020025 heritage: {{ .Release.Service }}
26spec:
Grzegorz-Lis055b6ce2020-07-23 10:03:54 +020027 selector:
28 matchLabels:
29 app: {{ include "common.name" . }}
BorislavG0433c912018-03-21 18:35:30 +020030 replicas: {{ .Values.replicaCount }}
31 template:
32 metadata:
33 labels:
34 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010035 release: {{ include "common.release" . }}
Huabing Zhao81b89762018-07-30 06:33:03 +000036 annotations:
37 sidecar.istio.io/inject: "{{.Values.istioSidecar}}"
BorislavG0433c912018-03-21 18:35:30 +020038 spec:
39 initContainers:
40 - command:
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020041 - /app/ready.py
BorislavG0433c912018-03-21 18:35:30 +020042 args:
43 - --container-name
44 - msb-consul
45 env:
46 - name: NAMESPACE
47 valueFrom:
48 fieldRef:
49 apiVersion: v1
50 fieldPath: metadata.namespace
Sylvain Desbureauxfd2f8b82020-11-21 22:50:06 +010051 image: {{ include "repositoryGenerator.image.readiness" . }}
BorislavG0433c912018-03-21 18:35:30 +020052 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
53 name: {{ include "common.name" . }}-readiness
54 containers:
55 - name: {{ include "common.name" . }}
Sylvain Desbureauxfd2f8b82020-11-21 22:50:06 +010056 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
BorislavG0433c912018-03-21 18:35:30 +020057 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
58 ports:
59 - containerPort: {{ .Values.service.internalPort }}
60 # disable liveness probe when breakpoints set in debugger
61 # so K8s doesn't restart unresponsive container
62 {{- if eq .Values.liveness.enabled true }}
63 livenessProbe:
64 tcpSocket:
65 port: {{ .Values.service.internalPort }}
66 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
67 periodSeconds: {{ .Values.liveness.periodSeconds }}
68 {{ end -}}
69 readinessProbe:
70 tcpSocket:
71 port: {{ .Values.service.internalPort }}
72 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
73 periodSeconds: {{ .Values.readiness.periodSeconds }}
74 env:
75 - name: CONSUL_IP
BorislavG6c7ecf02018-04-01 13:08:37 +030076 value: msb-consul.{{ include "common.namespace" . }}
BorislavG0433c912018-03-21 18:35:30 +020077 volumeMounts:
78 - mountPath: /etc/localtime
79 name: localtime
80 readOnly: true
LiZi4dd8e112018-04-09 07:34:04 -040081 - mountPath: /usr/local/discover-works/logs
Li Zic5290dc2018-08-06 09:26:27 +000082 name: {{ include "common.fullname" . }}-logs
BorislavG0433c912018-03-21 18:35:30 +020083 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +000084{{ include "common.resources" . | indent 12 }}
BorislavG0433c912018-03-21 18:35:30 +020085 {{- if .Values.nodeSelector }}
86 nodeSelector:
87{{ toYaml .Values.nodeSelector | indent 10 }}
88 {{- end -}}
89 {{- if .Values.affinity }}
90 affinity:
91{{ toYaml .Values.affinity | indent 10 }}
92 {{- end }}
LiZi4dd8e112018-04-09 07:34:04 -040093
Li Zic5290dc2018-08-06 09:26:27 +000094 # Filebeat sidecar container
95 - name: {{ include "common.name" . }}-filebeat-onap
Sylvain Desbureauxfd2f8b82020-11-21 22:50:06 +010096 image: {{ include "repositoryGenerator.image.logging" . }}
LiZi4dd8e112018-04-09 07:34:04 -040097 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
98 volumeMounts:
Li Zic5290dc2018-08-06 09:26:27 +000099 - name: {{ include "common.fullname" . }}-filebeat-conf
100 mountPath: /usr/share/filebeat/filebeat.yml
101 subPath: filebeat.yml
102 - name: {{ include "common.fullname" . }}-data-filebeat
103 mountPath: /usr/share/filebeat/data
104 - name: {{ include "common.fullname" . }}-logs
105 mountPath: /var/log/onap/msb/msb-discovery
106 - mountPath: /opt/ajsc/etc/config/logback.xml
107 name: {{ include "common.fullname" . }}-log-conf
108 subPath: logback.xml
farida azmya4478e82021-10-11 13:48:11 +0200109 serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
BorislavG0433c912018-03-21 18:35:30 +0200110 volumes:
Li Zic5290dc2018-08-06 09:26:27 +0000111 - name: {{ include "common.fullname" . }}-log-conf
112 configMap:
113 name: {{ include "common.fullname" . }}-log
114 - name: {{ include "common.fullname" . }}-filebeat-conf
115 configMap:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100116 name: {{ include "common.release" . }}-msb-filebeat-configmap
Li Zic5290dc2018-08-06 09:26:27 +0000117 - name: {{ include "common.fullname" . }}-data-filebeat
118 emptyDir: {}
119 - name: {{ include "common.fullname" . }}-logs
120 emptyDir: {}
BorislavG0433c912018-03-21 18:35:30 +0200121 - name: localtime
122 hostPath:
123 path: /etc/localtime
BorislavG0433c912018-03-21 18:35:30 +0200124 imagePullSecrets:
125 - name: "{{ include "common.namespace" . }}-docker-registry-key"