From f4ae44aacc336871b2f24ee17d48a41f0c0fd892 Mon Sep 17 00:00:00 2001 From: Joseph Doherty Date: Sun, 31 May 2026 03:15:09 -0400 Subject: [PATCH] fix(docker-env2): instance deploy uses --id (not --instance-id) in native alarm seed --- docker-env2/seed-sites.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-env2/seed-sites.sh b/docker-env2/seed-sites.sh index dbb97831..4c408fbb 100755 --- a/docker-env2/seed-sites.sh +++ b/docker-env2/seed-sites.sh @@ -136,7 +136,7 @@ echo "Deploying the MxAlarm demo instance to site-x..." INSTANCE_ID=$($CLI $URL $AUTH --format json instance list \ | python3 -c "import sys,json; print(next((i['id'] for i in json.load(sys.stdin) if i.get('uniqueName')=='MxAlarmDemo-1'), ''))" 2>/dev/null) if [ -n "$INSTANCE_ID" ]; then - $CLI $URL $AUTH instance deploy --instance-id "$INSTANCE_ID" \ + $CLI $URL $AUTH instance deploy --id "$INSTANCE_ID" \ || echo " (instance deploy reported an issue — check 'deploy status')" else echo " (MxAlarmDemo-1 not found — skipping instance deploy)"