KOP Application Lifecycle Management using Helm CLI - Rafay Product Documentation

Helm

About

Helm is known as "the package manager for Kubernetes". The original goal of Helm was to provide users with a better way to manage all the Kubernetes YAML files we create on Kubernetes projects.

Helm addresses this via Helm Charts. Each chart is a bundle with one or more Kubernetes manifests – a chart can have child charts and dependent charts as well.

Helm installs the whole dependency tree of a project for the top-level chart. With just a single command, the entire application can be deployed instead of listing the files to install via kubectl.


Push to Cluster Pattern

It is a common pattern to deploy application manifests to remote clusters using the Helm CLI. Users typically embed the Helm CLI into their automation platforms such as Jenkins, CircleCI, GitHub Actions etc.


Kubectl and ZTKA

Instead of being forced to use a bastion host or similar inefficient alternatives in order to make direct calls to the remote Kubernetes cluster's API server using the Helm CLI, users can use the "zero trust kubectl" service to perform this across security domains in a secure manner.

The typical steps for this are