From 5975b4f8e00b914547f7464c53a7e89ab810b44f Mon Sep 17 00:00:00 2001 From: Kent Rancourt Date: Mon, 30 Sep 2024 14:50:45 -0400 Subject: [PATCH] update docs and scripts to lock release-0.8 branch into latest stable release Signed-off-by: Kent Rancourt --- docs/docs/20-quickstart.md | 16 ++++++++-------- .../docs/30-how-to-guides/10-installing-kargo.md | 2 ++ hack/quickstart/install.sh | 1 + hack/quickstart/k3d.sh | 1 + hack/quickstart/kind.sh | 1 + 5 files changed, 13 insertions(+), 8 deletions(-) diff --git a/docs/docs/20-quickstart.md b/docs/docs/20-quickstart.md index d4aa37217..e06cd4d23 100644 --- a/docs/docs/20-quickstart.md +++ b/docs/docs/20-quickstart.md @@ -49,7 +49,7 @@ remove not just Kargo-related resources, but _all_ your workloads and data. ::: ```shell -curl -L https://raw.githubusercontent.com/akuity/kargo/main/hack/quickstart/install.sh | sh +curl -L https://raw.githubusercontent.com/akuity/kargo/release-0.8/hack/quickstart/install.sh | sh ``` @@ -68,7 +68,7 @@ remove not just Kargo-related resources, but _all_ your workloads and data. ::: ```shell -curl -L https://raw.githubusercontent.com/akuity/kargo/main/hack/quickstart/install.sh | sh +curl -L https://raw.githubusercontent.com/akuity/kargo/release-0.8/hack/quickstart/install.sh | sh ``` @@ -80,7 +80,7 @@ just for this quickstart using [kind](https://kind.sigs.k8s.io/#installation-and-usage). ```shell -curl -L https://raw.githubusercontent.com/akuity/kargo/main/hack/quickstart/kind.sh | sh +curl -L https://raw.githubusercontent.com/akuity/kargo/release-0.8/hack/quickstart/kind.sh | sh ``` :::info @@ -98,7 +98,7 @@ Docker, Docker Desktop, or OrbStack), you can easily launch a disposable cluster just for this quickstart using [k3d](https://k3d.io). ```shell -curl -L https://raw.githubusercontent.com/akuity/kargo/main/hack/quickstart/k3d.sh | sh +curl -L https://raw.githubusercontent.com/akuity/kargo/release-0.8/hack/quickstart/k3d.sh | sh ``` :::info @@ -163,7 +163,7 @@ To download the Kargo CLI: ```shell arch=$(uname -m) [ "$arch" = "x86_64" ] && arch=amd64 -curl -L -o kargo https://github.com/akuity/kargo/releases/latest/download/kargo-"$(uname -s | tr '[:upper:]' '[:lower:]')-${arch}" +curl -L -o kargo https://github.com/akuity/kargo/releases/download/v0.8.7/kargo-"$(uname -s | tr '[:upper:]' '[:lower:]')-${arch}" chmod +x kargo ``` @@ -176,7 +176,7 @@ value of your `PATH` environment variable. To download the Kargo CLI: ```shell -Invoke-WebRequest -URI https://github.com/akuity/kargo/releases/latest/download/kargo-windows-amd64.exe -OutFile kargo.exe +Invoke-WebRequest -URI https://github.com/akuity/kargo/releases/download/v0.8.7/kargo-windows-amd64.exe -OutFile kargo.exe ``` Then move `kargo.exe` to a location in your file system that is included in the value @@ -733,7 +733,7 @@ If, instead, you wish to preserve non-Kargo-related workloads and data, you will need to manually uninstall Kargo and its prerequisites: ```shell -curl -L https://raw.githubusercontent.com/akuity/kargo/main/hack/quickstart/uninstall.sh | sh +curl -L https://raw.githubusercontent.com/akuity/kargo/release-0.8/hack/quickstart/uninstall.sh | sh ``` @@ -751,7 +751,7 @@ If, instead, you wish to preserve non-Kargo-related workloads and data, you will need to manually uninstall Kargo and its prerequisites: ```shell -curl -L https://raw.githubusercontent.com/akuity/kargo/main/hack/quickstart/uninstall.sh | sh +curl -L https://raw.githubusercontent.com/akuity/kargo/release-0.8/hack/quickstart/uninstall.sh | sh ``` diff --git a/docs/docs/30-how-to-guides/10-installing-kargo.md b/docs/docs/30-how-to-guides/10-installing-kargo.md index 47fc77fe8..ac0b62932 100644 --- a/docs/docs/30-how-to-guides/10-installing-kargo.md +++ b/docs/docs/30-how-to-guides/10-installing-kargo.md @@ -45,6 +45,7 @@ user-specified admin password: ```shell helm install kargo \ oci://ghcr.io/akuity/kargo-charts/kargo \ + --version 0.8.7 \ --namespace kargo \ --create-namespace \ --set api.adminAccount.passwordHash='$2a$10$Zrhhie4vLz5ygtVSaif6o.qN36jgs6vjtMBdM6yrU1FOeiAAMMxOm' \ @@ -83,6 +84,7 @@ following: ```shell helm install kargo \ oci://ghcr.io/akuity/kargo-charts/kargo \ + --version 0.8.7 \ --namespace kargo \ --create-namespace \ --values ~/kargo-values.yaml \ diff --git a/hack/quickstart/install.sh b/hack/quickstart/install.sh index 61b4e7e23..88d29ba3a 100755 --- a/hack/quickstart/install.sh +++ b/hack/quickstart/install.sh @@ -39,6 +39,7 @@ helm install argo-rollouts argo-rollouts \ # Password is 'admin' helm install kargo \ oci://ghcr.io/akuity/kargo-charts/kargo \ + --version=0.8.7 \ --namespace kargo \ --create-namespace \ --set api.service.type=NodePort \ diff --git a/hack/quickstart/k3d.sh b/hack/quickstart/k3d.sh index 565cb2c90..e1fa04e87 100755 --- a/hack/quickstart/k3d.sh +++ b/hack/quickstart/k3d.sh @@ -46,6 +46,7 @@ helm install argo-rollouts argo-rollouts \ # Password is 'admin' helm install kargo \ oci://ghcr.io/akuity/kargo-charts/kargo \ + --version=0.8.7 \ --namespace kargo \ --create-namespace \ --set api.service.type=NodePort \ diff --git a/hack/quickstart/kind.sh b/hack/quickstart/kind.sh index c63aca94b..5a065fb3a 100755 --- a/hack/quickstart/kind.sh +++ b/hack/quickstart/kind.sh @@ -60,6 +60,7 @@ helm install argo-rollouts argo-rollouts \ # Password is 'admin' helm install kargo \ oci://ghcr.io/akuity/kargo-charts/kargo \ + --version=0.8.7 \ --namespace kargo \ --create-namespace \ --set api.service.type=NodePort \