Transit mounts a TLS key pair into a gateway Pod from cluster-managed confidential data. Which approach matches common CKA practice?
Select an answer to reveal the explanation.
Short Explanation
TLS keys are vault material—Secrets mounted as files hand the gateway the cert and key on disk without baking them into the image. A public ConfigMap is the wrong mailbox for private keys.
Full Explanation
Administrators commonly mount Secrets as volumes so Pods read TLS certificates and keys as files. ConfigMaps are inappropriate for private key material, and neither Service annotations nor PriorityClass names are mechanisms to materialize TLS key pairs for Pods.