...
The Helm project provides two ways to fetch and install Helm: from the binary releases (in this case you can choose a specific version) or from script. These are the official methods to get Helm releases. In addition to that, the Helm community provides methods to install Helm through different package managers (unfortunately there are no packages for CentOSRockyLinux).
We choose the installation via the script, that will automatically grab the latest version of Helm and install it locally. Let's download the script, change the permissions and launch it
...
Once you have Helm ready, you can add a chart repository. One popular starting location is the official Helm stable
charts
Code Block | ||||
---|---|---|---|---|
| ||||
$ helm repo add stable https://charts.helm.sh/stable # Make sure we get the latest list of charts $ helm repo update # List chart repositories $ helm repo ls NAME URL stable https://charts.helm.sh/stable |
...
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
$ helm uninstall mysql-1612351953 [-n <namespace>] [--keep-history]
release "mysql-1612351953" uninstalled |
...