Skip to content

Commit 10b9013

Browse files
committed
Updating to address peer review feedback
1 parent e471b5c commit 10b9013

15 files changed

+139
-115
lines changed

deploy-manage/deploy/self-managed/_snippets/wolfi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ docker pull docker.elastic.co/elasticsearch/elasticsearch-wolfi:{{version.stack}
1616
:::{tab-item} Specific version
1717
:sync: specific
1818
```sh subs=true
19-
docker pull docker.elastic.co/elasticsearch/elasticsearch-wolfi:<specific.version>
19+
docker pull docker.elastic.co/elasticsearch/elasticsearch-wolfi:<SPECIFIC.VERSION.NUMBER>
2020
```
21-
You can download and install a specific version of the {{version.stack.base | M }} stack by replacing `<specific.version>` with the version number you want. For example, you can replace `<specific.version>` with {{version.stack.base}}.
21+
You can download and install a specific version of the {{stack}} by replacing `<SPECIFIC.VERSION.NUMBER>` with the version number you want. For example, you can replace `<SPECIFIC.VERSION.NUMBER>` with {{version.stack.base}}.
2222
:::
2323

2424
::::

deploy-manage/deploy/self-managed/air-gapped-install.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -119,15 +119,15 @@ podman create \
119119
:::
120120

121121
:::{tab-item} Specific version
122-
Replace `<specific.version>` with the {{es}} version number you want. For example, you can replace `<specific.version>` with {{version.stack.base}}.
122+
Replace `<SPECIFIC.VERSION.NUMBER>` with the {{stack}} version number you want. For example, you can replace `<SPECIFIC.VERSION.NUMBER>` with {{version.stack.base}}.
123123
```sh subs=true
124124
#!/usr/bin/env bash
125125

126126
EPR_BIND_ADDRESS="0.0.0.0"
127127
EPR_BIND_PORT="8443"
128128
EPR_TLS_CERT="/etc/elastic/epr/epr.pem"
129129
EPR_TLS_KEY="/etc/elastic/epr/epr-key.pem"
130-
EPR_IMAGE="docker.elastic.co/package-registry/distribution:<specific.version>"
130+
EPR_IMAGE="docker.elastic.co/package-registry/distribution:<SPECIFIC.VERSION.NUMBER>"
131131

132132
podman create \
133133
--name "elastic-epr" \
@@ -196,7 +196,7 @@ WantedBy=default.target
196196
:::
197197

198198
::::::{tab-item} Specific version
199-
Replace `<specific.version>` with the {{es}} version number you want. For example, you can replace `<specific.version>` with {{version.stack.base}}.
199+
Replace `<SPECIFIC.VERSION.NUMBER>` with the {{stack}} version number you want. For example, you can replace `<SPECIFIC.VERSION.NUMBER>` with {{version.stack.base}}.
200200
```ini subs=true
201201
# container-elastic-epr.service
202202
# autogenerated by Podman 4.1.1
@@ -227,7 +227,7 @@ ExecStart=/usr/bin/podman run \
227227
-v /etc/elastic/epr/epr-key.pem:/etc/ssl/epr.key:ro \
228228
-e EPR_ADDRESS=0.0.0.0:8443 \
229229
-e EPR_TLS_CERT=/etc/ssl/epr.crt \
230-
-e EPR_TLS_KEY=/etc/ssl/epr.key docker.elastic.co/package-registry/distribution:<specific.version>
230+
-e EPR_TLS_KEY=/etc/ssl/epr.key docker.elastic.co/package-registry/distribution:<SPECIFIC.VERSION.NUMBER>
231231
ExecStop=/usr/bin/podman stop --ignore --cidfile=%t/%n.ctr-id
232232
ExecStopPost=/usr/bin/podman rm -f --ignore --cidfile=%t/%n.ctr-id
233233
Type=notify
@@ -326,12 +326,12 @@ done
326326
:::
327327

328328
::::::{tab-item} Specific version
329-
Replace `<specific.version>` with the {{es}} version number you want. For example, you can replace `<specific.version>` with {{version.stack.base}}.
329+
Replace `<SPECIFIC.VERSION.NUMBER>` with the {{stack}} version number you want. For example, you can replace `<SPECIFIC.VERSION.NUMBER>` with {{version.stack.base}}.
330330
```sh subs=true
331331
#!/usr/bin/env bash
332332
set -o nounset -o errexit -o pipefail
333333

334-
STACK_VERSION=<specific.version>
334+
STACK_VERSION=<SPECIFIC.VERSION.NUMBER>
335335
ARTIFACT_DOWNLOADS_BASE_URL=https://artifacts.elastic.co/downloads
336336

337337
DOWNLOAD_BASE_DIR=${DOWNLOAD_BASE_DIR:?"Make sure to set DOWNLOAD_BASE_DIR when running this script"}

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

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ 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>` with the {{es}} version number you want. For example, you can replace `<specific.version>` 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}}.
4949
```sh subs=true
50-
docker pull docker.elastic.co/elasticsearch/elasticsearch:<specific.version>
50+
docker pull docker.elastic.co/elasticsearch/elasticsearch:<SPECIFIC.VERSION.NUMBER>
5151
```
5252
:::
5353

