Skip to content

Commit 5621b07

Browse files
committed
More review edits for consistency
1 parent 10b9013 commit 5621b07

7 files changed

+20
-22
lines changed

deploy-manage/deploy/self-managed/install-elasticsearch-docker-basic.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Use Docker commands to start a single-node {{es}} cluster for development or tes
4545

4646
:::{tab-item} Specific version
4747
:sync: specific
48-
Replace `<SPECIFIC.VERSION.NUMBER>` with the {{stack}} version number you want. For example, you can replace `<SPECIFIC.VERSION.NUMBER>` with {{version.stack.base}}.
48+
Replace `<SPECIFIC.VERSION.NUMBER>` with the {{stack}} version number you want. For example, you can replace `<SPECIFIC.VERSION.NUMBER>` with {{version.stack.base}}. You'll use this same version number throughout this tutorial.
4949
```sh subs=true
5050
docker pull docker.elastic.co/elasticsearch/elasticsearch:<SPECIFIC.VERSION.NUMBER>
5151
```
@@ -77,7 +77,7 @@ Use Docker commands to start a single-node {{es}} cluster for development or tes
7777
7878
:::{tab-item} Specific version
7979
:sync: specific
80-
Use the same {{stack}} version number as the Docker image you pulled earlier and replace `<SPECIFIC.VERSION.NUMBER>` with it.
80+
Replace `<SPECIFIC.VERSION.NUMBER>` with the version of the Docker image you downloaded.
8181
$$$docker-verify-signature$$$
8282
8383
```sh subs=true

deploy-manage/deploy/self-managed/install-elasticsearch-docker-configure.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ bin/elasticsearch-keystore create -p
7777

7878
:::{tab-item} Specific version
7979
:sync: specific
80-
Replace `<SPECIFIC.VERSION.NUMBER>` with the {{es}} version number you want. For example, you can replace `<SPECIFIC.VERSION.NUMBER>` with {{version.stack.base}}.
80+
Replace `<SPECIFIC.VERSION.NUMBER>` with the version of the Docker image you downloaded.
8181
```sh subs=true
8282
docker run -it --rm \
8383
-v full_path_to/config:/usr/share/elasticsearch/config \
@@ -105,7 +105,7 @@ my.other.secure.setting
105105

106106
:::{tab-item} Specific version
107107
:sync: specific
108-
Replace `<SPECIFIC.VERSION.NUMBER>` with the {{es}} version number you want. For example, you can replace `<SPECIFIC.VERSION.NUMBER>` with {{version.stack.base}}.
108+
Replace `<SPECIFIC.VERSION.NUMBER>` with the version of the Docker image you downloaded.
109109
```sh subs=true
110110
docker run -it --rm \
111111
-v full_path_to/config:/usr/share/elasticsearch/config \
@@ -141,7 +141,7 @@ COPY --chown=elasticsearch:elasticsearch elasticsearch.yml /usr/share/elasticsea
141141

142142
:::{tab-item} Specific version
143143
:sync: specific
144-
Replace `<SPECIFIC.VERSION.NUMBER>` with the {{es}} version number you want. For example, you can replace `<SPECIFIC.VERSION.NUMBER>` with {{version.stack.base}}.
144+
Replace `<SPECIFIC.VERSION.NUMBER>` with the version of the Docker image you downloaded.
145145
```sh subs=true
146146
FROM docker.elastic.co/elasticsearch/elasticsearch:<SPECIFIC.VERSION.NUMBER>
147147
COPY --chown=elasticsearch:elasticsearch elasticsearch.yml /usr/share/elasticsearch/config/

deploy-manage/deploy/self-managed/install-elasticsearch-docker-prod.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ docker run --rm docker.elastic.co/elasticsearch/elasticsearch:{{version.stack}}
142142

