A city permits API needs non-sensitive feature flags injected as environment variables. Which object is the appropriate store for that configuration?
Select an answer to reveal the explanation.
Short Explanation
Feature flags that are not secrets are like the open bulletin board in city hall—ConfigMaps are that board for apps. Stick passwords elsewhere; put public-ish settings in the ConfigMap.
Full Explanation
ConfigMaps store non-confidential configuration data that Pods consume via environment variables or mounted volumes. PVCs provide storage claims, PriorityClass affects scheduling priority, and NetworkPolicies control traffic—they are not general-purpose non-secret app config stores.