1 / 5
What is a Helm 'chart'?
-
-
-
-
A Helm chart bundles templated manifests and defaults so an application can be deployed as one unit.
2 / 5
A 'values.yaml' file is used to do what?
-
-
-
-
values.yaml provides the configuration values Helm injects into the chart templates at install time.
3 / 5
Installing a chart creates a 'release'. What is a release?
-
-
-
-
A release is a specific deployed instance of a chart, tracked by name and revision.
4 / 5
You run 'helm rollback'. What does it do?
-
-
-
-
helm rollback restores a prior revision of a release, undoing a problematic upgrade.
5 / 5
Which sentence correctly uses 'templating'?
-
-
-
-
Templating parameterises manifests so the same chart adapts to dev, staging or prod via different values.