about summary refs log tree commit diff
path: root/tools/elasticsearch/values.yaml
blob: 6db020b9a69e51c246ce80d6a76140be44df05b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
elasticsearch:
  replicas: 2
  esJavaOpts: "-Xmx1g -Xms1g"
  volumeClaimTemplate:
    accessModes: [ "ReadWriteOnce" ]
    resources:
      requests:
        cpu: "2000m"
        memory: "8Gi"
        storage: 60Gi
  labels:
    app: elasticsearch-master
  networkPolicy:
    http:
      enabled: true
    transport:
      enabled: true
  protocol: http
  httpPort: 9200
  transportPort: 9300

logstash:
  enabled: true
  replicas: 1
  volumeClaimTemplate:
    accessModes: [ "ReadWriteOnce" ]
    resources:
      requests:
        storage: 10Gi
  logstashConfig:
    logstash.yml: |
      http.host: "0.0.0.0"
      xpack.monitoring.elasticsearch.hosts: [ "http://elasticsearch-master:9200" ]
  logstashPipeline:
    logstash.conf: |
      input {
        tcp {
          port => 5044
          codec => json
        }
      }
      output {
        elasticsearch {
          hosts => ["http://elasticsearch-master.monitoring.svc.cluster.local:9200"]
          index => "logstash-%{+YYYY.MM.dd}"
        }
      }
  labels:
    app.kubernetes.io/name: logstash
    elasticsearch-master-http-client: "true"