A municipal SRE needs an operational inventory of which Helm-managed cluster components are installed and their status. Which Helm commands provide that release inventory?
Select an answer to reveal the explanation.
Short Explanation
helm list is the city garage’s clipboard of installed vehicles; helm status is the deeper inspection sheet for one car. Together they tell you which Helm releases exist and how a given release looks. Node metrics, kubeadm tokens, and crictl alone are not Helm inventories.
Full Explanation
helm list (or helm ls) shows releases in a namespace or across namespaces with flags. helm status reports revision, resources, and notes for a specific release. These are the primary operational tools for inventorying Helm-installed cluster components, unlike node metrics or container-runtime listing tools.