blob: b43cb00df41680b443d1bf20fd18e77369d4e2ae [file] [log] [blame]
Prateekinlinux445a18e2018-08-01 06:48:33 +00001# Copyright © 2018 Amdocs, Bell Canada , ZTE
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.
Grzegorz-Lis055b6ce2020-07-23 10:03:54 +020014apiVersion: apps/v1
BorislavG0433c912018-03-21 18:35:30 +020015kind: Deployment
16metadata:
17 name: {{ include "common.fullname" . }}
18 namespace: {{ include "common.namespace" . }}
19 labels:
20 app: {{ include "common.name" . }}
21 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010022 release: {{ include "common.release" . }}
BorislavG0433c912018-03-21 18:35:30 +020023 heritage: {{ .Release.Service }}
24spec:
Grzegorz-Lis055b6ce2020-07-23 10:03:54 +020025 selector:
26 matchLabels:
27 app: {{ include "common.name" . }}
BorislavG0433c912018-03-21 18:35:30 +020028 replicas: {{ .Values.replicaCount }}
29 template:
30 metadata:
31 labels:
32 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010033 release: {{ include "common.release" . }}
Huabing Zhao81b89762018-07-30 06:33:03 +000034 annotations:
35 sidecar.istio.io/inject: "{{.Values.istioSidecar}}"
BorislavG0433c912018-03-21 18:35:30 +020036 spec:
Huabing Zhao8f7cc812018-08-08 06:27:37 +000037 serviceAccountName: msb
BorislavG0433c912018-03-21 18:35:30 +020038 initContainers:
39 - command:
40 - /root/ready.py
41 args:
42 - --container-name
43 - msb-consul
44 env:
45 - name: NAMESPACE
46 valueFrom:
47 fieldRef:
48 apiVersion: v1
49 fieldPath: metadata.namespace
50 image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
51 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
52 name: {{ include "common.name" . }}-readiness
53 containers:
54 - name: {{ include "common.name" . }}
BorislavGdf11cd52018-05-06 12:55:20 +000055 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
BorislavG0433c912018-03-21 18:35:30 +020056 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
57 ports:
58 - containerPort: {{ .Values.service.internalPort }}
59 # disable liveness probe when breakpoints set in debugger
60 # so K8s doesn't restart unresponsive container
61 {{- if eq .Values.liveness.enabled true }}
62 livenessProbe:
63 tcpSocket:
64 port: {{ .Values.service.internalPort }}
65 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
66 periodSeconds: {{ .Values.liveness.periodSeconds }}
67 {{ end -}}
68 readinessProbe:
69 tcpSocket:
70 port: {{ .Values.service.internalPort }}
71 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
72 periodSeconds: {{ .Values.readiness.periodSeconds }}
73 env:
74 - name: CONSUL_IP
BorislavG6c7ecf02018-04-01 13:08:37 +030075 value: msb-consul.{{ include "common.namespace" . }}
BorislavG0433c912018-03-21 18:35:30 +020076 volumeMounts:
77 - mountPath: /etc/localtime
78 name: localtime
79 readOnly: true
LiZi4dd8e112018-04-09 07:34:04 -040080 - mountPath: /usr/local/discover-works/logs
Li Zic5290dc2018-08-06 09:26:27 +000081 name: {{ include "common.fullname" . }}-logs
BorislavG0433c912018-03-21 18:35:30 +020082 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +000083{{ include "common.resources" . | indent 12 }}
BorislavG0433c912018-03-21 18:35:30 +020084 {{- if .Values.nodeSelector }}
85 nodeSelector:
86{{ toYaml .Values.nodeSelector | indent 10 }}
87 {{- end -}}
88 {{- if .Values.affinity }}
89 affinity:
90{{ toYaml .Values.affinity | indent 10 }}
91 {{- end }}
LiZi4dd8e112018-04-09 07:34:04 -040092
Li Zic5290dc2018-08-06 09:26:27 +000093 # Filebeat sidecar container
94 - name: {{ include "common.name" . }}-filebeat-onap
LiZi4dd8e112018-04-09 07:34:04 -040095 image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
96 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
97 volumeMounts:
Li Zic5290dc2018-08-06 09:26:27 +000098 - name: {{ include "common.fullname" . }}-filebeat-conf
99 mountPath: /usr/share/filebeat/filebeat.yml
100 subPath: filebeat.yml
101 - name: {{ include "common.fullname" . }}-data-filebeat
102 mountPath: /usr/share/filebeat/data
103 - name: {{ include "common.fullname" . }}-logs
104 mountPath: /var/log/onap/msb/msb-discovery
105 - mountPath: /opt/ajsc/etc/config/logback.xml
106 name: {{ include "common.fullname" . }}-log-conf
107 subPath: logback.xml
BorislavG0433c912018-03-21 18:35:30 +0200108 volumes:
Li Zic5290dc2018-08-06 09:26:27 +0000109 - name: {{ include "common.fullname" . }}-log-conf
110 configMap:
111 name: {{ include "common.fullname" . }}-log
112 - name: {{ include "common.fullname" . }}-filebeat-conf
113 configMap:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100114 name: {{ include "common.release" . }}-msb-filebeat-configmap
Li Zic5290dc2018-08-06 09:26:27 +0000115 - name: {{ include "common.fullname" . }}-data-filebeat
116 emptyDir: {}
117 - name: {{ include "common.fullname" . }}-logs
118 emptyDir: {}
BorislavG0433c912018-03-21 18:35:30 +0200119 - name: localtime
120 hostPath:
121 path: /etc/localtime
BorislavG0433c912018-03-21 18:35:30 +0200122 imagePullSecrets:
123 - name: "{{ include "common.namespace" . }}-docker-registry-key"