Skip to main content
🎓 Claude Code Masterclass Learn AI-assisted development on Udemy — plus the companion book on Leanpub & Amazon. Start Learning
Install Helm on RHEL 9
DevOps

Install Helm on RHEL 9: Complete Guide (2026)

Install Helm on RHEL 9 in 2026. Official repository setup, package installation, post-install configuration, and troubleshooting.

LB
Luca Berton
· 2 min read

Here is how to install Helm on RHEL 9. Tested and verified.

Prerequisites

  • RHEL 9 installed and updated
  • Root or sudo access
  • Internet connection
  • curl installed (preinstalled by default; if missing, run sudo dnf install -y curl)

Step 1: Update System

sudo dnf update -y

Step 2: Download the Install Script

Helm does not maintain an official DNF/YUM repository for RHEL-family distributions — only Fedora’s own package repositories carry a first-party helm package. On RHEL 9, the officially recommended path is the installer script published by the Helm project:

curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-4
chmod 700 get_helm.sh

Step 3: Install Helm

./get_helm.sh

The script detects your OS and architecture, downloads the matching Helm release, verifies its checksum, and copies the helm binary to /usr/local/bin.

Step 4: Verify Installation

helm version

Expected output shows the installed version, e.g. version.BuildInfo{Version:"v4.x.x", ...}.

Step 5: Set Up Shell Completion

Helm is a CLI binary, not a background service — there is no daemon to enable or start. The genuinely useful post-install step is turning on shell completion:

sudo dnf install -y bash-completion   # if not already installed
helm completion bash | sudo tee /etc/bash_completion.d/helm > /dev/null
source /etc/bash_completion.d/helm

Troubleshooting

helm: command not found

The install script places the binary in /usr/local/bin. Confirm it’s there and on your PATH:

which helm
echo $PATH
ls -l /usr/local/bin/helm

Open a new shell session if /usr/local/bin was only just added to your PATH.

Script Fails to Download (TLS/curl Errors)

If curl fails with a certificate or TLS error, update your CA certificates and retry:

sudo dnf install -y ca-certificates
curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-4

Corporate proxies and an incorrect system clock are the most common causes of TLS failures when fetching the script from GitHub.

Checksum Verification Failed

If you downloaded a release archive manually instead of using the script and its sha256sum doesn’t match the checksum published on the GitHub releases page, the download was corrupted or tampered with in transit — delete it and download it again.

Uninstall

sudo rm -f /usr/local/bin/helm

To also remove Helm’s cache, config, and data directories:

rm -rf ~/.cache/helm ~/.config/helm ~/.local/share/helm

About the Author

I am Luca Berton, AI and Cloud Advisor. Book a consultation to get help with your infrastructure setup.

#Helm #RHEL 9 #Installation #Linux #DevOps
Share:
Kubernetes & Containerization

Need help with Kubernetes & Containerization?

Master Kubernetes and container orchestration with hands-on workshops and architecture consulting.

Learn more about Kubernetes & Containerization

Want to operate this yourself, in production?

Take the free AI Platform Engineer Readiness Scorecard to see which skills transfer — then build a production-shaped AI platform in the 4-week Bootcamp.

Take the Scorecard →
Luca Berton — The Production AI Expert, Docker Captain

Luca Berton

The Production AI Expert · Docker Captain · KubeCon Speaker

15+ years in enterprise infrastructure. Author of 8 technical books, creator of Ansible Pilot (1M+ YouTube views, 648K site users). Former Red Hat engineer. Speaker at KubeCon EU 2026 and Red Hat Summit 2026.

Free 30-min Production AI consultation

Book Now