Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[YUNIKORN-2696] Appoint specific version when installing yunikorn #452

Closed
wants to merge 3 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions docs/get_started/get_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,27 @@ admission controller delegating all scheduling to YuniKorn. Because this mode is

If you are unsure which deployment mode you should use, refer to our [side-by-side comparison](user_guide/deployment_modes).

If you want to use specific Yunikorn version, you can update helm chart via helm upgrade.
```shell script
helm upgrade -f custom.yml -install yunikorn yunikorn/yunikorn -n yunikorn --create-namespace
```

The custom.yml is
```yml
image:
tag: scheduler-1.5.1

admissionController:
image:
tag: admission-1.5.1

web:
image:
tag: web-1.5.1
```

The `latest` image tags which is not available on [docker hub](https://hub.docker.com/r/apache/yunikorn/tags).

Further configuration options for installing YuniKorn via Helm are available in the [YuniKorn Helm hub page](https://hub.helm.sh/charts/yunikorn/yunikorn).

If you don't want to use helm charts, you can find our step-by-step
Expand Down