From 67963c8e560ca38e7f61162ffbd2682b50300635 Mon Sep 17 00:00:00 2001 From: Scott Anderson Date: Tue, 10 Jun 2025 16:15:00 -0600 Subject: [PATCH] hotfix: improved instructions for downloading clustered release artifacts manually --- .../reference/release-notes/clustered.md | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/content/influxdb3/clustered/reference/release-notes/clustered.md b/content/influxdb3/clustered/reference/release-notes/clustered.md index 6d21c65ab..9420e7ea9 100644 --- a/content/influxdb3/clustered/reference/release-notes/clustered.md +++ b/content/influxdb3/clustered/reference/release-notes/clustered.md @@ -25,8 +25,14 @@ weight: 201 {{% expand "Download release artifacts manually" %}} To download a bundle of release artifacts for a specific version of -InfluxDB Clustered, [install `crane`](https://github.com/google/go-containerregistry/tree/main/cmd/crane#installation) -and [`jq`](https://jqlang.org/download/) and run the following shell script: +InfluxDB Clustered: + +1. [install `crane`](https://github.com/google/go-containerregistry/tree/main/cmd/crane#installation) + and [`jq`](https://jqlang.org/download/). +2. Ensure your InfluxData pull secret is in the `/tmp/influxdbsecret` directory + on your local machine. This secret was provided to you by InfluxData to + authorize the use of InfluxDB Clustered images. +3. Run the following shell script: {{% code-placeholders "RELEASE_VERSION" %}} @@ -42,9 +48,11 @@ crane blob "$IMAGE@$DIGEST" | tar -xvzf - -C ./ ``` {{% /code-placeholders %}} -Replace {{% code-placeholder-key %}}`RELEASE_VERSION`{{% /code-placeholder-key %}} -with the InfluxDB Clustered release version you want to download artifacts for. -Assets will be available in the created `influxdb-3.0-clustered` directory. +_Replace {{% code-placeholder-key %}}`RELEASE_VERSION`{{% /code-placeholder-key %}} +with the InfluxDB Clustered release version you want to download artifacts for._ + +The script creates an `influxdb-3.0-clustered` directory in the current working +directory. This new directory contains artifacts associated with the specified release. {{% /expand %}} {{< /expand-wrapper >}}