We can verify the version
helm version --short
Let’s configure our first Chart repository. Chart repositories are similar to APT or yum repositories that you might be familiar with on Linux, or Taps for Homebrew on macOS.
Download the stable
repository so we have something to start with:
helm repo add stable https://charts.helm.sh/stable
Once this is installed, we will be able to list the charts you can install:
helm search repo stable
Finally, let’s configure Bash completion for the helm
command:
helm completion bash >> ~/.bash_completion
. /etc/profile.d/bash_completion.sh
. ~/.bash_completion
source <(helm completion bash)