Helm is a package manager for Kubernetes. It facilitates the deployment and management of the applications and their dependencies in the Kubernetes cluster. It simplifies the process of deploying complex applications by using "Charts" which are bundles of predefined Kubernetes resources. Charts Helm uses a packaging format called charts. A chart is a collection of files that describe a related set of Kubernetes resources. A single chart might be used to deploy something simple, like a memcached pod, or something complex, like a full web app stack with HTTP servers, databases, caches, and so on. Charts are created as files laid out in a particular directory tree. They can be packaged into versioned archives to be deployed. If you want to download and look at the files for a ... Helm uses a single command line interface (CLI) tool called helm to manage the Helm chart, along with a handful of simple commands that allow you to create, manage, and configure your application. helm create