diff options
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 |