
Explore helm as a Kubernetes package manager, learn when to use it over kubectl, and build or convert manifests into helm charts from scratch with templates, values, and dry-run validation.
Master parameterizing Helm charts with values.yaml to template manifests, including namespace, kind, and metadata labels, and combine install with upgrade for efficient deployments.
Explore how values.yaml templates kubernetes manifests for generic helm deployments and how to customize messages with release.name and chart.name, using notes.txt to guide end users.
Learn how to create reusable templates in Helm using helpers.tpl, defining a named template for common labels like generator, date, and owner, and apply them across namespaces, deployments, and services.
Deploy an nginx pod via a helm deployment, using values.yaml and template helpers to parameterize the pod and image, and verify everything with a dry-run rendering and port-forward testing.
Define common labels across all Kubernetes resources in a Helm chart, using a helper template, and apply them to secrets and deployments for consistent release, namespace, and chart identification.
Explore Helm hooks to run pre and post deployment tasks for Postgres, such as loading a config map or secret and backing up databases, controlled by annotation and wait option.
Configure an Azure Kubernetes cluster using Azure DevOps for ci cd, selecting resource group, region, node pools, and Azure Active Directory integration, with validation before creation.
Apply a shell command to deploy a Helm chart in a Kubernetes cluster using the Helm CLI in an Azure DevOps pipeline, including Helm list, upgrade --install, and Azure authentication.
Install Griffon via Helm on your Kubernetes cluster to visualize and unify data from Prometheus and multiple sources with a single, shareable dashboard.
Helm helps you manage Kubernetes applications — Helm Charts help you define, install, and upgrade even the most complex Kubernetes application.
Charts are easy to create, version, share, and publish — so start using Helm and stop the copy-and-paste.
Helm is a tool for managing Kubernetes packages called charts. Helm can do the following:
Create new charts from scratch
Package charts into chart archive (tgz) files
Interact with chart repositories where charts are stored
Install and uninstall charts into an existing Kubernetes cluster
Manage the release cycle of charts that have been installed with Helm
As a developer of Infrastructure enthusiast dealing with deployment in Kubernetes cluster then this course is for you, we have condensed down years of learning covering only what's needed to get started with Helm.
This course is for any one who has dealt with Kubernetes deployment into one or more projects and would like to learn the best practises of package management via HELM Deployment.
Adding HELM knowledge in your portfolio will not only increase the number of opportunities you will get but also your knowledge around the best & efficient way to automate kubernetes object deployment like services, pods, deployment, statefulsets.
Be it deployment of your custom API or ELK stack, this course will help you to learn nuts & bolts of HELM and can assure you will be able to apply the learning right from the session1.
What will you learn over the next few hours and How the course is shaped?
HELM Architecture and it's evolution
Why not deploying application via Kubectl Apply -f *yaml
Difference between HELM and Kubectl Deployment
When you should use HELM as a package manager
What is HELM and what it is not
Write HELM Chart from scratch for your custom application
HELM directory structure
Use of:
Values.yaml
Charts.yaml
Template folder
helper template file
NOTES.txt
How to convert your existing kubernetes manifest into HELM chart
Variables existing hard coded manifest value into reusable template
HELM release/versioning/rollback
HELM dry-run to validate templates before deploying into actual environment
Deploy PostgresSQL via HELM
Pull HELM charts from public repo and deploy on a cluster
Test Kubernetes chart - HELM Test