Skip to the content.

Helm Guide for github

[中文]|[English]

The repo url of helm chart: https://caden2016.github.io/nvidia-gpu-scheduler

Usage of Helm Repo Chart

  1. helm installation and command completion
    # wget https://get.helm.sh/helm-v3.7.2-linux-amd64.tar.gz 
    # source <(helm completion bash)
    
  2. Add and Update chart repo
    # helm repo add myrepo https://caden2016.github.io/nvidia-gpu-scheduler
    # helm repo update
    
  3. List chart repo
    # helm repo list
    NAME  	URL                                   
    myrepo	https://caden2016.github.io/nvidia-gpu-scheduler
    
  4. 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 
    
  5. 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
    
  6. Delete chart repo
    # helm repo remove myrepo