A municipal analytics team needs to install a widely packaged Kubernetes dashboard that already ships as a chart. Building a custom Operator just to install it would be overkill. Which approach best fits CKAD application deployment?
Select an answer to reveal the explanation.
Short Explanation
Buying a ready-made city bus schedule is smarter than inventing a whole transit authority for one route. Helm charts package apps that already exist—install and tune values instead of inventing an Operator for a one-shot install.
Full Explanation
Helm is the standard packaging tool for deploying third-party or internal charts with parameterized values. Operators shine when ongoing reconciliation logic is required; they are unnecessary for installing a packaged dashboard that a chart already expresses. Raw one-off YAML or misuse of DaemonSets also fails to leverage chart versioning and upgrades.