Skip to content

Commit

Permalink
[DOCS] Withdraw Kibana 8.10.0 (#99608)
Browse files Browse the repository at this point in the history
  • Loading branch information
jrodewig committed Sep 15, 2023
1 parent 6744648 commit 809c557
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 3 deletions.
12 changes: 12 additions & 0 deletions docs/reference/setup/install/docker.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,11 @@ curl --cacert http_ca.crt -u elastic:$ELASTIC_PASSWORD https://localhost:9200/_c
[[run-kibana-docker]]
===== Run {kib}

ifeval::["{version}"=="8.10.0"]
IMPORTANT: {kib} 8.10.0 has been withdrawn.
endif::[]

ifeval::["{version}"!="8.10.0"]
. Pull the {kib} Docker image.
+
--
Expand Down Expand Up @@ -171,6 +176,7 @@ cosign verify --key cosign.pub {kib-docker-image}
----
docker run --name kib01 --net elastic -p 5601:5601 {kib-docker-image}
----
endif::[]

. When {kib} starts, it outputs a unique generated link to the terminal. To
access {kib}, open this link in a web browser.
Expand Down Expand Up @@ -227,6 +233,11 @@ lets you start multiple containers with a single command.

===== Configure and start the cluster

ifeval::["{version}"=="8.10.0"]
IMPORTANT: {kib} 8.10.0 has been withdrawn.
endif::[]

ifeval::["{version}"!="8.10.0"]
. Install Docker Compose. Visit the
https://docs.docker.com/compose/install/[Docker Compose docs] to install Docker
Compose for your environment.
Expand Down Expand Up @@ -297,6 +308,7 @@ access {kib}.

. Log in to {kib} as the `elastic` user using the `ELASTIC_PASSWORD` you set
earlier.
endif::[]

===== Stop and remove the cluster
To stop the cluster, run `docker-compose down`. The data in the Docker volumes
Expand Down
14 changes: 11 additions & 3 deletions docs/reference/setup/run-elasticsearch-locally.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -61,19 +61,27 @@ You'll use these to enroll Kibana with your Elasticsearch cluster and log in.
Kibana enables you to easily send requests to Elasticsearch and analyze, visualize, and manage data interactively.

. In a new terminal session, start Kibana and connect it to your Elasticsearch container:
ifeval::["{release-state}"=="unreleased"]
+
--
ifeval::["{release-state}"=="unreleased"]
WARNING: Version {version} of {kib} has not yet been released, so no
Docker image is currently available for this version.
endif::[]
+

ifeval::["{version}"=="8.10.0"]
IMPORTANT: {kib} 8.10.0 has been withdrawn.
endif::[]

ifeval::["{version}"!="8.10.0"]
[source,sh,subs="attributes"]
----
docker pull docker.elastic.co/kibana/kibana:{version}
docker run --name kibana --net elastic -p 5601:5601 docker.elastic.co/kibana/kibana:{version}
----
+
endif::[]

When you start Kibana, a unique URL is output to your terminal.
--

. To access Kibana, open the generated URL in your browser.

Expand Down

0 comments on commit 809c557

Please sign in to comment.