Hello folks,
for those who are working.
would you advise to learn k8s with kubectl or with Helm?
Thanks
Hello folks,
for those who are working.
would you advise to learn k8s with kubectl or with Helm?
Thanks
You can’t learn k8s without kubectl
it’s the command line tool to manage resources. Helm
is a package manager. He’ll help you manage software built on kubernetes.
For example, if you need to install WordPress or Drupal, you can use helm to install all the necessary resources, but if you want to manage your cluster you need kubectl
Regard