mirror of
https://github.com/jprdonnelly/kubernetes-cluster.git
synced 2025-12-19 18:05:19 -05:00
66 lines
1.5 KiB
YAML
66 lines
1.5 KiB
YAML
# Default values for elk.
|
|
# This is a YAML-formatted file.
|
|
# Declare variables to be passed into your templates.
|
|
elasticsearch:
|
|
enabled: true
|
|
|
|
kibana:
|
|
enabled: true
|
|
env:
|
|
ELASTICSEARCH_HOSTS: http://{{ .Release.Name }}-elasticsearch-client:9200
|
|
|
|
logstash:
|
|
enabled: false
|
|
# elasticsearch:
|
|
# host: elastic-stack-elasticsearch-client
|
|
|
|
filebeat:
|
|
enabled: true
|
|
# config:
|
|
# output.file.enabled: false
|
|
# output.logstash:
|
|
# hosts: ["elastic-stack-logstash:5044"]
|
|
# indexTemplateLoad:
|
|
# - elastic-stack-elasticsearch-client:9200
|
|
|
|
fluentd:
|
|
enabled: false
|
|
|
|
fluent-bit:
|
|
enabled: false
|
|
|
|
fluentd-elasticsearch:
|
|
enabled: true
|
|
|
|
nginx-ldapauth-proxy:
|
|
enabled: false
|
|
# Example config to get it working with ELK. Adjust as you need to.
|
|
# proxy:
|
|
# port: 5601
|
|
# # This is the internal hostname for the kibana service
|
|
# host: "elk-kibana.default.svc.cluster.local"
|
|
# authName: "ELK:Infrastructure:LDAP"
|
|
# ldapHost: "ldap.example.com"
|
|
# ldapDN: "dc=example,dc=com"
|
|
# ldapFilter: "objectClass=organizationalPerson"
|
|
# ldapBindDN: "cn=reader,dc=example,dc=com"
|
|
# requires:
|
|
# - name: "ELK-USER"
|
|
# filter: "cn=elkuser,ou=groups,dc=example,dc=com"
|
|
# ingress:
|
|
# enabled: true
|
|
# hosts:
|
|
# - "elk.example.com"
|
|
# annotations:
|
|
# kubernetes.io/ingress.class: nginx
|
|
# tls:
|
|
# - hosts:
|
|
# - elk.example.com
|
|
# secretName: example-elk-tls
|
|
# secrets:
|
|
# ldapBindPassword: PASSWORD
|
|
elasticsearch-curator:
|
|
enabled: true
|
|
|
|
elasticsearch-exporter:
|
|
enabled: false |