POST /api/v1/agents returns in about a second with status=provisioning. Typical wall time until the Hermes dashboard is reachable is a few minutes (usually under five). Poll stages until wizard_reachable is ok and status is running.
POST /api/v1/agents inserts a row, seeds URLs, enqueues work, then the worker walks a strict, ordered set of readiness gates stored on the agent:
GET /api/v1/agents/{id} until stages complete and status is running (or error).
Stage order
Stages are not parallel. Later stages stay
pending until earlier ones succeed.
Status values
Each stage object looks like:
Treat coral/
error as terminal for that attempt. Amber/waiting is normal during Autopilot pull, DNS, and HTTP backoff.
Worked polling example
Retries and reprovision
- Hard failures during provision may return 503 from the worker so Cloud Tasks retries with backoff.
- After a sticky error, owners can call
POST /api/v1/agents/{id}/reprovisionto re-enqueue. - Restore flows add
restore_*keys alongside the create stages; hostname stays the same.
After success
Whenstatus is running:
- Open
dashboard_url(basic auth — reveal password withPOST …/credentials/reveal) - Call the tenant Hermes API at
api_urlwith the tenant API key (not yourso_control-plane key)
How long does provision take?
How long does provision take?
Typical wall time is a few minutes (image pull + PVC + DNS + HTTP gate). The product UI polls about every 2.5 seconds. Treat
waiting as in progress; error is terminal for that attempt until you reprovision.Do I need SSH?
Do I need SSH?
No. Lifecycle (start, stop, restart, restore, secrets, credentials, logs) is on the control plane. See What is SEAOTTER?.

