diff options
author | makefunstuff <[email protected]> | 2024-06-28 23:34:17 +0200 |
---|---|---|
committer | makefunstuff <[email protected]> | 2024-06-28 23:34:17 +0200 |
commit | 0495bb3709dd68b9aecd459cd4f2f1cb14fb8f87 (patch) | |
tree | b455091168cd0e0c00c4dc1a4e86354551cd9427 /tools/elasticsearch | |
parent | 794f1de47aa469fe0a54800bdba28120247311b8 (diff) | |
download | k3s-lab-0495bb3709dd68b9aecd459cd4f2f1cb14fb8f87.tar.gz |
allow grafana to see elasticsearch
Diffstat (limited to '')
-rw-r--r-- | tools/elasticsearch/values.yaml | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/tools/elasticsearch/values.yaml b/tools/elasticsearch/values.yaml index 5d8df08..8037406 100644 --- a/tools/elasticsearch/values.yaml +++ b/tools/elasticsearch/values.yaml @@ -10,11 +10,23 @@ elasticsearch: labels: app.kubernetes.io/name: elasticsearch networkPolicy: - http: enabled: true - transport: - enabled: true - + allowExternal: false + ingress: + - from: + - podSelector: + matchLabels: + app.kubernetes.io/name: logstash + ports: + - protocol: TCP + port: 9200 + - from: + - podSelector: + matchLabels: + app.kubernetes.io/name: grafana + ports: + - protocol: TCP + port: 9200 logstash: enabled: true replicas: 1 |