@@ -77,18 +77,18 @@ Use Docker commands to start a single-node {{es}} cluster for development or tes
7777

7878
:::{tab-item} Specific version
7979
:sync: specific
80-
Replace `<specific.version>` with the {{es}} version number you want. For example, you can replace `<specific.version>` with {{version.stack.base}}.
80+
Use the same {{stack}} version number as the Docker image you pulled earlier and replace `<SPECIFIC.VERSION.NUMBER>` with it.
8181
$$$docker-verify-signature$$$
8282

8383
```sh subs=true
8484
wget https://artifacts.elastic.co/cosign.pub
85-
cosign verify --key cosign.pub docker.elastic.co/elasticsearch/elasticsearch:<specific.version>
85+
cosign verify --key cosign.pub docker.elastic.co/elasticsearch/elasticsearch:<SPECIFIC.VERSION.NUMBER>
8686
```
8787

8888
The `cosign` command prints the check results and the signature payload in JSON format:
8989

9090
```sh subs=true
91-
Verification for docker.elastic.co/elasticsearch/elasticsearch:<specific.version> --
91+
Verification for docker.elastic.co/elasticsearch/elasticsearch:<SPECIFIC.VERSION.NUMBER> --
9292
The following checks were performed on each of these signatures:
9393
- The cosign claims were validated
9494
- Existence of the claims in the transparency log was verified offline
@@ -123,9 +123,9 @@ Use Docker commands to start a single-node {{es}} cluster for development or tes
123123

124124
:::::{tab-item} Specific version
125125
:sync: specific
126-
Replace `<specific.version>` with the {{es}} version number you want. For example, you can replace `<specific.version>` with {{version.stack.base}}.
126+
Use the same {{stack}} version number as the Docker image you pulled earlier and replace `<SPECIFIC.VERSION.NUMBER>` with it.
127127
```sh subs=true
128-
docker run --name es01 --net elastic -p 9200:9200 -it -m 1GB docker.elastic.co/elasticsearch/elasticsearch:<specific.version>
128+
docker run --name es01 --net elastic -p 9200:9200 -it -m 1GB docker.elastic.co/elasticsearch/elasticsearch:<SPECIFIC.VERSION.NUMBER>
129129
```
130130

131131
::::{tip}
@@ -135,7 +135,7 @@ Use Docker commands to start a single-node {{es}} cluster for development or tes
135135
{{ml-cap}} features such as [semantic search with ELSER](/solutions/search/semantic-search/semantic-search-elser-ingest-pipelines.md) require a larger container with more than 1GB of memory. If you intend to use the {{ml}} capabilities, then start the container with this command:
136136

137137
```sh subs=true
138-
docker run --name es01 --net elastic -p 9200:9200 -it -m 6GB -e "xpack.ml.use_auto_machine_memory_percent=true" docker.elastic.co/elasticsearch/elasticsearch:<specific.version>
138+
docker run --name es01 --net elastic -p 9200:9200 -it -m 6GB -e "xpack.ml.use_auto_machine_memory_percent=true" docker.elastic.co/elasticsearch/elasticsearch:<SPECIFIC.VERSION.NUMBER>
139139
```
140140

141141
The command prints the `elastic` user password and an enrollment token for {{kib}}.
@@ -189,9 +189,9 @@ Use Docker commands to start a single-node {{es}} cluster for development or tes
189189
:::
190190
:::{tab-item} Specific version
191191
:sync: specific
192-
Replace `<specific.version>` with the {{es}} version number you want. For example, you can replace `<specific.version>` with {{version.stack.base}}.
192+
Use the same {{stack}} version number as the Docker image you pulled earlier and replace `<SPECIFIC.VERSION.NUMBER>` with it.
193193
```sh subs=true
194-
docker run -e ENROLLMENT_TOKEN="<token>" --name es02 --net elastic -it -m 1GB docker.elastic.co/elasticsearch/elasticsearch:<specific.version>
194+
docker run -e ENROLLMENT_TOKEN="<token>" --name es02 --net elastic -it -m 1GB docker.elastic.co/elasticsearch/elasticsearch:<SPECIFIC.VERSION.NUMBER>
195195
```
196196
:::
197197
::::
@@ -216,9 +216,9 @@ Use Docker commands to start a single-node {{es}} cluster for development or tes
216216
:::
217217
:::{tab-item} Specific version
218218
:sync: specific
219-
Replace `<specific.version>` with the {{kib}} version number you want. For example, you can replace `<specific.version>` with {{version.stack.base}}.
219+
Use the same {{stack}} version number as the Docker image you pulled earlier and replace `<SPECIFIC.VERSION.NUMBER>` with it.
220220
```sh subs=true
221-
docker pull docker.elastic.co/kibana/kibana:<specific.version>
221+
docker pull docker.elastic.co/kibana/kibana:<SPECIFIC.VERSION.NUMBER>
222222
```
223223
:::
224224
::::
@@ -236,10 +236,10 @@ Use Docker commands to start a single-node {{es}} cluster for development or tes
236236
:::
237237
:::{tab-item} Specific version
238238
:sync: specific
239-
Replace `<specific.version>` with the {{kib}} version number you want. For example, you can replace `<specific.version>` with {{version.stack.base}}.
239+
Use the same {{stack}} version number as the Docker image you pulled earlier and replace `<SPECIFIC.VERSION.NUMBER>` with it.
240240
```sh subs=true
241241
wget https://artifacts.elastic.co/cosign.pub
242-
cosign verify --key cosign.pub docker.elastic.co/kibana/kibana:<specific.version>
242+
cosign verify --key cosign.pub docker.elastic.co/kibana/kibana:<SPECIFIC.VERSION.NUMBER>
243243
```
244244
:::
245245
::::
@@ -257,9 +257,9 @@ Use Docker commands to start a single-node {{es}} cluster for development or tes
257257
:::
258258
:::{tab-item} Specific version
259259
:sync: specific
260-
Replace `<specific.version>` with the {{kib}} version number you want. For example, you can replace `<specific.version>` with {{version.stack.base}}.
260+
Use the same {{stack}} version number as the Docker image you pulled earlier and replace `<SPECIFIC.VERSION.NUMBER>` with it.
261261
```sh subs=true
262-
docker run --name kib01 --net elastic -p 5601:5601 docker.elastic.co/kibana/kibana:<specific.version>
262+
docker run --name kib01 --net elastic -p 5601:5601 docker.elastic.co/kibana/kibana:<SPECIFIC.VERSION.NUMBER>
263263
```
264264
:::
265265
::::

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Use Docker Compose to start a three-node {{es}} cluster with {{kib}}. Docker Com
4545
:group: docker
4646
:::{tab-item} Latest
4747
:sync: latest
48-
Set the stack version to the current {{es}} {{version.stack}} version.
48+
Set the stack version to the current {{stack}} version.
4949
```txt subs=true
5050
...
5151
# Version of Elastic products
@@ -56,11 +56,11 @@ Use Docker Compose to start a three-node {{es}} cluster with {{kib}}. Docker Com
5656
5757
:::{tab-item} Specific version
5858
:sync: specific
59-
Replace `<specific.version>` with the {{es}} version number you want. For example, you can replace `<specific.version>` with {{version.stack.base}}.
59+
Replace `<SPECIFIC.VERSION.NUMBER>` with the {{es}} version number you want. For example, you can replace `<SPECIFIC.VERSION.NUMBER>` with {{version.stack.base}}.
6060
```txt subs=true
6161
...
6262
# Version of Elastic products
63-
STACK_VERSION=<specific.version>
63+
STACK_VERSION=<SPECIFIC.VERSION.NUMBER>
6464
...
6565
:::
6666
::::

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

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

7878
:::{tab-item} Specific version
7979
:sync: specific
80-
Replace `<specific.version>` with the {{es}} version number you want. For example, you can replace `<specific.version>` with {{version.stack.base}}.
80+
Replace `<SPECIFIC.VERSION.NUMBER>` with the {{es}} version number you want. For example, you can replace `<SPECIFIC.VERSION.NUMBER>` with {{version.stack.base}}.
8181
```sh subs=true
8282
docker run -it --rm \
8383
-v full_path_to/config:/usr/share/elasticsearch/config \
84-
docker.elastic.co/elasticsearch/elasticsearch:<specific.version> \
84+
docker.elastic.co/elasticsearch/elasticsearch:<SPECIFIC.VERSION.NUMBER> \
8585
bin/elasticsearch-keystore create -p
8686
```
8787
:::
@@ -105,11 +105,11 @@ my.other.secure.setting
105105

106106
:::{tab-item} Specific version
107107
:sync: specific
108-
Replace `<specific.version>` with the {{es}} version number you want. For example, you can replace `<specific.version>` with {{version.stack.base}}.
108+
Replace `<SPECIFIC.VERSION.NUMBER>` with the {{es}} version number you want. For example, you can replace `<SPECIFIC.VERSION.NUMBER>` with {{version.stack.base}}.
109109
```sh subs=true
110110
docker run -it --rm \
111111
-v full_path_to/config:/usr/share/elasticsearch/config \
112-
docker.elastic.co/elasticsearch/elasticsearch:<specific.version> \
112+
docker.elastic.co/elasticsearch/elasticsearch:<SPECIFIC.VERSION.NUMBER> \
113113
bin/elasticsearch-keystore \
114114
add my.secure.setting \
115115
my.other.secure.setting
@@ -141,9 +141,9 @@ COPY --chown=elasticsearch:elasticsearch elasticsearch.yml /usr/share/elasticsea
141141

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

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

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

