Terminology Index
Glossary
1801 terms
Showing 641-672 of 1801 terms
External Secrets
A pattern for managing secrets in cloud-native systems where applications fetch credentials from an external secrets manager at runtime, rather than storing them in the cluster, keeping sensitive values out of manifests and source control.
Storing secrets directly in Kubernetes manifests or config is risky, so the external-secrets pattern keeps the source of truth in a dedicated secrets manager (like a cloud KMS or vault) and syncs or fetches them into workloads at runtime through a controller. This keeps plaintext secrets out of Git and manifests, centralizes rotation and access control, and addresses the secrets management cross-cutting concern in cloud-native architectures.
Introduced in: Cloud-Native Security
Examples
- An app fetching a database credential from a cloud secrets manager at runtime.
- Syncing secrets from an external vault into the cluster via a controller.
- Keeping plaintext secrets out of Git by referencing an external store.
No related terms linked yet.
