How To Install helm on Fedora 36

In this tutorial we learn how to install helm in Fedora 36. helm is The Kubernetes Package Manager

Introduction

In this tutorial we learn how to install helm on Fedora 36.

What is helm

Helm is a tool for managing Charts. Charts are packages of pre-configured Kubernetes resources. Use Helm to - Find and use popular software packaged as Helm Charts to run in Kubernetes - Share your own applications as Helm Charts - Create reproducible builds of your Kubernetes applications - Intelligently manage your Kubernetes manifest files - Manage releases of Helm packages

We can use yum or dnf to install helm on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install helm.

Install helm on Fedora 36 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install helm using dnf by running the following command:

sudo dnf -y install helm

Install helm on Fedora 36 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install helm using yum by running the following command:

sudo yum -y install helm

How To Uninstall helm on Fedora 36

To uninstall only the helm package we can use the following command:

sudo dnf remove helm

helm Package Contents on Fedora 36

/usr/bin/helm
/usr/lib/.build-id
/usr/lib/.build-id/de
/usr/lib/.build-id/de/d8f17c6a25dff09ffcd723387c139505646f33
/usr/share/doc/helm
/usr/share/doc/helm/ADOPTERS.md
/usr/share/doc/helm/CONTRIBUTING.md
/usr/share/doc/helm/README.md
/usr/share/doc/helm/SECURITY.md
/usr/share/doc/helm/code-of-conduct.md
/usr/share/licenses/helm
/usr/share/licenses/helm/LICENSE

References

Summary

In this tutorial we learn how to install helm on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).