Add a Helm Repository
Learn how to add a Helm repository.
We'll cover the following...
Right now we’ve got an empty cluster with some default namespaces and a few small Kubernetes objects (ConfigMap, Secret, and so on). This and the following lessons aim to add more objects like Deployment, Services, Secrets, and others. And everything will be done with a single command. So let’s get started!
All information about the installed Helm chart can be found on the official website.
Before running any Helm command, make sure that a cluster is available by checking it with the kubectl
command, as follows:
Press + to interact
kubectl get namespace
The output will be as follows:
NAME STATUS AGE
default Active 26m
kube-node-lease Active 26m
kube-public Active 26m
kube-system Active 26m
local-path-storage Active 26m
If we’re not ...