Servers

Tdx Preflight

Can this exact image boot on this host? The one call a launch/upgrade preflight makes.

A check against both a host profile and the measurement set, so it hangs off neither. The API fingerprints the submitted profile and answers whether a published measurement for the caller's (version, rc) carries that fingerprint -- the whole launch decision in one boolean:

  • launchable: true -> the VM will attest; launch.
  • launchable: false -> register the class (POST /servers/tdx/host_profiles), then retry once Chutes publishes its measurement.

Stores nothing and reveals nothing beyond the answer -- not the full measurement set, not whether a profile row exists. Signed by the miner hotkey, so the signature covers the body.

post/servers/tdx/preflight

Query parameters

versionstring required

VM image version the caller intends to boot.

VM image version the caller intends to boot.

rcboolean

Whether that image is a release-candidate (debug) build.

Whether that image is a release-candidate (debug) build.

Headers

X-Chutes-Hotkeystring nullable
X-Chutes-Signaturestring nullable
X-Chutes-Noncestring nullable
Authorizationstring nullable

Request body

hostnamestring nullable
timestampstring nullable
pci_topologystring nullable

Response

Successful Response

fingerprintstring required
launchableboolean required
detailstring required

Changes