A pilot Redis Helm release is no longer needed. Which command cleanly removes the release’s owned resources?
Select an answer to reveal the explanation.
Short Explanation
When the pilot kiosk closes, take down that kiosk’s kit—not the whole mall. helm uninstall removes the named release and the resources it owns.
Full Explanation
helm uninstall deletes the release and the Kubernetes resources associated with it. That is preferable to ad-hoc deletion of unrelated cluster components. helm template only renders manifests; it does not delete live objects by default. Deleting kube-system or pruning Docker on a node is destructive and unrelated to release teardown.