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
20.2 Multi-Environment Rollout
Orbnetes deployment and release orchestration documentation for operators and platform teams.
Objective
Deploy same version across multiple environments in controlled order or parallel mode.
Prerequisites
- environment list configured in project,
- env-scoped secrets/variables defined,
- rollout strategy agreed (parallel or sequential).
Steps
- Create release with blueprint + source/tag/file.
- Select multiple configuration environments.
- Choose deployment mode:
parallelfor speed,sequentialfor controlled promotion.
- Fill launch inputs once (or environment-resolved values if applicable).
- Launch release.
- Monitor deployment progression per environment.
- Validate each environment outcome in release detail/deployments tab.
Success Criteria
- each selected environment has terminal successful deployment,
- no unintended config cross-over between environments,
- final state aligns with rollout plan.
Common Pitfalls
- selecting environments without corresponding scoped config,
- using parallel mode for high-risk production rollout without readiness checks,
- not verifying per-environment outcomes before declaring complete.