blob: 4c349ef4b9812d072df44ec0d9b45cfd401a37a0 [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.
BorislavG0433c912018-03-21 18:35:30 +020014apiVersion: extensions/v1beta1
15kind: 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 "+" "_" }}
22 release: {{ .Release.Name }}
23 heritage: {{ .Release.Service }}
24spec:
25 replicas: {{ .Values.replicaCount }}
26 template:
27 metadata:
28 labels:
29 app: {{ include "common.name" . }}
30 release: {{ .Release.Name }}
Huabing Zhao81b89762018-07-30 06:33:03 +000031 annotations:
32 sidecar.istio.io/inject: "{{.Values.istioSidecar}}"
BorislavG0433c912018-03-21 18:35:30 +020033 spec:
Huabing Zhao8f7cc812018-08-08 06:27:37 +000034 serviceAccountName: msb
BorislavG0433c912018-03-21 18:35:30 +020035 initContainers:
36 - command:
37 - /root/ready.py
38 args:
39 - --container-name
40 - msb-consul
41 env:
42 - name: NAMESPACE
43 valueFrom:
44 fieldRef:
45 apiVersion: v1
46 fieldPath: metadata.namespace
47 image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
48 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
49 name: {{ include "common.name" . }}-readiness
50 containers:
51 - name: {{ include "common.name" . }}
BorislavGdf11cd52018-05-06 12:55:20 +000052 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
BorislavG0433c912018-03-21 18:35:30 +020053 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
54 ports:
55 - containerPort: {{ .Values.service.internalPort }}
56 # disable liveness probe when breakpoints set in debugger
57 # so K8s doesn't restart unresponsive container
58 {{- if eq .Values.liveness.enabled true }}
59 livenessProbe:
60 tcpSocket:
61 port: {{ .Values.service.internalPort }}
62 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
63 periodSeconds: {{ .Values.liveness.periodSeconds }}
64 {{ end -}}
65 readinessProbe:
66 tcpSocket:
67 port: {{ .Values.service.internalPort }}
68 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
69 periodSeconds: {{ .Values.readiness.periodSeconds }}
70 env:
71 - name: CONSUL_IP
BorislavG6c7ecf02018-04-01 13:08:37 +030072 value: msb-consul.{{ include "common.namespace" . }}
BorislavG0433c912018-03-21 18:35:30 +020073 volumeMounts:
74 - mountPath: /etc/localtime
75 name: localtime
76 readOnly: true
LiZi4dd8e112018-04-09 07:34:04 -040077 - mountPath: /usr/local/discover-works/logs
Li Zic5290dc2018-08-06 09:26:27 +000078 name: {{ include "common.fullname" . }}-logs
BorislavG0433c912018-03-21 18:35:30 +020079 resources:
80{{ toYaml .Values.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 }}
LiZi4dd8e112018-04-09 07:34:04 -040089
Li Zic5290dc2018-08-06 09:26:27 +000090 # Filebeat sidecar container
91 - name: {{ include "common.name" . }}-filebeat-onap
LiZi4dd8e112018-04-09 07:34:04 -040092 image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
93 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
94 volumeMounts:
Li Zic5290dc2018-08-06 09:26:27 +000095 - name: {{ include "common.fullname" . }}-filebeat-conf
96 mountPath: /usr/share/filebeat/filebeat.yml
97 subPath: filebeat.yml
98 - name: {{ include "common.fullname" . }}-data-filebeat
99 mountPath: /usr/share/filebeat/data
100 - name: {{ include "common.fullname" . }}-logs
101 mountPath: /var/log/onap/msb/msb-discovery
102 - mountPath: /opt/ajsc/etc/config/logback.xml
103 name: {{ include "common.fullname" . }}-log-conf
104 subPath: logback.xml
BorislavG0433c912018-03-21 18:35:30 +0200105 volumes:
Li Zic5290dc2018-08-06 09:26:27 +0000106 - name: {{ include "common.fullname" . }}-log-conf
107 configMap:
108 name: {{ include "common.fullname" . }}-log
109 - name: {{ include "common.fullname" . }}-filebeat-conf
110 configMap:
111 name: {{ .Release.Name }}-msb-filebeat-configmap
112 - name: {{ include "common.fullname" . }}-data-filebeat
113 emptyDir: {}
114 - name: {{ include "common.fullname" . }}-logs
115 emptyDir: {}
BorislavG0433c912018-03-21 18:35:30 +0200116 - name: localtime
117 hostPath:
118 path: /etc/localtime
BorislavG0433c912018-03-21 18:35:30 +0200119 imagePullSecrets:
120 - name: "{{ include "common.namespace" . }}-docker-registry-key"