Skip to content

Commit 4092d97

Browse files
Dobbyclaude
andcommitted
Rename Orchestrator -> Gateway in verify output for gateway architecture
User-facing output in `privateclaw verify` step [4/5] now shows "Gateway Platform" and "Gateway VCEK Chain" instead of "Orchestrator" to reflect the new gateway-based inference architecture. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent b033b05 commit 4092d97

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

privateclaw

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,7 @@ PYEOF
497497
echo " Confidential AI Upstream Attestation: WARN — Attestation-Report header absent"
498498
fi
499499

500-
# --- Orchestrator attestation (X-Orchestrator-Attestation-Report, set by our tee-proxy via --header-name) ---
500+
# --- Gateway attestation (X-Orchestrator-Attestation-Report, set by our tee-proxy via --header-name) ---
501501
if [ -n "$ORCH_ATTESTATION" ]; then
502502
ORCH_ATTEST_OK=false
503503
ORCH_EVIDENCE_FILE=$(mktemp /tmp/orch_attestation_XXXXXX.json)
@@ -523,31 +523,31 @@ PYEOF
523523
if [ -n "$ORCH_VERIFY_RESULT" ] && echo "$ORCH_VERIFY_RESULT" | jq -e . &>/dev/null; then
524524
ORCH_SIG_VALID=$(echo "$ORCH_VERIFY_RESULT" | jq -r '.signature_valid // false')
525525
ORCH_PLATFORM=$(echo "$ORCH_VERIFY_RESULT" | jq -r '.platform // "unknown"')
526-
echo " Orchestrator Platform: $ORCH_PLATFORM (our tee-proxy)"
526+
echo " Gateway Platform: $ORCH_PLATFORM (our tee-proxy)"
527527
if [ "$ORCH_SIG_VALID" = "true" ]; then
528-
echo " Orchestrator VCEK Chain: VALID (AMD root CA -> VCEK -> SNP report)"
528+
echo " Gateway VCEK Chain: VALID (AMD root CA -> VCEK -> SNP report)"
529529
ORCH_ATTEST_OK=true
530530
else
531-
echo " Orchestrator Attestation: INVALID (signature verification failed)"
531+
echo " Gateway Attestation: INVALID (signature verification failed)"
532532
fi
533533
else
534-
echo " Orchestrator Attestation: present but verification failed"
534+
echo " Gateway Attestation: present but verification failed"
535535
fi
536536
else
537-
echo " Orchestrator Attestation: present but no verifier (attestation-cli not found)"
537+
echo " Gateway Attestation: present but no verifier (attestation-cli not found)"
538538
ORCH_ATTEST_OK=true # don't fail if CLI is missing, just note it
539539
fi
540540
else
541-
echo " Orchestrator Attestation: present but could not decode (expected base64+gzip or JSON)"
541+
echo " Gateway Attestation: present but could not decode (expected base64+gzip or JSON)"
542542
fi
543543
rm -f "$ORCH_EVIDENCE_FILE"
544544
# Both layers must pass for step [4/5] to succeed
545545
if [ "$ORCH_ATTEST_OK" != "true" ]; then
546546
INF_ATTEST_OK=false
547547
fi
548548
else
549-
# Orchestrator header absent — tee-proxy may not be configured with --header-name yet
550-
echo " Orchestrator Attestation: WARN — X-Orchestrator-Attestation-Report absent (tee-proxy may need --header-name=X-Orchestrator-Attestation-Report)"
549+
# Gateway header absent — tee-proxy may not be configured with --header-name yet
550+
echo " Gateway Attestation: WARN — X-Orchestrator-Attestation-Report absent (tee-proxy may need --header-name=X-Orchestrator-Attestation-Report)"
551551
echo " Using Confidential AI upstream attestation only."
552552
fi
553553

0 commit comments

Comments
 (0)