ScalixScalix Docs
Sign up

Deployments

Compute deployment endpoints — current status and Scalix Run equivalents

To run container workloads, deploy them as a Scalix Run service — that is the supported execution path.

Status: not available yet

The /v1/compute/deployments endpoints (create, list, get, scale, restart, rollback, delete, instances, logs, versions) are kept for API compatibility but have no scheduler behind them. Every call currently returns HTTP 501 — no deployment is created, stored, or run:

json
{
  "error": "Compute deployments are coming soon and not available yet. To run containers today, use Scalix Run (/v1/services) or Functions (/v1/functions).",
  "code": "COMPUTE_COMING_SOON",
  "coming_soon": true
}

The CLI's scalix-cloud logs <deployment-id> command targets this surface and reports the same unavailability.

Do it with Scalix Run instead

TaskCommand
Deployscalix-cloud run deploy --name api-server --image api.scalix.world/<project-id>/api:v1.2 --port 8080
List servicesscalix-cloud run list
Scalescalix-cloud run scale <service-id> --min-instances 1 --max-instances 10
Environment variablesscalix-cloud run deploy ... --env KEY=VALUE (repeatable)
Logsscalix-cloud run logs <service-id>
Roll backscalix-cloud run rollback <service-id>
Deletescalix-cloud run delete <service-id>

See Scalix Run for the full workflow, or the Compute API reference for the live /v1/run/services REST endpoints.