Skip to content

Commit

Permalink
fix(docs): remove --version flag on kargo install (akuity#798)
Browse files Browse the repository at this point in the history
  • Loading branch information
morey-tech authored Sep 19, 2023
1 parent 9203c78 commit c61e826
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
1 change: 0 additions & 1 deletion docs/docs/20-quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,6 @@ The username and password are both `admin`.
```shell
helm install kargo \
oci://ghcr.io/akuity/kargo-charts/kargo \
--version 0.1.0-rc.21 \
--namespace kargo \
--create-namespace \
--set api.service.type=NodePort \
Expand Down
10 changes: 1 addition & 9 deletions docs/docs/30-how-to-guides/10-installing-kargo.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,26 +41,19 @@ The following command will install Kargo with default configuration:
```shell
helm install kargo \
oci://ghcr.io/akuity/kargo-charts/kargo \
--version 0.1.0-rc.21 \
--namespace kargo \
--create-namespace \
--wait
```

:::note
The `--version` flag is required for installing unstable releases, such as this
release candidate.
:::

## Advanced Installation

1. Extract the default values from the Helm chart and save it to a convenient
location. In the example below, we save it to `~/kargo-values.yaml`

```shell
helm inspect values \
oci://ghcr.io/akuity/kargo-charts/kargo \
--version 0.1.0-rc.21 > ~/kargo-values.yaml
oci://ghcr.io/akuity/kargo-charts/kargo > ~/kargo-values.yaml
```

1. Edit and save the values.
Expand All @@ -75,7 +68,6 @@ release candidate.
```shell
helm install kargo \
oci://ghcr.io/akuity/kargo-charts/kargo \
--version 0.1.0-rc.21 \
--namespace kargo \
--create-namespace \
--values ~/kargo-values.yaml \
Expand Down

0 comments on commit c61e826

Please sign in to comment.