--- hide: - toc --- # Helm Charts Helm is a package management tool for Kubernetes, which makes it easy for users to quickly discover, share and use applications built with Kubernetes. The fifth generation [Container Management Module](../../intro/index.md) provides hundreds of Helm charts, covering storage, network, monitoring, database and other main cases. With these templates, you can quickly deploy and easily manage Helm applications through the UI interface. In addition, it supports adding more personalized templates through [Add Helm repository](helm-repo.md) to meet various needs. ![Helm Charts](../images/helm14.png) **Key Concepts**: There are a few key concepts to understand when using Helm: - Chart: A Helm installation package, which contains the images, dependencies, and resource definitions required to run an application, and may also contain service definitions in the Kubernetes cluster, similar to the formula in Homebrew, dpkg in APT, or rpm files in Yum. Charts are called __Helm Charts__ in DCE 5.0. - Release: A Chart instance running on the Kubernetes cluster. A Chart can be installed multiple times in the same cluster, and each installation will create a new Release. Release is called __Helm Apps__ in DCE 5.0. - Repository: A repository for publishing and storing Charts. Repository is called __Helm Repositories__ in DCE 5.0. For more details, refer to [Helm official website](https://helm.sh/). **Related operations**: - [Manage Helm applications](helm-app.md), including installing, updating, uninstalling Helm applications, viewing Helm operation records, etc. - [Manage Helm repository](helm-repo.md), including installing, updating, deleting Helm repository, etc.