Terminology Index
Glossary
2953 terms
Deployment Authorization
Controlling what is allowed to be deployed into a cloud-native environment, ensuring only approved, signed, and policy-compliant workloads run, typically enforced at deploy time through admission control and signature verification.
Deployment authorization is the gate that decides whether a workload may run: it verifies the image is signed by a trusted source, came through the approved pipeline, and meets policy (no privileged containers, no critical vulnerabilities). Enforced by admission controllers and tied to GitOps and image signing, it prevents unauthorized or tampered workloads from ever starting, making it a key supply-chain and runtime defense in cloud-native systems.
Introduced in: Cloud-Native Security
Examples
- Rejecting an unsigned image at deploy time via admission control.
- Allowing only workloads that came through the approved GitOps pipeline.
- Blocking a deployment that violates pod security policy.
Related
