On the city’s Kubernetes cluster, a Catalyst Center sync pod needs an API token. Which store is appropriate for that credential?
Select an answer to reveal the explanation.
Short Explanation
ConfigMaps are bulletin boards; Secrets are the locked drawer. API tokens belong in a Secret (or external operator), not in ConfigMaps or git manifests.
Full Explanation
In cluster scenarios, credentials belong in a Kubernetes Secret or an external secret operator integration. ConfigMaps and checked-in manifests are the wrong store for tokens even when they are convenient. Full manifest authorship is unnecessary to identify the correct object type.