fix(cd): keep cold-start recovery checks on controlled profile
All checks were successful
CD Pipeline / workflow-shape (push) Successful in 0s
CD Pipeline / cancel-stale-cd (push) Has been skipped
CD Pipeline / tests (push) Successful in 32s
CD Pipeline / build-and-deploy (push) Successful in 4m12s
CD Pipeline / post-deploy-checks (push) Successful in 1m47s

This commit is contained in:
ogt
2026-07-01 18:49:21 +08:00
parent 81ff04d019
commit db145708a7
2 changed files with 9 additions and 0 deletions

View File

@@ -217,6 +217,8 @@ jobs:
;; ;;
.gitea/workflows/e2e-health.yaml) .gitea/workflows/e2e-health.yaml)
;; ;;
.gitea/workflows/ansible-lint.yml)
;;
.gitea/workflows/harbor-110-local-repair.yaml) .gitea/workflows/harbor-110-local-repair.yaml)
;; ;;
.gitea/workflows/run-migration.yml) .gitea/workflows/run-migration.yml)
@@ -254,6 +256,8 @@ jobs:
;; ;;
docs/runbooks/REBOOT-POST-START-QUICK-CHECK.md) docs/runbooks/REBOOT-POST-START-QUICK-CHECK.md)
;; ;;
docs/runbooks/FULL-STACK-COLD-START-SOP.md)
;;
docs/workplans/2026-06-04-reboot-cold-start-backup-recovery-workplan.md) docs/workplans/2026-06-04-reboot-cold-start-backup-recovery-workplan.md)
;; ;;
docs/schemas/product_awoooi_manifest_v1.schema.json) docs/schemas/product_awoooi_manifest_v1.schema.json)
@@ -550,6 +554,8 @@ jobs:
;; ;;
scripts/reboot-recovery/post-start-quick-check.sh) scripts/reboot-recovery/post-start-quick-check.sh)
;; ;;
scripts/reboot-recovery/reboot-recovery-readiness-audit.sh)
;;
scripts/reboot-recovery/188-host-hygiene-maintenance-checklist.sh) scripts/reboot-recovery/188-host-hygiene-maintenance-checklist.sh)
;; ;;
scripts/reboot-recovery/full-stack-cold-start-check.sh) scripts/reboot-recovery/full-stack-cold-start-check.sh)

View File

@@ -91,6 +91,7 @@ def test_workflow_secret_transport_sources_stay_on_controlled_runtime_profile()
".gitea/workflows/code-review.yaml)", ".gitea/workflows/code-review.yaml)",
".gitea/workflows/deploy-alerts.yaml)", ".gitea/workflows/deploy-alerts.yaml)",
".gitea/workflows/e2e-health.yaml)", ".gitea/workflows/e2e-health.yaml)",
".gitea/workflows/ansible-lint.yml)",
".gitea/workflows/harbor-110-local-repair.yaml)", ".gitea/workflows/harbor-110-local-repair.yaml)",
".gitea/workflows/run-migration.yml)", ".gitea/workflows/run-migration.yml)",
"scripts/ci/check-gitea-step-env-secrets.js)", "scripts/ci/check-gitea-step-env-secrets.js)",
@@ -659,6 +660,7 @@ def test_post_start_recovery_verifiers_stay_on_controlled_runtime_profile() -> N
text = _workflow_text() text = _workflow_text()
expected_sources = [ expected_sources = [
"docs/runbooks/REBOOT-POST-START-QUICK-CHECK.md)", "docs/runbooks/REBOOT-POST-START-QUICK-CHECK.md)",
"docs/runbooks/FULL-STACK-COLD-START-SOP.md)",
"docs/workplans/2026-06-04-reboot-cold-start-backup-recovery-workplan.md)", "docs/workplans/2026-06-04-reboot-cold-start-backup-recovery-workplan.md)",
"ops/monitoring/alerts-unified.yml)", "ops/monitoring/alerts-unified.yml)",
"ops/runner/awoooi-cd-lane-drain.service)", "ops/runner/awoooi-cd-lane-drain.service)",
@@ -669,6 +671,7 @@ def test_post_start_recovery_verifiers_stay_on_controlled_runtime_profile() -> N
"scripts/reboot-recovery/deploy-to-110.sh)", "scripts/reboot-recovery/deploy-to-110.sh)",
"scripts/reboot-recovery/recover-110-control-path-and-harbor-local.sh)", "scripts/reboot-recovery/recover-110-control-path-and-harbor-local.sh)",
"scripts/reboot-recovery/post-start-quick-check.sh)", "scripts/reboot-recovery/post-start-quick-check.sh)",
"scripts/reboot-recovery/reboot-recovery-readiness-audit.sh)",
"scripts/reboot-recovery/188-host-hygiene-maintenance-checklist.sh)", "scripts/reboot-recovery/188-host-hygiene-maintenance-checklist.sh)",
"scripts/reboot-recovery/full-stack-cold-start-check.sh)", "scripts/reboot-recovery/full-stack-cold-start-check.sh)",
"scripts/reboot-recovery/full-stack-recovery-scorecard.sh)", "scripts/reboot-recovery/full-stack-recovery-scorecard.sh)",