Skip to content

Commit 950cb50

Browse files
authored
hotfix: update v2 download links (#6085)
1 parent 17380ef commit 950cb50

File tree

2 files changed

+15
-14
lines changed

2 files changed

+15
-14
lines changed

assets/jsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"baseUrl": ".",
44
"paths": {
55
"*": [
6-
"*"
6+
"*",
7+
"../node_modules/*"
78
]
89
}
910
}

content/influxdb/v2/install/_index.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -164,13 +164,13 @@ gpg: key 7C3D57159FC2F927: public key "InfluxData Package Signing Key <support@i
164164
<!--test:setup
165165
```sh
166166
curl --silent --location --output-dir ~/Downloads -O \
167-
"https://download.influxdata.com/influxdb/releases/influxdb2-{{< latest-patch >}}_darwin_amd64.tar.gz" \
167+
"https://download.influxdata.com/influxdb/releases/v{{< latest-patch >}}/influxdb2-{{< latest-patch >}}_darwin_amd64.tar.gz" \
168168
```
169169
-->
170170

171171
```sh
172172
curl --silent --location \
173-
https://download.influxdata.com/influxdb/releases/influxdb2-{{< latest-patch >}}_darwin_amd64.tar.gz.asc \
173+
https://download.influxdata.com/influxdb/releases/v{{< latest-patch >}}/influxdb2-{{< latest-patch >}}_darwin_amd64.tar.gz.asc \
174174
| gpg --verify - ~/Downloads/influxdb2-{{< latest-patch >}}_darwin_amd64.tar.gz \
175175
2>&1 | grep 'InfluxData Package Signing Key <support@influxdata.com>'
176176
```
@@ -239,12 +239,12 @@ brew install influxdb
239239

240240
1. In your browser or your terminal, download the InfluxDB package.
241241

242-
<a class="btn download" href="https://download.influxdata.com/influxdb/releases/influxdb2-{{< latest-patch >}}_darwin_amd64.tar.gz" download>InfluxDB v2 (macOS)</a>
242+
<a class="btn download" href="https://download.influxdata.com/influxdb/releases/v{{< latest-patch >}}/influxdb2-{{< latest-patch >}}_darwin_amd64.tar.gz" download>InfluxDB v2 (macOS)</a>
243243

244244
```sh
245245
# Download using cURL
246246
curl --location -O \
247-
"https://download.influxdata.com/influxdb/releases/influxdb2-{{< latest-patch >}}_darwin_amd64.tar.gz"
247+
"https://download.influxdata.com/influxdb/releases/v{{< latest-patch >}}/influxdb2-{{< latest-patch >}}_darwin_amd64.tar.gz"
248248
```
249249

