[7.x] [docker] Replace deprecated server.host value in default config (#111467)

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
Jonathan Budzenski 2021-09-08 14:35:31 -05:00 committed by GitHub
parent 788f18070b
commit d39a53f274
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -144,7 +144,7 @@ The following settings have different default values when using the Docker
images:
[horizontal]
`server.host`:: `"0"`
`server.host`:: `"0.0.0.0"`
`elasticsearch.hosts`:: `http://elasticsearch:9200`
`monitoring.ui.container.elasticsearch.enabled`:: `true`

View file

@ -17,7 +17,7 @@ function generator({ imageFlavor }: TemplateContext) {
#
# Default Kibana configuration for docker target
server.host: "0"
server.host: "0.0.0.0"
server.shutdownTimeout: "5s"
elasticsearch.hosts: [ "http://elasticsearch:9200" ]
${!imageFlavor ? 'monitoring.ui.container.elasticsearch.enabled: true' : ''}