diff --git a/docs/CHANGELOG.asciidoc b/docs/CHANGELOG.asciidoc index 765f1949ff5f5..8aaf09812208f 100644 --- a/docs/CHANGELOG.asciidoc +++ b/docs/CHANGELOG.asciidoc @@ -8,6 +8,10 @@ :issue: https://github.com/elastic/kibana/issues/ :pull: https://github.com/elastic/kibana/pull/ +ifeval::["{version}"=="8.10.0"] +IMPORTANT: {kib} 8.10.0 has been withdrawn. +endif::[] + Review important information about the {kib} 8.x releases. * <> @@ -51,6 +55,10 @@ Review important information about the {kib} 8.x releases. [[release-notes-8.10.0]] == {kib} 8.10.0 +ifeval::["{version}"=="8.10.0"] +IMPORTANT: {kib} 8.10.0 has been withdrawn. +endif::[] + For information about the {kib} 8.10.0 release, review the following information. [float] diff --git a/docs/setup/docker.asciidoc b/docs/setup/docker.asciidoc index 4dcd80d1bfd66..802d0f6868bc9 100644 --- a/docs/setup/docker.asciidoc +++ b/docs/setup/docker.asciidoc @@ -105,6 +105,12 @@ docker exec -it es01 /usr/share/elasticsearch/bin/elasticsearch-create-enrollmen . Pull the {kib} Docker image. + -- +ifeval::["{version}"=="8.10.0"] +IMPORTANT: {kib} 8.10.0 has been withdrawn. +endif::[] + +ifeval::["{version}"!="8.10.0"] + ifeval::["{release-state}"=="unreleased"] WARNING: Version {version} has not yet been released. No Docker image is currently available for {kib} {version}. @@ -152,6 +158,7 @@ To regenerate the password, run: ---- docker exec -it es01 /usr/share/elasticsearch/bin/elasticsearch-reset-password -u elastic ---- +endif::[] [discrete] ==== Remove Docker containers @@ -200,11 +207,17 @@ services: By default, {kib} auto-generates a keystore file for secure settings at startup. To persist your {kibana-ref}/secure-settings.html[secure settings], use the `kibana-keystore` utility to bind-mount the parent directory of the keystore to the container. For example: +ifeval::["{version}"=="8.10.0"] +IMPORTANT: {kib} 8.10.0 has been withdrawn. +endif::[] + +ifeval::["{version}"!="8.10.0"] ["source","sh",subs="attributes"] ---- docker run -it --rm -v full_path_to/config:/usr/share/kibana/config -v full_path_to/data:/usr/share/kibana/data {kib-docker-image} bin/kibana-keystore create docker run -it --rm -v full_path_to/config:/usr/share/kibana/config -v full_path_to/data:/usr/share/kibana/data {kib-docker-image} bin/kibana-keystore add test_keystore_setting ---- +endif::[] [discrete] [[environment-variable-config]] @@ -236,6 +249,11 @@ Supplying array options can be tricky. The following example shows the syntax fo These variables can be set with +docker-compose+ like this: +ifeval::["{version}"=="8.10.0"] +IMPORTANT: {kib} 8.10.0 has been withdrawn. +endif::[] + +ifeval::["{version}"!="8.10.0"] ["source","yaml",subs="attributes"] ---------------------------------------------------------- version: '2' @@ -246,6 +264,7 @@ services: SERVER_NAME: kibana.example.org ELASTICSEARCH_HOSTS: '["http://es01:9200","http://es02:9200","http://es03:9200"]' ---------------------------------------------------------- +endif::[] Since environment variables are translated to CLI arguments, they take precedence over settings configured in `kibana.yml`.