generated from kubernetes/kubernetes-template-project
-
Notifications
You must be signed in to change notification settings - Fork 262
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add example using helm repo to helm installation guide (#3517)
* 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
1 parent
140e9dd
commit 00a05fc
Showing
2 changed files
with
9 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|