Installing HELM on Debian OS
This guide will demonstrate the steps to install HELM on the Debian operating system.
Install HELM
Copy Successful
# Download HELM key.
curl https://baltocdn.com/helm/signing.asc | gpg --dearmor | sudo tee /usr/share/keyrings/helm.gpg > /dev/null
Copy Successful
# Install necessary packages.
sudo apt-get install apt-transport-https --yes
Copy Successful
# Configure the list.
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/helm.gpg] https://baltocdn.com/helm/stable/debian/ all main" | sudo tee /etc/apt/sources.list.d/helm-stable-debian.list
Copy Successful
# Update the apt package repository.
sudo apt-get update
Copy Successful
# Install HELM.
sudo apt-get install helm