143143
:::{tab-item} Specific version
144144
:sync: specific
145-
Replace `<SPECIFIC.VERSION.NUMBER>` with the {{es}} version number you want. For example, you can replace `<SPECIFIC.VERSION.NUMBER>` with {{version.stack.base}}.
145+
Replace `<SPECIFIC.VERSION.NUMBER>` with the version of the Docker image you downloaded.
146146
```sh subs=true
147147
docker run --rm docker.elastic.co/elasticsearch/elasticsearch:<SPECIFIC.VERSION.NUMBER> /bin/bash -c 'ulimit -Hn && ulimit -Sn && ulimit -Hu && ulimit -Su'
148148
```
@@ -191,7 +191,7 @@ docker run -e ES_JAVA_OPTS="-Xms1g -Xmx1g" -e ENROLLMENT_TOKEN="<token>" --name
191191

192192
:::{tab-item} Specific version
193193
:sync: specific
194-
Replace `<SPECIFIC.VERSION.NUMBER>` with the {{es}} version number you want. For example, you can replace `<SPECIFIC.VERSION.NUMBER>` with {{version.stack.base}}.
194+
Replace `<SPECIFIC.VERSION.NUMBER>` with the version of the Docker image you downloaded.
195195
```sh subs=true
196196
docker run -e ES_JAVA_OPTS="-Xms1g -Xmx1g" -e ENROLLMENT_TOKEN="<token>" --name es01 -p 9200:9200 --net elastic -it docker.elastic.co/elasticsearch/elasticsearch:<SPECIFIC.VERSION.NUMBER>
197197
```
@@ -216,7 +216,7 @@ docker.elastic.co/elasticsearch/elasticsearch:{{version.stack}}
216216

217217
:::{tab-item} Specific version
218218
:sync: specific
219-
Replace `<SPECIFIC.VERSION.NUMBER>` with the {{es}} version number you want. For example, you can replace `<SPECIFIC.VERSION.NUMBER>` with {{version.stack.base}}.
219+
Replace `<SPECIFIC.VERSION.NUMBER>` with the version of the Docker image you downloaded.
220220
```sh subs=true
221221
docker.elastic.co/elasticsearch/elasticsearch:<SPECIFIC.VERSION.NUMBER>
222222
```

deploy-manage/deploy/self-managed/install-kibana-from-archive-on-linux-macos.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ cd kibana-{{version.stack}}/ <2>
4747

