Skip to content
This repository has been archived by the owner on Apr 6, 2024. It is now read-only.

Latest commit

 

History

History
25 lines (16 loc) · 698 Bytes

Helm.md

File metadata and controls

25 lines (16 loc) · 698 Bytes

Installing Helm

You may follow Using Helm with Amazon EKS from the Amazon EKS official document or just follow the steps below:

Install the Helm client

Follow the official document to install the Helm client.

# create 'tiller' namespace
$ kubectl create namespace tiller
# open a new terminal and run tiller client mode
$ export TILLER_NAMESPACE=tiller
$ tiller -listen=localhost:44134 -storage=secret -logtostderr
# open a new terminal
$ export HELM_HOST=:44134
$ helm init --client-only
$ helm repo update

That's all!