Skip to content

Commit

Permalink
Add example using helm repo to helm installation guide (#3517)
Browse files Browse the repository at this point in the history
* Add example using helm repo to helm installation guide

* Update charts/kueue/README.md

Co-authored-by: Mykhailo Bobrovskyi <[email protected]>

* Add kueue README.md to version replace sed

* Fix sed replace for kueue helm readme

* Remove kueue readme from other sed

---------

Co-authored-by: Mykhailo Bobrovskyi <[email protected]>
  • Loading branch information
avrittrohwer and mbobrovskyi authored Nov 13, 2024
1 parent 140e9dd commit 00a05fc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,7 @@ artifacts: kustomize yq helm ## Generate release artifacts.
.PHONY: prepare-release-branch
prepare-release-branch: yq kustomize ## Prepare the release branch with the release version.
$(SED) -r 's/v[0-9]+\.[0-9]+\.[0-9]+/$(RELEASE_VERSION)/g' -i README.md -i site/hugo.toml
$(SED) -r 's/--version="v[0-9]+\.[0-9]+\.[0-9]+/--version="$(RELEASE_VERSION)/g' -i charts/kueue/README.md
$(YQ) e '.appVersion = "$(RELEASE_VERSION)"' -i charts/kueue/Chart.yaml
@$(call clean-manifests)

Expand Down
8 changes: 8 additions & 0 deletions charts/kueue/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,20 @@ Quick start instructions for the setup and configuration of kueue using Helm.

##### Install chart using Helm v3.0+

Either clone the kueue repository:

```bash
$ git clone [email protected]:kubernetes-sigs/kueue.git
$ cd kueue/charts
$ helm install kueue kueue/ --create-namespace --namespace kueue-system
```

Or use the charts pushed to `us-central1-docker.pkg.dev/k8s-staging-images/charts/kueue`:

```bash
helm install kueue oci://us-central1-docker.pkg.dev/k8s-staging-images/charts/kueue --version="v0.9.0" --create-namespace --namespace=kueue-system
```

##### Verify that controller pods are running properly.

```bash
Expand Down

0 comments on commit 00a05fc

Please sign in to comment.