Why does Kubernetes store Secret data as Base64 encoded strings rather than encrypting them by default?
ABase64 encoding ensures data is safely transmitted and stored as text without altering content.
BBase64 encoding provides strong encryption to protect Secrets from unauthorized access.
CKubernetes automatically encrypts Secrets at rest, so Base64 is unnecessary for security.
DBase64 encoding compresses the Secret data to reduce storage size.