3.1 Control Plane vs Agent Execution Plane
3.2 Project Scope Model
3.3 Data Flow: Source -> Release -> Pipeline -> Logs/Artifacts
3.4 Runtime Configuration Layers (global / project / environment)
3.5 Pipeline Execution Semantics
3.6 Release Governance Path
3.7 Rollback Architecture (Policy-driven)
3.8 Security and Trust Boundaries
3.9 State and Persistence Model
3.10 Scalability Model
3.11 Failure Modes and Recovery Patterns
3.12 Why This Architecture Works in Practice
4.4 Queue and Live Operations
Orbnetes deployment and release orchestration documentation for operators and platform teams.
This area reflects current workload lifecycle: queued jobs, running jobs, and live execution transitions.
What this block is for:
- Understand delivery throughput and backlog in real time.
- Distinguish waiting for capacity vs actively running.
- Decide whether to scale agents, rerun, cancel, or wait.
Common states to monitor:
- queued (waiting for matching available agent),
- running (actively executing),
- pending approval (governance gate),
- blocked by dependency (
needs), - terminal states (succeeded/failed/canceled).
How to act from this block:
- If queue grows with idle agents: check tag mismatch/project access.
- If queue grows with busy agents: add capacity or reduce concurrency pressure.
- If running is stuck long: open live job log and inspect current step heartbeat/output.
Operational best practice:
- Track queue depth trend, not only current number.
- Recurring queue spikes usually indicate architecture/tag design issue, not one-off job failure.