fix(platformctl): land Phase 3 apply stack on main #215

Merged
pdurlej merged 7 commits from codex/rescue/phase3-apply-main-landing into main 2026-05-12 01:51:38 +02:00
Collaborator

Canary status: missing — fire canary 3+3 manually before merge

P0 RESCUE — Operator Merge Checklist

  1. Merge only this PR: P0 RESCUE — land Phase 3 apply stack on main.
  2. Do not touch #163–#167 again, even though Forgejo shows them as merged.
  3. After merge, ask Codex for this verification:
    git fetch origin
    git merge-base --is-ancestor c964686 origin/main
    git show origin/main:control-plane/platformctl/health.py >/dev/null
    git show origin/main:control-plane/forgejo-actions/apply.yaml | rg 'Verify plan artifact integrity|AUDIT_LOG_'
    
  4. Move to P1 recovery batches only after that verification is green.

What this PR does

Rescues the Phase 3 apply stack onto main. PRs #163–#167 are marked merged in Forgejo, but they were merged into stacked branch bases rather than landing their final changes on main. This branch was rebuilt from fresh origin/main and cherry-picked only the missing apply/plan/workflow commits.

Canary Context Pack

Product story

RS2000 migration close-out depends on platformctl apply actually existing on main, not only appearing merged in Forgejo history. This PR makes the repo state match the operator-visible merge state without asking Piotr to reason about stacked PR internals.

What changed

  • Lands plan source/provenance hardening from #163.
  • Lands approved no-op apply behavior and freshness checks from #164.
  • Lands compose apply execution from #165.
  • Lands apply status artifacts from #166.
  • Lands apply workflow evidence/integrity hardening from #167.

Why it changed

The stacked PR chain was merged into intermediate branch bases. main currently has #161 and #162 but not the final #163–#167 apply stack.

Files touched

  • control-plane/platformctl/plan.py
  • control-plane/platformctl/apply.py
  • control-plane/forgejo-actions/apply.yaml
  • targeted platformctl tests

Relevant context

  • #161 health rollup is already on main and must remain there.
  • #162 approval binding is already on main.
  • #163–#167 are Forgejo-merged but not fully landed on main.

Runtime evidence

No production mutation. This is repo/control-plane code only.

Known constraints

Do not merge origin/codex/issues/142-apply-workflow-wiring directly into main; that diff would delete the health rollup files from #161.

Explicit out-of-scope

  • No RS2000 SSH commands.
  • No production apply.
  • No P1 recovery runbook batches in this PR.
  • No image prune prompt.

Requested decision

Full/security-sensitive review: approve this PR as the single safe landing point for the missing Phase 3 apply stack.

Merge blockers

  • Any deletion of control-plane/platformctl/health.py or control-plane/platformctl/tests/test_health_phase3.py.
  • Any canary finding that the apply workflow can mutate without merged PR approval.
  • Any evidence that origin/main already contains c964686 before merge, making this PR redundant.

Spec sources read

  • prompts/codex-recovery-batch-2026-05-11.md — P1 sequencing after P0.
  • runbooks/recovery-section-template.md — P1 constraints, not edited here.
  • Live Forgejo API for PRs #161–#167 — verified merged/base/head state.
  • control-plane/forgejo-actions/apply.yaml on origin/main — verified missing plan integrity/per-run audit state before rescue.

Implementation notes

Cherry-picked onto fresh origin/main in this order:

4cf379e fix(platformctl): bind apply plans to source sha
a959b97 fix(platformctl): harden plan provenance binding
8cd6663 fix(platformctl): allow approved no-op apply
70f1c19 fix(platformctl): harden no-op apply plans
d404d5a feat(platformctl): execute approved compose apply
01f7606 feat(platformctl): persist apply status artifacts
c964686 fix(platformctl): wire apply workflow evidence

Test plan

PYTHONPATH=control-plane pytest \
  control-plane/platformctl/tests/test_plan_phase3.py \
  control-plane/platformctl/tests/test_apply_phase3.py \
  control-plane/platformctl/tests/test_forgejo_ci_scripts_contract.py \
  control-plane/platformctl/tests/test_health_phase3.py \
  control-plane/platformctl/tests/test_smoke.py \
  -q
# 88 passed

Anti-footgun checks passed:

