Choose the best description of what a Helm chart does in Kubernetes.
Think about what helps you install and manage apps easily on Kubernetes.
A Helm chart bundles Kubernetes manifests and settings so you can deploy apps repeatedly with different configurations.
After installing several Helm charts, you run helm list. What information does it show?
Think about what Helm tracks after you deploy apps.
The helm list command shows all Helm releases installed in the cluster, including their names, namespaces, and current status.
In a Helm chart directory, which file is used to set default values that users can override during installation?
This file holds settings like image tags and replica counts.
The values.yaml file contains default configuration values for the chart. Users can override these when installing or upgrading.
If a Helm chart template tries to use a value not defined in values.yaml or overrides, what happens when you run helm install?
Think about what happens if a required setting is not provided.
Helm templates require all referenced values to be defined. Missing keys cause rendering errors and stop installation.
Arrange these Helm commands in the order you would use to update an existing release with changed values.
Think about checking the repo first, then updating it, then upgrading the release, and finally verifying.
First, search the repo to find the chart. Then update the repo to get latest charts. Next, upgrade the release with new values. Finally, list releases to verify.