Skip to content

Commit

Permalink
[DOCS] Remove unneeded ifevals (#99609)
Browse files Browse the repository at this point in the history
Removes ifevals and admons added as part of #99608. These are no longer needed.

This reverts commit 809c557.
  • Loading branch information
jrodewig committed Sep 18, 2023
1 parent 6e5a606 commit d96e85b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 23 deletions.
12 changes: 0 additions & 12 deletions docs/reference/setup/install/docker.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -143,11 +143,6 @@ 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 @@ -176,7 +171,6 @@ 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 @@ -233,11 +227,6 @@ 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 @@ -308,7 +297,6 @@ 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: 3 additions & 11 deletions docs/reference/setup/run-elasticsearch-locally.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -61,27 +61,19 @@ 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"]
+
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 d96e85b

Please sign in to comment.