Code development platform for open source projects from the European Union institutions :large_blue_circle: EU Login authentication by SMS has been phased out. To see alternatives please check here

Skip to content
Snippets Groups Projects
Commit 593b81a7 authored by Natalia Szakiel's avatar Natalia Szakiel
Browse files

added logstash

parent 7568a22e
Branches
Tags
3 merge requests!48Develop,!46Develop,!3Added filebeat eck
apiVersion: elasticsearch.k8s.elastic.co/v1
kind: Logstash
metadata:
name: {{ include "logstash.fullname" . }}
labels:
app: logstash
spec:
version: "{{ .Values.logstash.imageTag }}"
count: {{ .Values.logstash.replicas }}
config:
input {
beats {
port => 5044
}
}
output {
elasticsearch {
hosts => ["http://elasticsearch-es-http:9200"]
index => "%{[@metadata][beat]}-%{+YYYY.MM.dd}"
user => "elastic"
password => "your_password"
}
}
podTemplate:
spec:
containers:
- name: logstash
env:
- name: LS_JAVA_OPTS
value: "{{ .Values.logstash.env.LS_JAVA_OPTS }}"
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment