Files

56 lines
1.9 KiB
Markdown

# Workflow Reference: Policy as Code with OPA
## Policy Lifecycle
```
Author Rego Policy
┌──────────────────┐
│ Unit Test with │
│ OPA test │
└──────┬───────────┘
┌──────────────────┐
│ Integration Test │
│ with conftest │
└──────┬───────────┘
┌──────────────────┐
│ Deploy to Cluster│
│ (warn mode) │
└──────┬───────────┘
┌──────────────────┐
│ Monitor + Triage │
│ Violations │
└──────┬───────────┘
┌──────────────────┐
│ Switch to deny │
│ mode │
└──────────────────┘
```
## OPA/Gatekeeper Architecture
```
API Request → Kubernetes API Server → Gatekeeper Webhook
┌──────┴──────┐
│ OPA Engine │
│ (Rego eval) │
└──────┬──────┘
┌──────┴──────┐
│ Constraint │
│ Templates │
└──────┬──────┘
Allow / Deny
```