hotfix: update v2 download links (#6085)

pull/6076/head^2
Scott Anderson 2025-05-22 12:57:50 -05:00 committed by GitHub
parent 17380ef9f3
commit 950cb50a5b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 15 additions and 14 deletions

View File

@ -3,7 +3,8 @@
"baseUrl": ".", "baseUrl": ".",
"paths": { "paths": {
"*": [ "*": [
"*" "*",
"../node_modules/*"
] ]
} }
} }

View File

@ -164,13 +164,13 @@ gpg: key 7C3D57159FC2F927: public key "InfluxData Package Signing Key <support@i
<!--test:setup <!--test:setup
```sh ```sh
curl --silent --location --output-dir ~/Downloads -O \ curl --silent --location --output-dir ~/Downloads -O \
"https://download.influxdata.com/influxdb/releases/influxdb2-{{< latest-patch >}}_darwin_amd64.tar.gz" \ "https://download.influxdata.com/influxdb/releases/v{{< latest-patch >}}/influxdb2-{{< latest-patch >}}_darwin_amd64.tar.gz" \
``` ```
--> -->
```sh ```sh
curl --silent --location \ curl --silent --location \
https://download.influxdata.com/influxdb/releases/influxdb2-{{< latest-patch >}}_darwin_amd64.tar.gz.asc \ https://download.influxdata.com/influxdb/releases/v{{< latest-patch >}}/influxdb2-{{< latest-patch >}}_darwin_amd64.tar.gz.asc \
| gpg --verify - ~/Downloads/influxdb2-{{< latest-patch >}}_darwin_amd64.tar.gz \ | gpg --verify - ~/Downloads/influxdb2-{{< latest-patch >}}_darwin_amd64.tar.gz \
2>&1 | grep 'InfluxData Package Signing Key <support@influxdata.com>' 2>&1 | grep 'InfluxData Package Signing Key <support@influxdata.com>'
``` ```
@ -239,12 +239,12 @@ brew install influxdb
1. In your browser or your terminal, download the InfluxDB package. 1. In your browser or your terminal, download the InfluxDB package.
<a class="btn download" href="https://download.influxdata.com/influxdb/releases/influxdb2-{{< latest-patch >}}_darwin_amd64.tar.gz" download>InfluxDB v2 (macOS)</a> <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>
```sh ```sh
# Download using cURL # Download using cURL
curl --location -O \ curl --location -O \
"https://download.influxdata.com/influxdb/releases/influxdb2-{{< latest-patch >}}_darwin_amd64.tar.gz" "https://download.influxdata.com/influxdb/releases/v{{< latest-patch >}}/influxdb2-{{< latest-patch >}}_darwin_amd64.tar.gz"
``` ```
2. {{< req text="Recommended:" color="magenta" >}}: Verify the integrity of the download--for example, enter the 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._
1. In your browser or your terminal, download the InfluxDB binary for your 1. In your browser or your terminal, download the InfluxDB binary for your
system architecture (AMD64 or ARM). system architecture (AMD64 or ARM).
<a class="btn download" href="https://download.influxdata.com/influxdb/releases/influxdb2-{{< latest-patch >}}_linux_amd64.tar.gz" download >InfluxDB v2 (amd64)</a> <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>
<a class="btn download" href="https://download.influxdata.com/influxdb/releases/influxdb2-{{< latest-patch >}}_linux_arm64.tar.gz" download >InfluxDB v2 (arm)</a> <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>
<!--test:actual <!--test:actual
```sh ```sh
curl -s --location -O \ curl -s --location -O \
"https://download.influxdata.com/influxdb/releases/influxdb2-{{< latest-patch >}}_linux_amd64.tar.gz" "https://download.influxdata.com/influxdb/releases/v{{< latest-patch >}}/influxdb2-{{< latest-patch >}}_linux_amd64.tar.gz"
``` ```
```sh ```sh
curl -s --location -O \ curl -s --location -O \
"https://download.influxdata.com/influxdb/releases/influxdb2-{{< latest-patch >}}_linux_arm64.tar.gz" "https://download.influxdata.com/influxdb/releases/v{{< latest-patch >}}/influxdb2-{{< latest-patch >}}_linux_arm64.tar.gz"
``` ```
--> -->
@ -463,7 +463,7 @@ _If necessary, adjust the example file paths and utilities for your system._
```sh ```sh
# Use curl to download the amd64 binary. # Use curl to download the amd64 binary.
curl --location -O \ curl --location -O \
https://download.influxdata.com/influxdb/releases/influxdb2-{{< latest-patch >}}_linux_amd64.tar.gz https://download.influxdata.com/influxdb/releases/v{{< latest-patch >}}/influxdb2-{{< latest-patch >}}_linux_amd64.tar.gz
``` ```
<!--pytest.mark.skip--> <!--pytest.mark.skip-->
@ -471,7 +471,7 @@ _If necessary, adjust the example file paths and utilities for your system._
```sh ```sh
# Use curl to download the arm64 binary. # Use curl to download the arm64 binary.
curl --location -O \ curl --location -O \
https://download.influxdata.com/influxdb/releases/influxdb2-{{< latest-patch >}}_linux_arm64.tar.gz https://download.influxdata.com/influxdb/releases/v{{< latest-patch >}}/influxdb2-{{< latest-patch >}}_linux_arm64.tar.gz
``` ```
2. [Choose the InfluxData key-pair for your OS version](#choose-the-influxdata-key-pair-for-your-system). 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._
| grep 'InfluxData Package Signing Key <support@influxdata.com>' \ | grep 'InfluxData Package Signing Key <support@influxdata.com>' \
&& &&
# Download and verify the binary's signature file # Download and verify the binary's signature file
curl --silent --location "https://download.influxdata.com/influxdb/releases/influxdb2-{{< latest-patch >}}_linux_amd64.tar.gz.asc" \ curl --silent --location "https://download.influxdata.com/influxdb/releases/v{{< latest-patch >}}/influxdb2-{{< latest-patch >}}_linux_amd64.tar.gz.asc" \
| gpg --verify - influxdb2-{{< latest-patch >}}_linux_amd64.tar.gz \ | gpg --verify - influxdb2-{{< latest-patch >}}_linux_amd64.tar.gz \
2>&1 | grep 'InfluxData Package Signing Key <support@influxdata.com>' 2>&1 | grep 'InfluxData Package Signing Key <support@influxdata.com>'
``` ```
@ -519,7 +519,7 @@ _If necessary, adjust the example file paths and utilities for your system._
| grep 'InfluxData Package Signing Key <support@influxdata.com>' \ | grep 'InfluxData Package Signing Key <support@influxdata.com>' \
&& &&
# Download and verify the binary's signature file # Download and verify the binary's signature file
curl --silent --location "https://download.influxdata.com/influxdb/releases/influxdb2-{{< latest-patch >}}_linux_arm64.tar.gz.asc" \ curl --silent --location "https://download.influxdata.com/influxdb/releases/v{{< latest-patch >}}/influxdb2-{{< latest-patch >}}_linux_arm64.tar.gz.asc" \
| gpg --verify - influxdb2-{{< latest-patch >}}_linux_arm64.tar.gz \ | gpg --verify - influxdb2-{{< latest-patch >}}_linux_arm64.tar.gz \
2>&1 | grep 'InfluxData Package Signing Key <support@influxdata.com>' 2>&1 | grep 'InfluxData Package Signing Key <support@influxdata.com>'
``` ```
@ -618,7 +618,7 @@ chmod 0750 ~/.influxdbv2
> >
> _You'll install the `influx CLI` in a [later step](#download-install-and-configure-the-influx-cli)._ > _You'll install the `influx CLI` in a [later step](#download-install-and-configure-the-influx-cli)._
<a class="btn download" href="https://download.influxdata.com/influxdb/releases/influxdb2-{{< latest-patch >}}-windows.zip" download >InfluxDB v2 (Windows)</a> <a class="btn download" href="https://download.influxdata.com/influxdb/releases/v{{< latest-patch >}}/influxdb2-{{< latest-patch >}}-windows.zip" download >InfluxDB v2 (Windows)</a>
Expand the downloaded archive into `C:\Program Files\InfluxData\` and rename the Expand the downloaded archive into `C:\Program Files\InfluxData\` and rename the
files if desired. files if desired.