Athena
ProvisionDependencies

Inspect Docker and Postgres dependency status for local provisioning

GET
/admin/provision/dependencies

Header Parameters

apikey*string

The static admin key configured as ATHENA_KEY_12. Authorization headers (Bearer <key>), X-API-Key, X-Athena-Key, or ?api_key= are also accepted.

Response Body

application/json

curl -X GET "https://athena-cluster.com/admin/provision/dependencies" \  -H "apikey: string"
{
  "os_family": "string",
  "package_manager": "string",
  "running_as_root": true,
  "sudo_available": true,
  "sudo_non_interactive_available": true,
  "systemctl_available": true,
  "can_attempt_install": true,
  "docker_binary_available": true,
  "docker_service_active": true,
  "postgres_binary_available": true,
  "postgres_service_active": true,
  "missing": [
    "string"
  ],
  "notes": [
    "string"
  ]
}
Empty