Skip to content

Commit

Permalink
docs: update scripts and docs for v0.9.0-rc.2 (#2625)
Browse files Browse the repository at this point in the history
      Signed-off-by: Kent Rancourt <[email protected]>
  • Loading branch information
krancour authored Oct 2, 2024
1 parent aac9ea0 commit c10f4dc
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions docs/docs/20-quickstart.md
Original file line number Diff line number Diff line change
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/download/v0.9.0-rc.1/kargo-"$(uname -s | tr '[:upper:]' '[:lower:]')-${arch}"
curl -L -o kargo https://github.com/akuity/kargo/releases/download/v0.9.0-rc.2/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/download/v0.9.0-rc.1/kargo-windows-amd64.exe -OutFile kargo.exe
Invoke-WebRequest -URI https://github.com/akuity/kargo/releases/download/v0.9.0-rc.2/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
4 changes: 2 additions & 2 deletions docs/docs/30-how-to-guides/10-installing-kargo.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ user-specified admin password:
```shell
helm install kargo \
oci://ghcr.io/akuity/kargo-charts/kargo \
--version 0.9.0-rc.1 \
--version 0.9.0-rc.2 \
--namespace kargo \
--create-namespace \
--set api.adminAccount.passwordHash='$2a$10$Zrhhie4vLz5ygtVSaif6o.qN36jgs6vjtMBdM6yrU1FOeiAAMMxOm' \
Expand Down Expand Up @@ -84,7 +84,7 @@ following:
```shell
helm install kargo \
oci://ghcr.io/akuity/kargo-charts/kargo \
--version 0.9.0-rc.1 \
--version 0.9.0-rc.2 \
--namespace kargo \
--create-namespace \
--values ~/kargo-values.yaml \
Expand Down
2 changes: 1 addition & 1 deletion hack/quickstart/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ helm install argo-rollouts argo-rollouts \
# Password is 'admin'
helm install kargo \
oci://ghcr.io/akuity/kargo-charts/kargo \
--version 0.9.0-rc.1 \
--version 0.9.0-rc.2 \
--namespace kargo \
--create-namespace \
--set api.service.type=NodePort \
Expand Down
2 changes: 1 addition & 1 deletion hack/quickstart/k3d.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ helm install argo-rollouts argo-rollouts \
# Password is 'admin'
helm install kargo \
oci://ghcr.io/akuity/kargo-charts/kargo \
--version 0.9.0-rc.1 \
--version 0.9.0-rc.2 \
--namespace kargo \
--create-namespace \
--set api.service.type=NodePort \
Expand Down
2 changes: 1 addition & 1 deletion hack/quickstart/kind.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ helm install argo-rollouts argo-rollouts \
# Password is 'admin'
helm install kargo \
oci://ghcr.io/akuity/kargo-charts/kargo \
--version 0.9.0-rc.1 \
--version 0.9.0-rc.2 \
--namespace kargo \
--create-namespace \
--set api.service.type=NodePort \
Expand Down

0 comments on commit c10f4dc

Please sign in to comment.