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
21.3 Secrets/Variables Not Applied
Orbnetes deployment and release orchestration documentation for operators and platform teams.
Symptoms
- Runtime shows empty/missing env values.
- Commands fail with auth/config errors.
- Different environment receives wrong value.
Most common causes
- Key exists in wrong scope (global vs project vs environment).
- Typo in key name or reference syntax.
- Environment selected at launch does not match expected scoped values.
- Permission/config update not reflected in current run context.
- Variable used where secret expected (or opposite).
Quick checks
- Confirm key exists in intended scope.
- Confirm exact key spelling and case.
- Confirm launch selected correct configuration environment.
- Confirm blueprint uses
${{ vars.KEY }}or${{ secrets.KEY }}correctly. - Run small debug step printing non-sensitive config markers.
Fix actions
- Move key to correct scope.
- Correct reference syntax and rerun.
- Re-launch with correct environment selection.
- Standardize key naming conventions across team.