Skip to content
This repository has been archived by the owner on Feb 22, 2022. It is now read-only.

[stable/kibana] Set hosts as env var only #14122

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion stable/kibana/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
name: kibana
version: 3.0.0
version: 3.1.0
naseemkullah marked this conversation as resolved.
Show resolved Hide resolved
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
Expand Down
4 changes: 4 additions & 0 deletions stable/kibana/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,10 @@ $ helm install stable/kibana --name my-release -f values.yaml

## Upgrading

### To 3.1.0

Elasticsearch url/hosts now only managed via ENV_VAR by default. There is no longer a default value within `.Values.files.kibana.yml`.

### 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).
6 changes: 2 additions & 4 deletions stable/kibana/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ testFramework:
commandline:
args: []

env: {}
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
## For kibana < 6.6, use ELASTICSEARCH_URL instead
# ELASTICSEARCH_HOSTS: http://elasticsearch-client:9200
ELASTICSEARCH_HOSTS: http://elasticsearch-client:9200
# SERVER_PORT: 5601
# LOGGING_VERBOSE: "true"
# SERVER_DEFAULTROUTE: "/app/kibana"
Expand All @@ -25,8 +25,6 @@ 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
## Ref: https://www.elastic.co/guide/en/kibana/current/settings.html
Expand Down