diff --git a/.github/workflows/canary-staging.yml b/.github/workflows/canary-staging.yml index c2a4d7f4..b040b196 100644 --- a/.github/workflows/canary-staging.yml +++ b/.github/workflows/canary-staging.yml @@ -302,7 +302,7 @@ jobs: -X DELETE "$MOLECULE_CP_URL/cp/admin/tenants/$slug" \ -H "Authorization: Bearer $ADMIN_TOKEN" \ -H "Content-Type: application/json" \ - -d "{\"confirm\":\"$slug\"}" >/tmp/canary-cleanup.code 2>/dev/null + -d "{\"confirm\":\"$slug\"}" >/tmp/canary-cleanup.code set -e code=$(cat /tmp/canary-cleanup.code 2>/dev/null || echo "000") if [ "$code" = "200" ] || [ "$code" = "204" ]; then diff --git a/.github/workflows/e2e-staging-canvas.yml b/.github/workflows/e2e-staging-canvas.yml index 1c5b15ff..0bc152df 100644 --- a/.github/workflows/e2e-staging-canvas.yml +++ b/.github/workflows/e2e-staging-canvas.yml @@ -199,7 +199,7 @@ jobs: -X DELETE "$MOLECULE_CP_URL/cp/admin/tenants/$slug" \ -H "Authorization: Bearer $ADMIN_TOKEN" \ -H "Content-Type: application/json" \ - -d "{\"confirm\":\"$slug\"}" >/tmp/canvas-cleanup.code 2>/dev/null + -d "{\"confirm\":\"$slug\"}" >/tmp/canvas-cleanup.code set -e code=$(cat /tmp/canvas-cleanup.code 2>/dev/null || echo "000") if [ "$code" = "200" ] || [ "$code" = "204" ]; then diff --git a/.github/workflows/e2e-staging-external.yml b/.github/workflows/e2e-staging-external.yml index 923423a1..acd9cef2 100644 --- a/.github/workflows/e2e-staging-external.yml +++ b/.github/workflows/e2e-staging-external.yml @@ -166,7 +166,7 @@ jobs: -X DELETE "$MOLECULE_CP_URL/cp/admin/tenants/$slug" \ -H "Authorization: Bearer $ADMIN_TOKEN" \ -H "Content-Type: application/json" \ - -d "{\"confirm\":\"$slug\"}" >/tmp/external-cleanup.code 2>/dev/null + -d "{\"confirm\":\"$slug\"}" >/tmp/external-cleanup.code set -e code=$(cat /tmp/external-cleanup.code 2>/dev/null || echo "000") if [ "$code" = "200" ] || [ "$code" = "204" ]; then diff --git a/.github/workflows/e2e-staging-saas.yml b/.github/workflows/e2e-staging-saas.yml index aab10b96..bab88409 100644 --- a/.github/workflows/e2e-staging-saas.yml +++ b/.github/workflows/e2e-staging-saas.yml @@ -231,7 +231,7 @@ jobs: -X DELETE "$MOLECULE_CP_URL/cp/admin/tenants/$slug" \ -H "Authorization: Bearer $ADMIN_TOKEN" \ -H "Content-Type: application/json" \ - -d "{\"confirm\":\"$slug\"}" >/tmp/saas-cleanup.code 2>/dev/null + -d "{\"confirm\":\"$slug\"}" >/tmp/saas-cleanup.code set -e code=$(cat /tmp/saas-cleanup.code 2>/dev/null || echo "000") if [ "$code" = "200" ] || [ "$code" = "204" ]; then diff --git a/.github/workflows/e2e-staging-sanity.yml b/.github/workflows/e2e-staging-sanity.yml index a89821a7..bedf4ed5 100644 --- a/.github/workflows/e2e-staging-sanity.yml +++ b/.github/workflows/e2e-staging-sanity.yml @@ -155,7 +155,7 @@ jobs: -X DELETE "$MOLECULE_CP_URL/cp/admin/tenants/$slug" \ -H "Authorization: Bearer $ADMIN_TOKEN" \ -H "Content-Type: application/json" \ - -d "{\"confirm\":\"$slug\"}" >/tmp/sanity-cleanup.code 2>/dev/null + -d "{\"confirm\":\"$slug\"}" >/tmp/sanity-cleanup.code set -e code=$(cat /tmp/sanity-cleanup.code 2>/dev/null || echo "000") if [ "$code" = "200" ] || [ "$code" = "204" ]; then diff --git a/.github/workflows/redeploy-tenants-on-main.yml b/.github/workflows/redeploy-tenants-on-main.yml index 7d68a6d9..f862c487 100644 --- a/.github/workflows/redeploy-tenants-on-main.yml +++ b/.github/workflows/redeploy-tenants-on-main.yml @@ -200,8 +200,11 @@ jobs: -H "Authorization: Bearer $CP_ADMIN_API_TOKEN" \ -H "Content-Type: application/json" \ -X POST "$CP_URL/cp/admin/tenants/redeploy-fleet" \ - -d "$BODY" >"$HTTP_CODE_FILE" 2>/dev/null + -d "$BODY" >"$HTTP_CODE_FILE" set -e + # Stderr from curl (e.g. dial errors with -sS) goes to the runner + # log so operators can see WHY a connection failed. Stdout is + # captured to $HTTP_CODE_FILE because that's where -w writes. HTTP_CODE=$(cat "$HTTP_CODE_FILE" 2>/dev/null || echo "000") [ -z "$HTTP_CODE" ] && HTTP_CODE="000" diff --git a/.github/workflows/redeploy-tenants-on-staging.yml b/.github/workflows/redeploy-tenants-on-staging.yml index 433df238..e0d69544 100644 --- a/.github/workflows/redeploy-tenants-on-staging.yml +++ b/.github/workflows/redeploy-tenants-on-staging.yml @@ -160,8 +160,10 @@ jobs: -H "Authorization: Bearer $CP_STAGING_ADMIN_API_TOKEN" \ -H "Content-Type: application/json" \ -X POST "$CP_URL/cp/admin/tenants/redeploy-fleet" \ - -d "$BODY" >"$HTTP_CODE_FILE" 2>/dev/null + -d "$BODY" >"$HTTP_CODE_FILE" set -e + # Stderr from curl (-sS shows dial errors etc.) goes to the + # runner log so operators can see WHY a connection failed. HTTP_CODE=$(cat "$HTTP_CODE_FILE" 2>/dev/null || echo "000") [ -z "$HTTP_CODE" ] && HTTP_CODE="000" diff --git a/.github/workflows/sweep-stale-e2e-orgs.yml b/.github/workflows/sweep-stale-e2e-orgs.yml index 1531f117..d477eee3 100644 --- a/.github/workflows/sweep-stale-e2e-orgs.yml +++ b/.github/workflows/sweep-stale-e2e-orgs.yml @@ -167,8 +167,9 @@ jobs: -X DELETE "$MOLECULE_CP_URL/cp/admin/tenants/$slug" \ -H "Authorization: Bearer $ADMIN_TOKEN" \ -H "Content-Type: application/json" \ - -d "{\"confirm\":\"$slug\"}" >/tmp/del_code 2>/dev/null + -d "{\"confirm\":\"$slug\"}" >/tmp/del_code set -e + # Stderr from curl (-sS shows dial errors etc.) goes to runner log. http_code=$(cat /tmp/del_code 2>/dev/null || echo "000") if [ "$http_code" = "200" ] || [ "$http_code" = "204" ]; then deleted=$((deleted+1))