Skip to content

Commit

Permalink
chore: release chores v0.6.0 (#1971)
Browse files Browse the repository at this point in the history
Signed-off-by: Hidde Beydals <hidde@hhh.computer>
  • Loading branch information
hiddeco committed May 7, 2024
1 parent 0e7380d commit b0c9038
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 8 deletions.
16 changes: 8 additions & 8 deletions docs/docs/20-quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,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.6/hack/quickstart/install.sh | sh
```

</TabItem>
Expand All @@ -71,7 +71,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.6/hack/quickstart/install.sh | sh
```

</TabItem>
Expand All @@ -83,7 +83,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.6/hack/quickstart/kind.sh | sh
```

:::info
Expand All @@ -101,7 +101,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.6/hack/quickstart/k3d.sh | sh
```

:::info
Expand Down Expand Up @@ -166,7 +166,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/v0.6.0/download/kargo-"$(uname -s | tr '[:upper:]' '[:lower:]')-${arch}"
chmod +x kargo
```

Expand All @@ -179,7 +179,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/v0.6.0/download/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 @@ -647,7 +647,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.6/hack/quickstart/uninstall.sh | sh
```
</TabItem>
Expand All @@ -665,7 +665,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.6/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.6.0 \
--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.6.0 \
--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 @@ -35,6 +35,7 @@ helm install argo-rollouts argo-rollouts \
# Password is 'admin'
helm install kargo \
oci://ghcr.io/akuity/kargo-charts/kargo \
--version 0.6.0 \
--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 @@ -42,6 +42,7 @@ helm install argo-rollouts argo-rollouts \
# Password is 'admin'
helm install kargo \
oci://ghcr.io/akuity/kargo-charts/kargo \
--version 0.6.0 \
--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 @@ -56,6 +56,7 @@ helm install argo-rollouts argo-rollouts \
# Password is 'admin'
helm install kargo \
oci://ghcr.io/akuity/kargo-charts/kargo \
--version 0.6.0 \
--namespace kargo \
--create-namespace \
--set api.service.type=NodePort \
Expand Down

0 comments on commit b0c9038

Please sign in to comment.