YuniKorn Operations: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=Internal= * YuniKorn") |
|||
Line 1: | Line 1: | ||
=Internal= | =Internal= | ||
* [[YuniKorn#Subjects| YuniKorn]] | * [[YuniKorn#Subjects| YuniKorn]] | ||
=Installation= | |||
With admission controller: | |||
<syntaxhighlight lang='bash'> | |||
helm repo add yunikorn https://apache.github.io/yunikorn-release | |||
helm repo update | |||
kubectl create namespace yunikorn | |||
helm install yunikorn yunikorn/yunikorn --namespace yunikorn | |||
</syntaxhighlight> | |||
To uninstall: | |||
<syntaxhighlight lang='bash'> | |||
helm uninstall yunikorn --namespace yunikorn | |||
</syntaxhighlight> | |||
Access to the Web UI: | |||
<syntaxhighlight lang='bash'> | |||
kubectl port-forward svc/yunikorn-service 9889:9889 -n yunikorn | |||
</syntaxhighlight> | |||
.... then go to http://localhost:9889 |
Revision as of 00:01, 7 December 2023
Internal
Installation
With admission controller:
helm repo add yunikorn https://apache.github.io/yunikorn-release
helm repo update
kubectl create namespace yunikorn
helm install yunikorn yunikorn/yunikorn --namespace yunikorn
To uninstall:
helm uninstall yunikorn --namespace yunikorn
Access to the Web UI:
kubectl port-forward svc/yunikorn-service 9889:9889 -n yunikorn
.... then go to http://localhost:9889