GoWiki
Index
Sections
Search
Login
k8s
Helm
# Helm Install helm on your master: ``` curl -s -L https://get.helm.sh/helm-v3.0.2-linux-amd64.tar.gz >/tmp/helm-v3.0.2-linux-amd64.tar.gz [[ $(sha256sum /tmp/helm-v3.0.2-linux-amd64.tar.gz|cut -d" " -f1) = "c6b7aa7e4ffc66e8abb4be328f71d48c643cb8f398d95c74d075cfb348710e1d" ]] && { tar xfz /tmp/helm-v3.0.2-linux-amd64.tar.gz --strip-components=1 -C /usr/bin linux-amd64/helm rm -f /tmp/helm-v3.0.2-linux-amd64.tar.gz echo "helm install successful" } || echo "checksum invalid" ``` Add the stable repository: ``` helm repo add stable https://kubernetes-charts.storage.googleapis.com/ helm repo update ```