250250
2. {{< req text="Recommended:" color="magenta" >}}: Verify the integrity of the download--for example, enter the
@@ -443,18 +443,18 @@ _If necessary, adjust the example file paths and utilities for your system._
443443
1. In your browser or your terminal, download the InfluxDB binary for your
444444
system architecture (AMD64 or ARM).
445445
446-
<a class="btn download" href="https://download.influxdata.com/influxdb/releases/influxdb2-{{< latest-patch >}}_linux_amd64.tar.gz" download >InfluxDB v2 (amd64)</a>
447-
<a class="btn download" href="https://download.influxdata.com/influxdb/releases/influxdb2-{{< latest-patch >}}_linux_arm64.tar.gz" download >InfluxDB v2 (arm)</a>
446+
<a class="btn download" href="https://download.influxdata.com/influxdb/releases/v{{< latest-patch >}}/influxdb2-{{< latest-patch >}}_linux_amd64.tar.gz" download >InfluxDB v2 (amd64)</a>
447+
<a class="btn download" href="https://download.influxdata.com/influxdb/releases/v{{< latest-patch >}}/influxdb2-{{< latest-patch >}}_linux_arm64.tar.gz" download >InfluxDB v2 (arm)</a>
448448
449449
<!--test:actual
450450
```sh
451451
curl -s --location -O \
452-
"https://download.influxdata.com/influxdb/releases/influxdb2-{{< latest-patch >}}_linux_amd64.tar.gz"
452+
"https://download.influxdata.com/influxdb/releases/v{{< latest-patch >}}/influxdb2-{{< latest-patch >}}_linux_amd64.tar.gz"
453453
```
454454
455455
```sh
456456
curl -s --location -O \
457-
"https://download.influxdata.com/influxdb/releases/influxdb2-{{< latest-patch >}}_linux_arm64.tar.gz"
457+
"https://download.influxdata.com/influxdb/releases/v{{< latest-patch >}}/influxdb2-{{< latest-patch >}}_linux_arm64.tar.gz"
458458
```
459459
-->
460460
@@ -463,15 +463,15 @@ _If necessary, adjust the example file paths and utilities for your system._
463463
```sh
464464
# Use curl to download the amd64 binary.
465465
curl --location -O \
466-
https://download.influxdata.com/influxdb/releases/influxdb2-{{< latest-patch >}}_linux_amd64.tar.gz
466+
https://download.influxdata.com/influxdb/releases/v{{< latest-patch >}}/influxdb2-{{< latest-patch >}}_linux_amd64.tar.gz
467467
```
468468
469469
<!--pytest.mark.skip-->
470470
471471
```sh
472472
# Use curl to download the arm64 binary.
473473
curl --location -O \
474-
https://download.influxdata.com/influxdb/releases/influxdb2-{{< latest-patch >}}_linux_arm64.tar.gz
474+
https://download.influxdata.com/influxdb/releases/v{{< latest-patch >}}/influxdb2-{{< latest-patch >}}_linux_arm64.tar.gz
475475
```
476476
477477
2. [Choose the InfluxData key-pair for your OS version](#choose-the-influxdata-key-pair-for-your-system).
@@ -505,7 +505,7 @@ _If necessary, adjust the example file paths and utilities for your system._
505505
| grep 'InfluxData Package Signing Key <support@influxdata.com>' \
506506
&&
507507
# Download and verify the binary's signature file
508-
curl --silent --location "https://download.influxdata.com/influxdb/releases/influxdb2-{{< latest-patch >}}_linux_amd64.tar.gz.asc" \
508+
curl --silent --location "https://download.influxdata.com/influxdb/releases/v{{< latest-patch >}}/influxdb2-{{< latest-patch >}}_linux_amd64.tar.gz.asc" \
509509
| gpg --verify - influxdb2-{{< latest-patch >}}_linux_amd64.tar.gz \
510510
2>&1 | grep 'InfluxData Package Signing Key <support@influxdata.com>'
511511
```
@@ -519,7 +519,7 @@ _If necessary, adjust the example file paths and utilities for your system._
519519
| grep 'InfluxData Package Signing Key <support@influxdata.com>' \
520520
&&
521521
# Download and verify the binary's signature file
522-
curl --silent --location "https://download.influxdata.com/influxdb/releases/influxdb2-{{< latest-patch >}}_linux_arm64.tar.gz.asc" \
522+
curl --silent --location "https://download.influxdata.com/influxdb/releases/v{{< latest-patch >}}/influxdb2-{{< latest-patch >}}_linux_arm64.tar.gz.asc" \
523523
| gpg --verify - influxdb2-{{< latest-patch >}}_linux_arm64.tar.gz \
524524
2>&1 | grep 'InfluxData Package Signing Key <support@influxdata.com>'
525525
```
@@ -618,7 +618,7 @@ chmod 0750 ~/.influxdbv2
618618
>
619619
> _You'll install the `influx CLI` in a [later step](#download-install-and-configure-the-influx-cli)._
620620
621-
<a class="btn download" href="https://download.influxdata.com/influxdb/releases/influxdb2-{{< latest-patch >}}-windows.zip" download >InfluxDB v2 (Windows)</a>
621+
<a class="btn download" href="https://download.influxdata.com/influxdb/releases/v{{< latest-patch >}}/influxdb2-{{< latest-patch >}}-windows.zip" download >InfluxDB v2 (Windows)</a>
622622
623623
Expand the downloaded archive into `C:\Program Files\InfluxData\` and rename the
624624
files if desired.

0 commit comments

Comments
 (0)