For the complete documentation index, see llms.txt.

Documentation

Repository docs

This route renders the repository README and markdown under docs/ .

Source: docs/DEPLOYMENT_STATUS_REFERENCE.md

Rendered document

docs/DEPLOYMENT_STATUS_REFERENCE.md

Parsed server-side (markdown to HTML in the app). Same bytes you get from the checkout.

Deployment Status Reference

Vocabulary for deployment status, failure stages, categories, and codes.

Deployment status

StatusMeaning
pendingCreated, never deployed
deployingPipeline in progress
runningLast deploy succeeded
failedLast deploy failed
degradedRunning but runtime health degraded
unreachableRunning but probes failing
pausedUI state; AWS pause not fully supported

Runtime health status

StatusMeaning
healthyApp and infrastructure signals OK
degradedPartial failure (for example ALB targets unhealthy)
unreachableHTTP probe or ECS counts indicate outage
unknownInsufficient recent samples

Failure stages

StageTypical failure point
cloneGit checkout
detectService/scan detection
authGitHub or cloud credentials
buildCodeBuild / Railpack / Docker
publishECR push or S3 sync
setupInfrastructure preparation
deployECS service update
rolloutWaiting for tasks
verifyHTTP health probes
rollbackRollback attempt
unknownUnclassified

Failure categories

CategoryDescription
auth_failureCredential or permission problem
build_failureImage or artifact build failed
startup_failureProcess failed to start (often overlaps verify)
health_check_failureVerification probes failed
rollback_failureRollback could not complete
infrastructure_failureTransient network or cloud reachability
unknown_failureNo pattern matched

Failure codes

CodeSummaryRetryable
AUTHENTICATION_FAILEDGitHub, cloud, or registry auth failedNo
CODEBUILD_DOCKER_IMAGE_BUILD_FAILEDCodeBuild image build failedNo
DEPLOYMENT_VERIFICATION_FAILEDPost-deploy health check failedNo
AUTOMATIC_ROLLBACK_FAILEDVerify failed and auto-rollback failedNo
AUTOMATIC_ROLLBACK_NO_CANDIDATENo prior release to restoreNo
MANUAL_ROLLBACK_FAILEDUser rollback failedNo
INFRASTRUCTURE_NETWORK_FAILURETransient network issueYes
DEPLOYMENT_FAILED_GENERICUnclassified — check step logsNo

Detailed symptoms and fixes: Error Catalog.

Scan build status

ValueMeaning
passedBuild verification succeeded
failedVerification or build repair failed
skippedVerification not run

Deploy shapes

ShapeTypical target
staticS3
static_build (no start command)S3
static_build (with start command)ECS
serverECS
multiECS (multiple units)
existing_dockerECS via Dockerfile

Related