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

  1. Confirm key exists in intended scope.
  2. Confirm exact key spelling and case.
  3. Confirm launch selected correct configuration environment.
  4. Confirm blueprint uses ${{ vars.KEY }} or ${{ secrets.KEY }} correctly.
  5. 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.