Helm - install
Table of Contents
Install Helm Download and install the helm binary:
wget https://storage.googleapis.com/kubernetes-helm/helm-v2.6.2-linux-amd64.tar.gz
Unzip the file to your local system:
tar zxfv helm-v2.6.2-linux-amd64.tar.gz
cp linux-amd64/helm .
Initialize Helm to install Tiller, the server side of Helm, in your cluster:
./helm init
./helm update
Other tips
GCS Plugin
export PROJECT=$(gcloud info --format='value(config.project)')
export BUCKET=$PROJECT-helm-repo
./helm plugin install https://github.com/viglesiasce/helm-gcs.git --version v0.1.1
gsutil mb -l us-central1 gs://$BUCKET
./helm gcs init gs://$BUCKET
GCS TEST
./helm create test-chart
./helm package test-chart
./helm gcs push test-chart-0.1.0.tgz gs://$PROJECT-helm-repo
./helm repo add gcs-repo gs://$PROJECT-helm-repo
./helm search gcs-repo