ops: restore canary_all and harden monitor summary script invocation

This commit is contained in:
Apple
2026-02-18 06:13:15 -08:00
parent 77ab034744
commit 249b2e1e94
2 changed files with 19 additions and 2 deletions

17
ops/canary_all.sh Executable file
View File

@@ -0,0 +1,17 @@
#!/usr/bin/env bash
set -euo pipefail
ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
run() {
local name="$1"
local script="$2"
echo "[INFO] === ${name} ==="
bash "$script"
echo "[OK] === ${name} ==="
}
run "gateway_delivery_priority" "$ROOT/ops/canary_gateway_delivery_priority.sh"
run "router_contract" "$ROOT/ops/canary_router_contract.sh"
echo "[OK] all canaries passed"