git diff --name-status origin/main..HEAD | rg '^D\s+control-plane/platformctl/health.py' && exit 1 || true
git diff --name-status origin/main..HEAD | rg '^D\s+control-plane/platformctl/tests/test_health_phase3.py' && exit 1 || true
git show HEAD:control-plane/platformctl/health.py >/dev/null
git show HEAD:control-plane/platformctl/tests/test_health_phase3.py >/dev/null
git show HEAD:control-plane/forgejo-actions/apply.yaml | rg 'Verify plan artifact integrity|AUDIT_LOG_|exit_code='
Canary status: missing — fire canary 3+3 manually before merge ## P0 RESCUE — Operator Merge Checklist 1. Merge only this PR: **P0 RESCUE — land Phase 3 apply stack on main**. 2. Do not touch #163–#167 again, even though Forgejo shows them as merged. 3. After merge, ask Codex for this verification: ```bash git fetch origin git merge-base --is-ancestor c964686 origin/main git show origin/main:control-plane/platformctl/health.py >/dev/null git show origin/main:control-plane/forgejo-actions/apply.yaml | rg 'Verify plan artifact integrity|AUDIT_LOG_' ``` 4. Move to P1 recovery batches only after that verification is green. ## What this PR does Rescues the Phase 3 apply stack onto `main`. PRs #163–#167 are marked merged in Forgejo, but they were merged into stacked branch bases rather than landing their final changes on `main`. This branch was rebuilt from fresh `origin/main` and cherry-picked only the missing apply/plan/workflow commits. ## Canary Context Pack ### Product story RS2000 migration close-out depends on `platformctl apply` actually existing on `main`, not only appearing merged in Forgejo history. This PR makes the repo state match the operator-visible merge state without asking Piotr to reason about stacked PR internals. ### What changed - Lands plan source/provenance hardening from #163. - Lands approved no-op apply behavior and freshness checks from #164. - Lands compose apply execution from #165. - Lands apply status artifacts from #166. - Lands apply workflow evidence/integrity hardening from #167. ### Why it changed The stacked PR chain was merged into intermediate branch bases. `main` currently has #161 and #162 but not the final #163–#167 apply stack. ### Files touched - `control-plane/platformctl/plan.py` - `control-plane/platformctl/apply.py` - `control-plane/forgejo-actions/apply.yaml` - targeted platformctl tests ### Relevant context - #161 health rollup is already on `main` and must remain there. - #162 approval binding is already on `main`. - #163–#167 are Forgejo-merged but not fully landed on `main`. ### Runtime evidence No production mutation. This is repo/control-plane code only. ### Known constraints Do not merge `origin/codex/issues/142-apply-workflow-wiring` directly into `main`; that diff would delete the health rollup files from #161. ### Explicit out-of-scope - No RS2000 SSH commands. - No production apply. - No P1 recovery runbook batches in this PR. - No image prune prompt. ### Requested decision Full/security-sensitive review: approve this PR as the single safe landing point for the missing Phase 3 apply stack. ### Merge blockers - Any deletion of `control-plane/platformctl/health.py` or `control-plane/platformctl/tests/test_health_phase3.py`. - Any canary finding that the apply workflow can mutate without merged PR approval. - Any evidence that `origin/main` already contains `c964686` before merge, making this PR redundant. ## Spec sources read - `prompts/codex-recovery-batch-2026-05-11.md` — P1 sequencing after P0. - `runbooks/recovery-section-template.md` — P1 constraints, not edited here. - Live Forgejo API for PRs #161–#167 — verified merged/base/head state. - `control-plane/forgejo-actions/apply.yaml` on `origin/main` — verified missing plan integrity/per-run audit state before rescue. ## Implementation notes Cherry-picked onto fresh `origin/main` in this order: ```text 4cf379e fix(platformctl): bind apply plans to source sha a959b97 fix(platformctl): harden plan provenance binding 8cd6663 fix(platformctl): allow approved no-op apply 70f1c19 fix(platformctl): harden no-op apply plans d404d5a feat(platformctl): execute approved compose apply 01f7606 feat(platformctl): persist apply status artifacts c964686 fix(platformctl): wire apply workflow evidence ``` ## Test plan ```bash PYTHONPATH=control-plane pytest \ control-plane/platformctl/tests/test_plan_phase3.py \ control-plane/platformctl/tests/test_apply_phase3.py \ control-plane/platformctl/tests/test_forgejo_ci_scripts_contract.py \ control-plane/platformctl/tests/test_health_phase3.py \ control-plane/platformctl/tests/test_smoke.py \ -q # 88 passed ``` Anti-footgun checks passed: ```bash git diff --name-status origin/main..HEAD | rg '^D\s+control-plane/platformctl/health.py' && exit 1 || true git diff --name-status origin/main..HEAD | rg '^D\s+control-plane/platformctl/tests/test_health_phase3.py' && exit 1 || true git show HEAD:control-plane/platformctl/health.py >/dev/null git show HEAD:control-plane/platformctl/tests/test_health_phase3.py >/dev/null git show HEAD:control-plane/forgejo-actions/apply.yaml | rg 'Verify plan artifact integrity|AUDIT_LOG_|exit_code=' ```
fix(platformctl): wire apply workflow evidence
All checks were successful
canary-required / collect-diff (pull_request) Successful in 4s
pyfallow / Pyfallow gate (control-plane) (pull_request) Successful in 16s
python-ci / Python 3.11 (pull_request) Successful in 44s
python-ci / Python 3.12 (pull_request) Successful in 45s
python-ci / Python 3.13 (pull_request) Successful in 44s
canary-required / canary (pull_request) Successful in 12s
f32fcb3847
Collaborator

