Releasing software to Kubernetes using Helm
In this section, you will learn how to install Helm and how to test the installation by deploying an example Helm chart. Helm is provided as binary releases (https://github.com/helm/helm/releases) available for multiple platforms. You can use them or refer to the following guides for installation using a package manager on your desired operating system.
Installing Helm on Linux
To install Helm on Fedora, you need to ensure that the default Fedora repository is configured and working:
$ sudo dnf repolist | grep fedora
fedora Fedora 39 – x86_64
Then install Helm as follows:
$ sudo dnf install helm
Once installed, you can verify the version of the installed Helm package:
$ helm version
version.BuildInfo{Version:"v3.11", GitCommit:"", GitTreeState:"", GoVersion:"go1.21rc3"}
It is also possible to install Helm using...