1.

How do you package Kubernetes applications?

Answer»

Helm is a package manager which allows users to package, configure, and deploy applications and services to the Kubernetes CLUSTER.

helm init  # when you execute this command client is going to create a deployment in the cluster and that deployment will install the TILLER, the server side of Helm

The packages we install through client are called charts. They are bundles of templatized manifests. All the templating work is done by the Tiller

helm SEARCH REDIS # searches for a specific application helm install stable/redis # installs the application helm ls # LIST the applications


Discussion

No Comment Found

Related InterviewSolutions