Skip to content

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 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 to meet various needs.

Helm Charts

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.

Related operations:

Comments