From bca1e989ee38cb95815760188e8aee4286b0df1c Mon Sep 17 00:00:00 2001 From: Naseem Date: Thu, 16 May 2019 04:31:49 -0400 Subject: [PATCH] [stable/kibana] Add upgrading section to README (#13720) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Add upgrading section to README Signed-off-by: Naseem * Update stable/kibana/README.md Co-Authored-By: Cédric de Saint Martin Signed-off-by: Naseem * Bump major version Signed-off-by: Naseem --- stable/kibana/Chart.yaml | 2 +- stable/kibana/README.md | 6 ++++++ stable/kibana/values.yaml | 9 +++++---- 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/stable/kibana/Chart.yaml b/stable/kibana/Chart.yaml index f06c4c7815..f726766810 100644 --- a/stable/kibana/Chart.yaml +++ b/stable/kibana/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: kibana -version: 2.3.1 +version: 3.0.0 appVersion: 6.7.0 description: Kibana is an open source data visualization plugin for Elasticsearch icon: https://raw.githubusercontent.com/elastic/kibana/master/src/ui/public/icons/kibana-color.svg diff --git a/stable/kibana/README.md b/stable/kibana/README.md index c900c88fe0..dbe510d20f 100644 --- a/stable/kibana/README.md +++ b/stable/kibana/README.md @@ -138,3 +138,9 @@ $ helm install stable/kibana --name my-release -f values.yaml ## Dasboard import - A dashboard for dashboardImport.dashboards can be a JSON or a download url to a JSON file. + +## Upgrading + +### To 2.3.0 + +The default value of `elasticsearch.url` (for kibana < 6.6) has been removed in favor of `elasticsearch.hosts` (for kibana >= 6.6). diff --git a/stable/kibana/values.yaml b/stable/kibana/values.yaml index 38039b4f3e..635d9473f5 100644 --- a/stable/kibana/values.yaml +++ b/stable/kibana/values.yaml @@ -11,10 +11,10 @@ commandline: args: [] env: {} - # All Kibana configuration options are adjustable via env vars. - # To adjust a config option to an env var uppercase + replace `.` with `_` - # Ref: https://www.elastic.co/guide/en/kibana/current/settings.html - # + ## All Kibana configuration options are adjustable via env vars. + ## To adjust a config option to an env var uppercase + replace `.` with `_` + ## Ref: https://www.elastic.co/guide/en/kibana/current/settings.html + ## For kibana < 6.6, use ELASTICSEARCH_URL instead # ELASTICSEARCH_HOSTS: http://elasticsearch-client:9200 # SERVER_PORT: 5601 # LOGGING_VERBOSE: "true" @@ -25,6 +25,7 @@ files: ## Default Kibana configuration from kibana-docker. server.name: kibana server.host: "0" + ## For kibana < 6.6, use elasticsearch.url instead elasticsearch.hosts: http://elasticsearch:9200 ## Custom config properties below