Helm Guide for github
[中文]|[English]
The repo url of helm chart: https://caden2016.github.io/nvidia-gpu-scheduler
Usage of Helm Repo Chart
- helm installation and command completion
# wget https://get.helm.sh/helm-v3.7.2-linux-amd64.tar.gz # source <(helm completion bash)
- Add and Update chart repo
# helm repo add myrepo https://caden2016.github.io/nvidia-gpu-scheduler # helm repo update
- List chart repo
# helm repo list NAME URL myrepo https://caden2016.github.io/nvidia-gpu-scheduler
- Search chart repo
# helm search repo myrepo NAME CHART VERSION APP VERSION DESCRIPTION myrepo/nvidia-gpu-scheduler 0.2.0 0.2.0 A Helm chart for nvidia-gpu-scheduler on Kubernetes
- Install from chart repo, xxx is the release name. nodeinfo=gpu is the label of gpu node, where to deploy gpuserver-ds.
# helm install xxx myrepo/nvidia-gpu-scheduler --version 0.2.0 --namespace kube-system --set nodeSelectorDaemonSet.nodeinfo=gpu # helm list --all-namespaces # helm uninstall xxx --namespace kube-system
- Delete chart repo
# helm repo remove myrepo