A city queue worker needs Redis from a public Helm chart already packaged by the community. Which command pattern correctly installs that existing chart as a named release?
Select an answer to reveal the explanation.
Short Explanation
The chart is a ready-made kit; helm install gives the kit a release name and puts it in the cluster. You’re consuming an existing package, not inventing Redis manifests from scratch.
Full Explanation
helm install creates a named release from a chart (local path, chart reference, or repo/chart). That is the standard CKAD-relevant path for deploying an existing package such as Redis for an application dependency. Applying only CRDs, docker pull on nodes, or helm lint alone does not install release resources into the cluster.