Installation for macOS
Installation for macOS
Install the helm CLI binary on your system:
- Download the latest release
- Unpack it (e.g.
tar -zxvf <filename>) - Find the
helmbinary in the unpacked directory and move it to its desired destination (e.g.mv darwin-amd64/helm ~/bin/)- The desired destination should be listed in your $PATH environment variable (
echo $PATH)
- The desired destination should be listed in your $PATH environment variable (
Proxy configuration
Note
If you have direct access to the internet from your location, the proxy configuration is not required.
Set your HTTP proxy environment variables so that a chart repository can be added to your Helm repos in a later lab. It is recommended to set the lowercase and uppercase variables, as the helm command takes them all into account.
export HTTP_PROXY="http://<username>:<password>@<proxy>:<port>"
export HTTPS_PROXY="http://<username>:<password>@<proxy>:<port>"
export NO_PROXY="<noproxy-list>"
export http_proxy="http://<username>:<password>@<proxy>:<port>"
export https_proxy="http://<username>:<password>@<proxy>:<port>"
export no_proxy="<noproxy-list>"
Replace <username> and <password> with your credentials. If you have special characters in your password, escape them with their corresponding hexadecimal values according to this article
.
Verification
Now, verify your installation .