blob: f54ffb3f95cd16223c931e139206dbeae2a9e36d [file] [log] [blame]
BorislavG5f3b6192018-03-25 18:12:38 +03001# Copyright © 2017 Amdocs, Bell Canada
Mukul7de56c82018-09-04 08:03:27 +00002# Modifications Copyright © 2018 AT&T
BorislavG5f3b6192018-03-25 18:12:38 +03003#
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.
15
16apiVersion: extensions/v1beta1
Michael O'Brien286725f2018-05-18 01:51:02 -040017kind: DaemonSet
BorislavG5f3b6192018-03-25 18:12:38 +030018metadata:
19 name: {{ include "common.fullname" . }}
20 namespace: {{ include "common.namespace" . }}
21 labels:
22 app: {{ include "common.name" . }}
23 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
24 release: {{ .Release.Name }}
25 heritage: {{ .Release.Service }}
26spec:
BorislavG5f3b6192018-03-25 18:12:38 +030027 template:
28 metadata:
29 labels:
30 app: {{ include "common.name" . }}
31 release: {{ .Release.Name }}
32 spec:
33 initContainers:
34 - command:
35 - /root/ready.py
36 args:
37 - --container-name
38 - log-elasticsearch
39 env:
40 - name: NAMESPACE
41 valueFrom:
42 fieldRef:
43 apiVersion: v1
44 fieldPath: metadata.namespace
45 image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
46 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
47 name: {{ include "common.name" . }}-readiness
48 containers:
49 - name: {{ include "common.name" . }}
50 image: "{{ .Values.global.loggingRepository| default .Values.loggingRepository }}/{{ .Values.image }}"
51 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
52 ports:
53 - containerPort: {{ .Values.service.internalPort }}
54 name: {{ .Values.service.name }}
BorislavG2cf26842018-04-08 17:50:07 +030055 - containerPort: {{ .Values.service.internalPort2 }}
56 name: {{ .Values.service.name2 }}
BorislavG5f3b6192018-03-25 18:12:38 +030057 readinessProbe:
58 tcpSocket:
59 port: {{ .Values.service.internalPort }}
60 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
61 periodSeconds: {{ .Values.readiness.periodSeconds }}
62# disable liveness probe when breakpoints set in debugger
63 # so K8s doesn't restart unresponsive container
64 {{- if eq .Values.liveness.enabled true }}
65 livenessProbe:
66 tcpSocket:
67 port: {{ .Values.service.internalPort }}
68 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
69 periodSeconds: {{ .Values.liveness.periodSeconds }}
70 {{ end -}}
71 env:
72 volumeMounts:
73 - mountPath: /etc/localtime
74 name: localtime
75 readOnly: true
root4565d0a2018-04-04 17:21:02 +000076 - mountPath: /usr/share/logstash/config/
77 name: {{ include "common.fullname" . }}-config
78 - mountPath: /usr/share/logstash/pipeline/
79 name: {{ include "common.fullname" . }}-pipeline
BorislavG5f3b6192018-03-25 18:12:38 +030080 resources:
81{{ toYaml .Values.resources | indent 12 }}
82 {{- if .Values.nodeSelector }}
83 nodeSelector:
84{{ toYaml .Values.nodeSelector | indent 10 }}
85 {{- end -}}
86 {{- if .Values.affinity }}
87 affinity:
88{{ toYaml .Values.affinity | indent 10 }}
89 {{- end }}
90 volumes:
91 - name: localtime
92 hostPath:
93 path: /etc/localtime
root4565d0a2018-04-04 17:21:02 +000094 - name: {{ include "common.fullname" . }}-config
BorislavG5f3b6192018-03-25 18:12:38 +030095 configMap:
96 name: {{ include "common.fullname" . }}
97 items:
98 - key: logstash.yml
99 path: logstash.yml
root4565d0a2018-04-04 17:21:02 +0000100 - name: {{ include "common.fullname" . }}-pipeline
101 configMap:
102 name: {{ include "common.fullname" . }}
103 items:
BorislavG5f3b6192018-03-25 18:12:38 +0300104 - key: onap-pipeline.conf
105 path: onap-pipeline.conf
106 imagePullSecrets:
107 - name: "{{ include "common.namespace" . }}-docker-registry-key"