Created by: ston1th 2019-11-13 23:30:27
Updated by: ston1th 2020-01-17 18:29:03
Visibility: Public

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