4848
:::{tab-item} Specific version
4949
:sync: specific
50-
Because {{kib}} is an {{stack}} product, you must install the same version number that's used across the stack. Replace `<SPECIFIC.VERSION.NUMBER>` with the {{stack}} version.
50+
Because {{kib}} is an {{stack}} product, you must install the same version number as the rest of your {{stack}} components. Replace `<SPECIFIC.VERSION.NUMBER>` with the version that's used across your entire stack. For example, you can use {{version.stack.base}}.
5151
For more information, refer to [{{es}} version](/deploy-manage/deploy/self-managed/install-kibana.md#elasticsearch-version).
5252
```sh subs=true
5353
curl -O https://artifacts.elastic.co/downloads/kibana/kibana-<SPECIFIC.VERSION.NUMBER>-linux-x86_64.tar.gz

deploy-manage/deploy/self-managed/install-kibana-with-debian-package.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,7 @@ sudo dpkg -i kibana-{{version.stack}}-amd64.deb
9595
:::
9696

9797
:::{tab-item} Specific version
98-
Replace `<SPECIFIC.VERSION.NUMBER>` with the {{kib}} version number you want to install. For example, you can replace `<SPECIFIC.VERSION.NUMBER>` with {{version.stack.base}}.
99-
If you're unsure about which version to install, refer to [{{es}} version](/deploy-manage/deploy/self-managed/install-kibana.md#elasticsearch-version) for more information about version compatibility.
98+
Because {{kib}} is an {{stack}} product, you must install the same version number as the rest of your {{stack}} components. Replace `<SPECIFIC.VERSION.NUMBER>` with the version that's used across your entire stack. For example, you can use {{version.stack.base}}.
10099
```sh subs=true
101100
wget https://artifacts.elastic.co/downloads/kibana/kibana-<SPECIFIC.VERSION.NUMBER>-amd64.deb
102101
shasum -a 512 kibana-<SPECIFIC.VERSION.NUMBER>-amd64.deb <1>

deploy-manage/deploy/self-managed/install-kibana-with-docker.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ This setup doesn’t run multiple {{es}} nodes by default. To create a multi-nod
5959

6060
:::{tab-item} Specific version
6161
:sync: specific
62-
Replace `<SPECIFIC.VERSION.NUMBER>` with the {{stack}} version number you want to install. For example, you can replace `<SPECIFIC.VERSION.NUMBER>` with {{version.stack.base}}.
62+
Because {{kib}} is an {{stack}} product, you must install the same version number as the rest of your {{stack}} components. Replace `<SPECIFIC.VERSION.NUMBER>` with the version that's used across your entire stack. For example, you can use {{version.stack.base}}. You'll use this same version number throughout this tutorial.
6363
```sh subs=true
6464
docker pull docker.elastic.co/elasticsearch/elasticsearch:<SPECIFIC.VERSION.NUMBER>
6565
```
@@ -90,7 +90,7 @@ This setup doesn’t run multiple {{es}} nodes by default. To create a multi-nod
9090

9191
:::{tab-item} Specific version
9292
:sync: specific
93-
Use the same {{stack}} version number as the Docker image you pulled earlier and replace <SPECIFIC.VERSION.NUMBER> with it.
93+
Replace `<SPECIFIC.VERSION.NUMBER>` with the version of the Docker image you downloaded.
9494
```sh subs=true
9595
wget https://artifacts.elastic.co/cosign.pub
9696
cosign verify --key cosign.pub docker.elastic.co/elasticsearch/elasticsearch:<SPECIFIC.VERSION.NUMBER>
@@ -121,7 +121,7 @@ This setup doesn’t run multiple {{es}} nodes by default. To create a multi-nod
121121

122122
:::{tab-item} Specific version
123123
:sync: specific
124-
Use the same {{stack}} version number as the Docker image you pulled earlier and replace <SPECIFIC.VERSION.NUMBER> with it.
124+
Replace `<SPECIFIC.VERSION.NUMBER>` with the version of the Docker image you downloaded.
125125
```sh subs=true
126126
docker run --name es01 --net elastic -p 9200:9200 -it -m 1GB docker.elastic.co/elasticsearch/elasticsearch:<SPECIFIC.VERSION.NUMBER>
127127
```
@@ -155,7 +155,7 @@ This setup doesn’t run multiple {{es}} nodes by default. To create a multi-nod
155155

156156
:::{tab-item} Specific version
157157
:sync: specific
158-
Use the same {{stack}} version number as the Docker image you pulled for {{es}} and replace <SPECIFIC.VERSION.NUMBER> with it.
158+
Replace `<SPECIFIC.VERSION.NUMBER>` with the version of the Docker image you downloaded.
159159
```sh subs=true
160160
docker pull docker.elastic.co/kibana/kibana:<SPECIFIC.VERSION.NUMBER>
161161
```
@@ -176,7 +176,7 @@ This setup doesn’t run multiple {{es}} nodes by default. To create a multi-nod
176176

177177
:::{tab-item} Specific version
178178
:sync: specific
179-
Use the same {{stack}} version number as the Docker image you pulled earlier and replace <SPECIFIC.VERSION.NUMBER> with it.
179+
Replace `<SPECIFIC.VERSION.NUMBER>` with the version of the Docker image you downloaded.
180180
```sh subs=true
181181
wget https://artifacts.elastic.co/cosign.pub
182182
cosign verify --key cosign.pub docker.elastic.co/kibana/kibana:<SPECIFIC.VERSION.NUMBER>
@@ -197,7 +197,7 @@ This setup doesn’t run multiple {{es}} nodes by default. To create a multi-nod
197197

198198
:::{tab-item} Specific version
199199
:sync: specific
200-
Use the same {{stack}} version number as the Docker image you pulled earlier and replace <SPECIFIC.VERSION.NUMBER> with it.
200+
Replace `<SPECIFIC.VERSION.NUMBER>` with the version of the Docker image you downloaded.
201201
```sh subs=true
202202
docker run --name kib01 --net elastic -p 5601:5601 docker.elastic.co/kibana/kibana:<SPECIFIC.VERSION.NUMBER>
203203
```
@@ -262,7 +262,7 @@ services:
262262

263263
:::{tab-item} Specific version
264264
:sync: specific
265-
Replace `<SPECIFIC.VERSION.NUMBER>` with the {{kib}} version number you want. For example, you can replace `<SPECIFIC.VERSION.NUMBER>` with {{version.stack.base}}.
265+
Replace `<SPECIFIC.VERSION.NUMBER>` with the version of the Docker image you downloaded.
266266
```yaml subs=true
267267
version: '2'
268268
services:
@@ -291,7 +291,7 @@ docker run -it --rm -v full_path_to/config:/usr/share/kibana/config -v full_path
291291

292292
:::{tab-item} Specific version
293293
:sync: specific
294-
Use the same {{stack}} version number as the Docker image you pulled earlier and replace <SPECIFIC.VERSION.NUMBER> with it.
294+
Replace `<SPECIFIC.VERSION.NUMBER>` with the version of the Docker image you downloaded.
295295
```sh subs=true
296296
docker run -it --rm -v full_path_to/config:/usr/share/kibana/config -v full_path_to/data:/usr/share/kibana/data docker.elastic.co/kibana/kibana:<SPECIFIC.VERSION.NUMBER> bin/kibana-keystore create
297297
docker run -it --rm -v full_path_to/config:/usr/share/kibana/config -v full_path_to/data:/usr/share/kibana/data docker.elastic.co/kibana/kibana:<SPECIFIC.VERSION.NUMBER> bin/kibana-keystore add test_keystore_setting
@@ -342,7 +342,7 @@ services:
342342

343343
:::{tab-item} Specific version
344344
:sync: specific
345-
Use the same {{stack}} version number as the Docker image you pulled earlier and replace <SPECIFIC.VERSION.NUMBER> with it.
345+
Replace `<SPECIFIC.VERSION.NUMBER>` with the version of the Docker image you downloaded.
346346
```yaml subs=true
347347
version: '2'
348348
services:

deploy-manage/deploy/self-managed/install-kibana-with-rpm.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,7 @@ sudo rpm --install kibana-{{version.stack}}-x86_64.rpm
8484
:::
8585

8686
:::{tab-item} Specific version
87-
Replace `<SPECIFIC.VERSION.NUMBER>` with the {{kib}} version number you want to install. For example, you can replace `<SPECIFIC.VERSION.NUMBER>` with {{version.stack.base}}.
88-
If you're unsure about which version to install, refer to [{{es}} version](/deploy-manage/deploy/self-managed/install-kibana.md#elasticsearch-version) for more information about version compatibility.
87+
Because {{kib}} is an {{stack}} product, you must install the same version number as the rest of your {{stack}} components. Replace `<SPECIFIC.VERSION.NUMBER>` with the version that's used across your entire stack. For example, you can use {{version.stack.base}}.
8988
```sh subs=true
9089
wget https://artifacts.elastic.co/downloads/kibana/kibana-<SPECIFIC.VERSION.NUMBER>-x86_64.rpm
9190
wget https://artifacts.elastic.co/downloads/kibana/kibana-<SPECIFIC.VERSION.NUMBER>-x86_64.rpm.sha512

0 commit comments

Comments
 (0)