A developer runs helm install for a parks recreation API and forgets to set a namespace flag, so the release lands in the wrong place. Which practice prevents that mistake?
Select an answer to reveal the explanation.
Short Explanation
Namespace flags are like putting the right address on a delivery label. Without -n/--namespace, Helm may drop the release somewhere you did not mean—often default—and your app team looks for it in the wrong building.
Full Explanation
Helm’s --namespace (-n) scopes both the release record and rendered namespaced resources to the chosen namespace. Depending only on kubeconfig context is error-prone across shared clusters. Installing into kube-system or changing the storage driver does not fix targeting for application releases.