Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update docs and scripts to lock release-0.8 branch into latest stable release #2611

Merged
merged 1 commit into from
Sep 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions docs/docs/20-quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

</TabItem>
Expand All @@ -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
```

</TabItem>
Expand All @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
```

Expand All @@ -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
Expand Down Expand Up @@ -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
```

</TabItem>
Expand All @@ -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
```

</TabItem>
Expand Down
2 changes: 2 additions & 0 deletions docs/docs/30-how-to-guides/10-installing-kargo.md
Original file line number Diff line number Diff line change
Expand Up @@ -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' \
Expand Down Expand Up @@ -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 \
Expand Down
1 change: 1 addition & 0 deletions hack/quickstart/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
1 change: 1 addition & 0 deletions hack/quickstart/k3d.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
1 change: 1 addition & 0 deletions hack/quickstart/kind.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
Loading