deploy-using-helm

Helm

References:

  1. Download helm package

     wget https://get.helm.sh/helm-v3.7.0-rc.2-linux-amd64.tar.gz
    
  2. Unpack the downloaded package

     tar -zxvf helm-v3.7.0-rc.2-linux-amd64.tar.gz
    
  3. Copy the binary to a proper destination

     sudo cp linux-amd64/helm /usr/local/bin/
    
  4. Add execution permissions to the binary (if needed)

     sudo chmod ugo+x /usr/local/bin/helm
    
  5. Test the command

     [roberto@vmlab01 ~]$ helm help
     The Kubernetes package manager
    
     Common actions for Helm:
    
     - helm search:    search for charts
     - helm pull:      download a chart to your local directory to view
     - helm install:   upload the chart to Kubernetes
     - helm list:      list releases of charts
         ...