Question 29
Domain 1: Application Design and BuildWhich Helm command downloads a chart from a remote repository to your local machine without installing it?
Correct answer: B
Explanation
`helm pull` downloads a chart from a remote repository to your local machine without installing it. Helm uses `pull` for retrieving chart packages, while installation is handled by `helm install`.
Why each option is right or wrong
A. helm repo add
B. helm pull
Helm’s chart-management commands distinguish retrieval from deployment: `helm pull` fetches a packaged chart from a remote repository onto the local filesystem, whereas `helm install` is the command that creates a release in the cluster. In the Helm CLI, `pull` is the documented command for downloading chart archives, and it does not perform any installation or create any Kubernetes resources.
C. helm install
D. helm search repo