- All Courses
- Kubernetes for Application Developers
- Operating and Debugging
- Packaging with Helm
Lesson 4.3
Packaging with Helm
Copying manifests per environment guarantees drift.
14mIntermediate5.4k students
Overview
One chart, several environments
Copying manifests per environment guarantees drift. A chart templates the varying parts and takes a values file per environment, so the structure stays in one place.
Helm tracks releases, which gives you an upgrade and rollback story for a whole application rather than object by object.
Templates can become unreadable quickly. Conditionals nested inside loops inside partials produce yaml nobody can predict — keep the logic shallow and render the output to check it.
In this lesson you will:
- Template a manifest across environments
- Manage releases and rollbacks
- Avoid unreadable template logic
Resources
Notes are not saved yet — they clear when you leave this page.
Previous Lesson
A kubectl debugging workflow
49m