Step-by-step guide on how to install Helm on various operating systems
Day 28 of Kubernetes Writing Challenge ?
Helm is a powerful tool for managing Kubernetes applications, but before you can use it, you need to install it on your local machine. Here's a guide to help you install Helm on various operating systems.
Installing Helm on Windows
Installing Helm on macOS
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
brew install helm
Installing Helm on Linux
The instructions for installing Helm on Linux depend on your specific Linux distribution. Here are instructions for some popular distributions:
Ubuntu/Debian
curl https://baltocdn.com/helm/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 helm
Red Hat/CentOS/Fedora
sudo curl -fsSL -o /etc/yum.repos.d/helm.repo https://baltocdn.com/helm/stable/rpm/helm.repo
sudo yum install helm
Once you've installed Helm on your local machine, you're ready to start managing your Kubernetes applications more easily with Helm charts. Tomorrow, we get into more interesting part of learning - Project!
Happy charting!
Principal Cloud Architect at Engageware
5 个月Red Hat fails with credentials required for baltocdn.com
System Administrator
1 年for windows incorect its not a installation wizard, its binary file so, you need download this .exe file and setup path in environment variables. good example: https://phoenixnap.com/kb/install-helm
Certified AWS | DevOps Engineer | SRE | Azure Expert | Cloud Architect | Platform Engineer driving continuous improvement | Transforming chaos into order, one deployment at a time
1 年You did a great job writing this Iniemem Udosen