From 5672afe29eb67ac77f262bee85c5b956107626a5 Mon Sep 17 00:00:00 2001 From: Ismail Alidzhikov Date: Thu, 20 Jun 2019 12:52:50 +0300 Subject: [PATCH] [stable/elastic-exporter] Fix wrong default value (#13996) Signed-off-by: ialidzhikov --- stable/elasticsearch-exporter/Chart.yaml | 2 +- stable/elasticsearch-exporter/README.md | 2 +- stable/elasticsearch-exporter/values.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/stable/elasticsearch-exporter/Chart.yaml b/stable/elasticsearch-exporter/Chart.yaml index 6e1bf7b860..ca3616efca 100644 --- a/stable/elasticsearch-exporter/Chart.yaml +++ b/stable/elasticsearch-exporter/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 description: Elasticsearch stats exporter for Prometheus name: elasticsearch-exporter -version: 1.4.0 +version: 1.4.1 appVersion: 1.0.2 home: https://github.com/justwatchcom/elasticsearch_exporter sources: diff --git a/stable/elasticsearch-exporter/README.md b/stable/elasticsearch-exporter/README.md index f9a81fb3b9..70328278ec 100644 --- a/stable/elasticsearch-exporter/README.md +++ b/stable/elasticsearch-exporter/README.md @@ -59,7 +59,7 @@ Parameter | Description | Default `service.metricsPort.name` | name for the http service | `http` `service.annotations` | Annotations on the http service | `{}` `service.labels` | Additional labels for the service definition | `{}` -`es.uri` | address of the Elasticsearch node to connect to | `localhost:9200` +`es.uri` | address of the Elasticsearch node to connect to | `http://localhost:9200` `es.all` | if `true`, query stats for all nodes in the cluster, rather than just the node we connect to | `true` `es.indices` | if true, query stats for all indices in the cluster | `true` `es.timeout` | timeout for trying to get stats from Elasticsearch | `30s` diff --git a/stable/elasticsearch-exporter/values.yaml b/stable/elasticsearch-exporter/values.yaml index 8ace3c3d4e..03ac25315c 100644 --- a/stable/elasticsearch-exporter/values.yaml +++ b/stable/elasticsearch-exporter/values.yaml @@ -49,7 +49,7 @@ es: ## of a remote Elasticsearch server. When basic auth is needed, ## specify as: ://:@:. e.g., http://admin:pass@localhost:9200. ## - uri: localhost:9200 + uri: http://localhost:9200 ## If true, query stats for all nodes in the cluster, rather than just the ## node we connect to.