about summary refs log tree commit diff
path: root/tools/elasticsearch/values.yaml
diff options
context:
space:
mode:
authormakefunstuff <[email protected]>2024-06-29 14:18:11 +0200
committermakefunstuff <[email protected]>2024-06-29 14:18:11 +0200
commit317fd9ffab1c3d9a00a75fe26249d29fd14786e8 (patch)
tree556550c970765dfb818125ddaf7208ce83c67286 /tools/elasticsearch/values.yaml
parent98a654bd9a944e98a1452e0a51c15ddc0817aa48 (diff)
downloadk3s-lab-317fd9ffab1c3d9a00a75fe26249d29fd14786e8.tar.gz
Gave up with elasticsearch will migrate to loki stack
Diffstat (limited to 'tools/elasticsearch/values.yaml')
-rw-r--r--tools/elasticsearch/values.yaml50
1 files changed, 0 insertions, 50 deletions
diff --git a/tools/elasticsearch/values.yaml b/tools/elasticsearch/values.yaml
deleted file mode 100644
index 61c7520..0000000
--- a/tools/elasticsearch/values.yaml
+++ /dev/null
@@ -1,50 +0,0 @@
-elasticsearch:
-  antiAffinity: "soft"
-  replicas: 3
-  minimumMasterNodes: 2
-  esJavaOpts: "-Xmx128m -Xms128m"
-  esConfig:
-    elasticsearch.yml: |
-      node.store.allow_mmap: false
-  volumeClaimTemplate:
-    accessModes: [ "ReadWriteOnce" ]
-    resources:
-      requests:
-        storage: 10Gi
-  labels:
-    app.kubernetes.io/name: elasticsearch
-  networkPolicy:
-    http:
-      enabled: true
-    transport:
-      enabled: true
-
-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.monitoring.svc.cluster.local: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"