143143
:::{tab-item} Specific version
144144
:sync: specific
145-
Replace `<specific.version>` with the {{es}} version number you want. For example, you can replace `<specific.version>` with {{version.stack.base}}.
145+
Replace `<SPECIFIC.VERSION.NUMBER>` with the {{es}} version number you want. For example, you can replace `<SPECIFIC.VERSION.NUMBER>` with {{version.stack.base}}.
146146
```sh subs=true
147-
docker run --rm docker.elastic.co/elasticsearch/elasticsearch:<specific.version> /bin/bash -c 'ulimit -Hn && ulimit -Sn && ulimit -Hu && ulimit -Su'
147+
docker run --rm docker.elastic.co/elasticsearch/elasticsearch:<SPECIFIC.VERSION.NUMBER> /bin/bash -c 'ulimit -Hn && ulimit -Sn && ulimit -Hu && ulimit -Su'
148148
```
149149
:::
150150
::::
@@ -191,9 +191,9 @@ 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>` with the {{es}} version number you want. For example, you can replace `<specific.version>` with {{version.stack.base}}.
194+
Replace `<SPECIFIC.VERSION.NUMBER>` with the {{es}} version number you want. For example, you can replace `<SPECIFIC.VERSION.NUMBER>` with {{version.stack.base}}.
195195
```sh subs=true
196-
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>
196+
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
```
198198
:::
199199
::::
@@ -216,9 +216,9 @@ docker.elastic.co/elasticsearch/elasticsearch:{{version.stack}}
216216

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

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

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -63,15 +63,15 @@ cd elasticsearch-{{version.stack}}/ <2>
6363

6464
:::{tab-item} Specific version
6565
:sync: specific
66-
Replace `<specific.version>` with the {{es}} version number you want. For example, you can replace `<specific.version>` with {{version.stack.base}}.
66+
Replace `<SPECIFIC.VERSION.NUMBER>` with the {{es}} version number you want. For example, you can replace `<SPECIFIC.VERSION.NUMBER>` with {{version.stack.base}}.
6767
```sh subs=true
68-
wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-<specific.version>-linux-x86_64.tar.gz
69-
wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-<specific.version>-linux-x86_64.tar.gz.sha512
70-
shasum -a 512 -c elasticsearch-<specific.version>-linux-x86_64.tar.gz.sha512 <1>
71-
tar -xzf elasticsearch-<specific.version>-linux-x86_64.tar.gz
72-
cd elasticsearch-<specific.version>/ <2>
68+
wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-<SPECIFIC.VERSION.NUMBER>-linux-x86_64.tar.gz
69+
wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-<SPECIFIC.VERSION.NUMBER>-linux-x86_64.tar.gz.sha512
70+
shasum -a 512 -c elasticsearch-<SPECIFIC.VERSION.NUMBER>-linux-x86_64.tar.gz.sha512 <1>
71+
tar -xzf elasticsearch-<SPECIFIC.VERSION.NUMBER>-linux-x86_64.tar.gz
72+
cd elasticsearch-<SPECIFIC.VERSION.NUMBER>/ <2>
7373
```
74-
1. Compares the SHA of the downloaded `.tar.gz` archive and the published checksum, which should output `elasticsearch-<version>-linux-x86_64.tar.gz: OK`.
74+
1. Compares the SHA of the downloaded `.tar.gz` archive and the published checksum, which should output `elasticsearch-<SPECIFIC.VERSION.NUMBER>-linux-x86_64.tar.gz: OK`.
7575
2. This directory is known as `$ES_HOME`.
7676
:::
7777
::::
@@ -98,14 +98,14 @@ cd elasticsearch-{{version.stack}}/ <2>
9898

9999
:::{tab-item} Specific version
100100
:sync: specific
101-
Replace `<specific.version>` with the {{es}} version number you want. For example, you can replace `<specific.version>` with {{version.stack.base}}.
101+
Replace `<SPECIFIC.VERSION.NUMBER>` with the {{es}} version number you want. For example, you can replace `<SPECIFIC.VERSION.NUMBER>` with {{version.stack.base}}.
102102
```sh subs=true
103-
curl -O https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-<specific.version>-darwin-x86_64.tar.gz
104-
curl https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-<specific.version>-darwin-x86_64.tar.gz.sha512 | shasum -a 512 -c - <1>
105-
tar -xzf elasticsearch-<specific.version>-darwin-x86_64.tar.gz
106-
cd elasticsearch-<specific.version>/ <2>
103+
curl -O https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-<SPECIFIC.VERSION.NUMBER>-darwin-x86_64.tar.gz
104+
curl https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-<SPECIFIC.VERSION.NUMBER>-darwin-x86_64.tar.gz.sha512 | shasum -a 512 -c - <1>
105+
tar -xzf elasticsearch-<SPECIFIC.VERSION.NUMBER>-darwin-x86_64.tar.gz
106+
cd elasticsearch-<SPECIFIC.VERSION.NUMBER>/ <2>
107107
```
108-
1. Compares the SHA of the downloaded `.tar.gz` archive and the published checksum, which should output `elasticsearch-<specific-version>-darwin-x86_64.tar.gz: OK`.
108+
1. Compares the SHA of the downloaded `.tar.gz` archive and the published checksum, which should output `elasticsearch-<SPECIFIC.VERSION.NUMBER>-darwin-x86_64.tar.gz: OK`.
109109
2. This directory is known as `$ES_HOME`.
110110
:::
111111
:::

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -115,14 +115,14 @@ sudo dpkg -i elasticsearch-{{version.stack}}-amd64.deb
115115
:::
116116

117117
:::{tab-item} Specific version
118-
Replace `<specific.version>` with the {{es}} version number you want. For example, you can replace `<specific.version>` with {{version.stack.base}}.
118+
Replace `<SPECIFIC.VERSION.NUMBER>` with the {{es}} version number you want. For example, you can replace `<SPECIFIC.VERSION.NUMBER>` with {{version.stack.base}}.
119119
```sh subs=true
120-
wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-<specific.version>-amd64.deb
121-
wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-<specific.version>-amd64.deb.sha512
122-
shasum -a 512 -c elasticsearch-<specific.version>-amd64.deb.sha512 <1>
123-
sudo dpkg -i elasticsearch-<specific.version>-amd64.deb
120+
wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-<SPECIFIC.VERSION.NUMBER>-amd64.deb
121+
wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-<SPECIFIC.VERSION.NUMBER>-amd64.deb.sha512
122+
shasum -a 512 -c elasticsearch-<SPECIFIC.VERSION.NUMBER>-amd64.deb.sha512 <1>
123+
sudo dpkg -i elasticsearch-<SPECIFIC.VERSION.NUMBER>-amd64.deb
124124
```
125-
1. Compares the SHA of the downloaded Debian package and the published checksum, which should output `elasticsearch-<specific-version>-amd64.deb: OK`.
125+
1. Compares the SHA of the downloaded Debian package and the published checksum, which should output `elasticsearch-<SPECIFIC.VERSION.NUMBER>-amd64.deb: OK`.
126126
:::
127127
::::
128128

0 commit comments

Comments
 (0)