Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
# Helm-3 Install
mkdir ~/.helm
 
curl -fsSL -o get_helm https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3
 
chmod 700 get_helm.sh
 
./get_helm -v v3.5.2 --no-sudo
 
# Check Helm Version
helm version
 
helm repo remove stable

...