|
|
|
@ -60,6 +60,19 @@ The binary can also be installed via [`scoop`](https://scoop.sh) command-line in
|
|
|
|
|
scoop install helm
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### From Apt (Debian/Ubuntu)
|
|
|
|
|
|
|
|
|
|
Members of the Kubernetes community have contributed a [Helm
|
|
|
|
|
package](https://helm.baltorepo.com/stable/debian/) for Apt. This package is generally up to date.
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
curl https://helm.baltorepo.com/organization/signing.asc | sudo apt-key add -
|
|
|
|
|
sudo apt-get install apt-transport-https --yes
|
|
|
|
|
echo "deb https://baltocdn.com/helm/stable/debian/ all main" | sudo tee /etc/apt/sources.list.d/helm-stable-debian.list
|
|
|
|
|
sudo apt-get update
|
|
|
|
|
sudo apt-get install helm2
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### From Script
|
|
|
|
|
|
|
|
|
|
Helm now has an installer script that will automatically grab the latest version
|
|
|
|
|