Skip to content

Commit 1dd11d4

Browse files
committed
Bump kibana image to 4.0.1
1 parent bcd1920 commit 1dd11d4

File tree

3 files changed

+23
-16
lines changed

3 files changed

+23
-16
lines changed

kibana/Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM dockerfile/java:oracle-java8
22

3-
ENV KIBANA_PKG_NAME kibana-4.0.0-BETA2
3+
ENV KIBANA_PKG_NAME kibana-4.0.1-linux-x64
44

55
RUN \
66
cd /tmp && \
@@ -13,8 +13,8 @@ ENV KIBANA_HOST 0.0.0.0
1313
ENV ES_URL http://example.es.com:9200
1414
ENV KIBANA_INDEX .kibana
1515
ENV APP_ID discover
16-
ENV REQUEST_TIMEOUT 60
17-
ENV SHARD_TIMEOUT 30000
16+
ENV REQUEST_TIMEOUT 300000
17+
ENV SHARD_TIMEOUT 0
1818
ENV VERIFY_SSL false
1919

2020
ADD kibana.yml /kibana/config/kibana.yml

kibana/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
# Usage
66

77
```shell
8-
$ docker run -d -p 8080:5601 \
9-
-e ES_URL=http://172.17.0.13:9200 \
10-
seapy/kibana:4.0.0-BETA2
8+
$ docker run -d -p 5601:5601 \
9+
-e ES_URL=http://192.168.59.103:9200 \
10+
seapy/kibana:4.0.1
1111
```
1212

1313
# How to build
1414

1515
```shell
16-
$ docker build -t seapy/kibana:4.0.0-BETA2 .
16+
$ docker build -t seapy/kibana:4.0.1 .
1717
```

kibana/kibana.yml

+16-9
Original file line numberDiff line numberDiff line change
@@ -5,33 +5,40 @@ port: ::KIBANA_PORT::
55
host: "::KIBANA_HOST::"
66

77
# The Elasticsearch instance to use for all your queries.
8-
elasticsearch: "::ES_URL::"
8+
elasticsearch_url: "::ES_URL::"
9+
10+
# preserve_elasticsearch_host true will send the hostname specified in `elasticsearch`. If you set it to false,
11+
# then the host you use to connect to *this* Kibana instance will be sent.
12+
elasticsearch_preserve_host: true
913

1014
# Kibana uses an index in Elasticsearch to store saved searches, visualizations
1115
# and dashboards. It will create a new index if it doesn't already exist.
12-
kibanaIndex: "::KIBANA_INDEX::"
16+
kibana_index: "::KIBANA_INDEX::"
1317

1418
# The default application to load.
15-
defaultAppId: "::APP_ID::"
19+
default_app_id: "::APP_ID::"
1620

17-
# Time in seconds to wait for responses from the back end or elasticsearch.
18-
# Note this should always be higher than "shard_timeout".
21+
# Time in milliseconds to wait for responses from the back end or elasticsearch.
1922
# This must be > 0
2023
request_timeout: ::REQUEST_TIMEOUT::
2124

25+
2226
# Time in milliseconds for Elasticsearch to wait for responses from shards.
23-
# Note this should always be lower than "request_timeout".
24-
# Set to 0 to disable (not recommended).
27+
# Set to 0 to disable.
2528
shard_timeout: ::SHARD_TIMEOUT::
2629

2730
# Set to false to have a complete disregard for the validity of the SSL
2831
# certificate.
29-
verifySSL: ::VERIFY_SSL::
32+
verify_ssl: ::VERIFY_SSL::
3033

3134
# Plugins that are included in the build, and no longer found in the plugins/ folder
32-
bundledPluginIds:
35+
bundled_plugin_ids:
3336
- plugins/dashboard/index
3437
- plugins/discover/index
38+
- plugins/doc/index
39+
- plugins/kibana/index
40+
- plugins/markdown_vis/index
41+
- plugins/metric_vis/index
3542
- plugins/settings/index
3643
- plugins/table_vis/index
3744
- plugins/vis_types/index

0 commit comments

Comments
 (0)