A water-billing microservice must pull from a private container registry. What application-side configuration enables successful pulls?
Select an answer to reveal the explanation.
Short Explanation
Private registries are locked doors—your Pod needs a keyring. Stick registry credentials in an imagePullSecret and hang that keyring on the Pod or its ServiceAccount so the kubelet can pull without you SSHing to nodes.
Full Explanation
Kubernetes authenticates private registry pulls using imagePullSecrets referenced from the Pod spec or inherited via the Pod's ServiceAccount. That is an application packaging concern for CKAD. Opening etcd, installing CSI drivers, or granting cluster-admin are not the correct app-side mechanism for registry auth.