Before installing a third-party chart into a production municipal namespace, a developer wants to inspect the rendered manifests without creating a release. Which command supports that review?
Select an answer to reveal the explanation.
Short Explanation
Read the assembly instructions before building the furniture. helm template renders the manifests with your values so you can review them without installing a release.
Full Explanation
helm template renders chart templates against values and prints Kubernetes manifests without installing a release—useful for review, policy checks, and debugging. It is the standard dry review path. uninstall/rollback dry-runs and exec into the API server are not the appropriate ways to preview an uninstalled chart’s output.