Observe & Operate·Last Verified: 2026-07-14

Deployment Statuses

Understand Kubeletto service and deployment states.

Tracking service status allows developers to identify exactly where a deployment failed in the pipeline.

Deployment Stages

StatusMeaningIs Terminal
queuedBuild/Deploy is waiting in the queue to be picked up by a worker.No
buildingWork files are being compiled via BuildKit.No
build_failedCompilation failed. Check build logs.Yes
deployingKnative revision is being applied to the cluster.No
runtime_appliedKnative applied, waiting for container readiness.No
activeService is healthy and serving web traffic.Yes
deploy_failedContainer failed to bind or crash-looped.Yes
cancelledDeployment aborted by the user.Yes

Retrieving Service Status

JSON Status
kubeletto status my-service --output json
Was this helpful?