blob: 33bcc2001ac5c1cd0a87f459325dd5bbb87d5e73 [file] [log] [blame]
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00001# 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
yurynfcef9942017-10-26 17:10:50 +030015#{{ if not .Values.disableLogLogstash }}
Itay Hasside2da86d2017-08-24 12:54:42 +000016apiVersion: extensions/v1beta1
17kind: Deployment
18metadata:
19 labels:
20 app: logstash
BorislavG8bfc6cf2018-02-27 15:04:26 +000021 name: log-logstash
22 namespace: {{ .Values.nsPrefix }}
Itay Hasside2da86d2017-08-24 12:54:42 +000023spec:
vaibhav_16decb7d08b22018-02-16 06:33:55 +000024 replicas: {{ .Values.logstashReplicas }}
Itay Hasside2da86d2017-08-24 12:54:42 +000025 selector:
26 matchLabels:
27 app: logstash
28 template:
29 metadata:
30 labels:
31 app: logstash
BorislavG8bfc6cf2018-02-27 15:04:26 +000032 name: log-logstash
Itay Hasside2da86d2017-08-24 12:54:42 +000033 spec:
kiranya7a318212017-11-22 13:40:04 +000034 initContainers:
35 - command:
36 - /root/ready.py
37 args:
38 - --container-name
39 - elasticsearch
40 env:
41 - name: NAMESPACE
42 valueFrom:
43 fieldRef:
44 apiVersion: v1
45 fieldPath: metadata.namespace
46 image: {{ .Values.image.readiness }}
47 imagePullPolicy: {{ .Values.pullPolicy }}
48 name: logstash-readiness
Itay Hasside2da86d2017-08-24 12:54:42 +000049 containers:
50 - name: logstash
51 image: {{ .Values.image.logstash }}
52 ports:
mayankg2703229e5372018-01-29 09:33:56 +000053 - containerPort: 5044
Itay Hasside2da86d2017-08-24 12:54:42 +000054 name: transport
55 protocol: TCP
mayankg2703229e5372018-01-29 09:33:56 +000056 - containerPort: 9600
57 name: http
58 protocol: TCP
Itay Hasside2da86d2017-08-24 12:54:42 +000059 readinessProbe:
60 tcpSocket:
61 port: 5044
62 volumeMounts:
63 - mountPath: /usr/share/logstash/config/
64 name: logstash-conf
65 - mountPath: /usr/share/logstash/pipeline/
66 name: logstash-pipeline
67 volumes:
68 - name: logstash-conf
69 configMap:
BorislavG8bfc6cf2018-02-27 15:04:26 +000070 name: log-logstash-configmap
Itay Hasside2da86d2017-08-24 12:54:42 +000071 items:
72 - key: logstash.yml
73 path: logstash.yml
74 - name: logstash-pipeline
75 configMap:
BorislavG8bfc6cf2018-02-27 15:04:26 +000076 name: log-logstash-configmap
Itay Hasside2da86d2017-08-24 12:54:42 +000077 items:
78 - key: onap-pipeline.conf
79 path: onap-pipeline.conf
80
81---
82apiVersion: v1
83kind: ConfigMap
84metadata:
BorislavG8bfc6cf2018-02-27 15:04:26 +000085 name: log-logstash-configmap
86 namespace: {{ .Values.nsPrefix }}
Itay Hasside2da86d2017-08-24 12:54:42 +000087data:
BorislavG8bfc6cf2018-02-27 15:04:26 +000088{{ tpl (.Files.Glob "resources/logstash/conf/logstash.yml").AsConfig . | indent 2 }}
89{{ tpl (.Files.Glob "resources/logstash/pipeline/onap-pipeline.conf").AsConfig . | indent 2 }}
Kerenj353ce1d2017-11-12 11:08:28 +020090#{{ end }}