Identify the orchestrator
Identifies this process as the fuse orchestrator and reports its
build version (dev when the binary was not stamped at build
time). Despite the /v1 prefix it is mounted on the outer mux,
outside auth and the CIDR allowlist, so fuse connect can confirm
it is talking to an orchestrator (rather than a host agent, or
nothing at all) before it holds a validated token.
GET
/v1/versionResponses
200Service identity and build version.
servicestringrequiredAllowed:
fuse-orchestratorversionstringrequiredRequest
curl -X GET "http://localhost:8080/v1/version"const response = await fetch("http://localhost:8080/v1/version", {
method: "GET"
});import requests
response = requests.get(
"http://localhost:8080/v1/version",
)Response
{
"service": "fuse-orchestrator",
"version": "1.4.0"
}