
Explore Helm, the package manager for Kubernetes, and learn to manage Kubernetes applications with charts, releases, and revisions. Practice installing and upgrading releases via the Helm CLI with hands-on exercises.
Helm for absolute beginners shows how Helm acts as a package manager for Kubernetes, using charts to deploy and manage applications via releases. Upgrade and rollback are supported by Helm.
Explore helm components and charts, analyze chart structure and repositories, and learn how releases and revisions provide versioned control for Kubernetes applications through install, upgrade, and rollback workflows.
Learn to search helm charts with the helm CLI, using Artifact Hub and local repo searches. Add repositories with helm repo add and view URLs with list repo URL option.
Search helm charts with the helm CLI using hub and repo commands, view chart details from Artifact Hub or added repos, and add repositories with helm repo add.
Learn how to install helm charts with helm install, create releases, and list them. Explore viewing release status, resources, and manifests, and using dry run and generate name options.
Learn to install helm charts using the helm install command, manage releases, and explore Bitnami nginx and WordPress charts with generate-name and dry-run options.
Learn to customize helm chart installations by overriding parameters with --set, --set-string, --set-file, or YAML/JSON values, view resources, and configure service type and ports.
Learn to customize helm chart installations using helm show values, helm set, set string, and set file, applying changes to WordPress username, blog name, and service ports.
Learn to upgrade a helm release to change configuration, track revisions, view values with helm get values and history with helm history, and rollback a Bitnami WordPress chart.
Practice upgrading and rolling back helm releases, creating releases with helm install, overriding values with --set, viewing values with helm get values, and rolling back via helm rollback.
Explore creating helm charts from scratch using helm create, develop templates and values, and learn to generate unique config maps per release with the release object.
Kubernetes offers a rich set of features that facilitate application deployment, scaling, and operations.
An applications in Kubernetes may have different objects such as deployments, services, persistant volume claims, persistant volumes, secrets, ConfigMaps and more.
Each object needs its own YAML file for its configuration. we can put the configuration for all the Kubernetes objects in a single YAML file, but this is not ideal and not recommended.
Although these objects are part of a single application, Kubernetes doesn't consider them as a group of objects parts of the same application, and manages each object independently from the others.
For example when deploying this application into a Kubernetes cluster, we create the objects one after the other, by executing the kubectl create command followed by the name of the manifest file for each object
The same when updating or deleting the application, the Kubernetes objects parts of this application are treated separately, and this makes the process of deploying and maintaining applications in Kubernetes a boring and tedious task.
Helm solves these problems and reduces this complexity, through the concept of Helm charts.
In this course, we will learn how does Helm make the process of deploying applications in Kubernetes much easier. We will practice also working with Helm and the Helm CLI to manage applications in Kubernetes.
Requirements for this Course:
Basic knowledge of Kubernetes
Who this course is for:
Developers
DevOps engineers
Anyone interested to learn how to manage applications in Kubernetes using the Helm package manager.
What you’ll learn
What is Helm?
Why do we need Helm?
What are Helm charts, Helm revisions and Helm releases?
Searching for Helm charts in the Artifuct Hub
Searching for Helm charts in the repositories added to our local Helm client
Installing Helm charts
Customizing Helm chart installation