Answers for "install helm v3 on windows"

1

install helm

curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3
chmod 700 get_helm.sh
./get_helm.sh
Posted by: Guest on February-12-2022
0

install Helm v3.x

curl https://raw.githubusercontent.com/kubernetes/helm/master/scripts/get-helm-3 > get_helm.sh
chmod 700 get_helm.sh
./get_helm.sh
##If you are using OS X you can install it with the brew install command: brew install helm.
Posted by: Guest on August-26-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language