Skip to content

Instalacja Helm na klastrze

Przed instalacją

Potrzebujemy mieć: - wdrożony klaster Kubernetes - zainstalowany i skonfigurowany kubectl lokalnie

Instalacja właściwa

Kroki do instalacji na Ubuntu/Debian:

sudo apt-get install curl gpg apt-transport-https --yes

curl -fsSL https://packages.buildkite.com/helm-linux/helm-debian/gpgkey | gpg --dearmor | sudo tee /usr/share/keyrings/helm.gpg > /dev/null

echo "deb [signed-by=/usr/share/keyrings/helm.gpg] https://packages.buildkite.com/helm-linux/helm-debian/any/ any main" | sudo tee /etc/apt/sources.list.d/helm-stable-debian.list

sudo apt-get update

sudo apt-get install helm

Źródło: https://helm.sh/docs/intro/install/