Role: advisor (claude / Pan Herbatka, orchestrator lane)

Cross-reference for context only — does NOT request changes to this PR.

ADR-0017 (PR #220) ships the stack-guard layers that would have caught the 2026-05-11/12 silent-stack-merge trap. Layer 1 mechanical block requires Forgejo branch protection toggle, which is tracked as issue #243 with explicit precondition: this PR (#215) must merge AND first platformctl apply cutover must complete + 24h smoke pass before operator enables protection.

Means: nothing in this PR's path is blocked or affected by ADR-0017. Cutover proceeds as planned. Branch protection activation comes AFTER cutover stabilizes.

Pan Herbatka spi już za 5 min — let me know via PR #220 if anything looks off. 🍵

**Role:** advisor (claude / Pan Herbatka, orchestrator lane) Cross-reference for context only — does NOT request changes to this PR. ADR-0017 (PR #220) ships the stack-guard layers that would have caught the 2026-05-11/12 silent-stack-merge trap. Layer 1 mechanical block requires Forgejo branch protection toggle, which is tracked as **issue #243** with explicit precondition: **this PR (#215) must merge AND first `platformctl apply` cutover must complete + 24h smoke pass** before operator enables protection. Means: nothing in this PR's path is blocked or affected by ADR-0017. Cutover proceeds as planned. Branch protection activation comes AFTER cutover stabilizes. Pan Herbatka spi już za 5 min — let me know via PR #220 if anything looks off. 🍵
Sign in to join this conversation.
No reviewers
No labels
W6d-automerge-calibration
agent/claude-code
agent/codex
agent/hermes
agent/iskra
agent/ollama
agent/patchwarden
automerge-candidate
class/security-sensitive
cutover-gate
dependency/blocked
dependency/blocks-others
dependency/cross-repo
dependency/needs-confirmation
domain:agents
domain:ci
domain:docs
domain:forgejo
domain:infra
domain:memory
domain:runtime
domain:signal
domain:ux
flow/architecture
flow/blocked
flow/deployed
flow/done
flow/implementation
flow/intake
flow/maintained
flow/observed
flow/ready
flow/refining
flow/retired
flow/review
iterating
judge/codex-candidate
judge/hermes-candidate
judge/low-confidence
judge/needs-refinement
judge/operator-needed
judge/p0
judge/p1
judge/p2
judge/p3
judge/park
judge/patchwarden-candidate
judge/stale-priority
kind/adr
kind/bug
kind/chore
kind/feature
kind/infra
kind/ops
kind/refactor
kind/research
large-impact
merge/auto
merge/manual
merge/manual-dependency-conflict
merge/manual-failing-tests
merge/manual-merge-conflict
merge/manual-missing-review
merge/manual-operator-preference
merge/manual-red-zone
merge/manual-security-sensitive
merge/manual-unclear-scope
merge/manual-unknown
meta
mode:operator-only
mode:patchwarden-iskra-approved
mode:safe-auto
needs-operator-decision
needs-triage
not-ready
observed/erroring
observed/needs-followup
observed/pending
observed/retire-candidate
observed/unused
observed/used
operator-emotional
owner-attention
phase/02
phase/03
priority:p0
priority:p1
priority:p2
priority:p3
proposed
ready-for-agent
ready-for-operator
recovery
review:claude-reviewed
review:codex-reviewed
review:dziadek-reviewed
review:needs-human
risk/exposure
risk/process
risk/product
risk/runtime
safety:external-write
safety:no-prod-mutation
safety:prod-impact
safety:secret-touch
size/large
size/medium
size/small
size/tiny
size/unknown
source/adr
source/agent-generated
source/manual
source/operator-chat
source/voice-note
status:blocked
status:codex-ready
status:merged:pending-evidence
status:needs-evidence
status:operator-needed
status:parked
tier/full
tier/lite
tier/stacked
tier:0-platform-substrate
tier:1-iskra-value-layer
tier:2-tools-products-modules
type:bug
type:chore
type:docs
type:feat
type:policy
type:research
No milestone
No project
No assignees
2 participants
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
pdurlej/platform!215
No description provided.