Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Service Statuses #157

Merged
merged 8 commits into from
Jan 13, 2025
Merged
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions docs/concepts/services.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,25 @@ Defang manages the deployment process for services. You can learn more about how
:::info
We plan to add support for other types of services in the future, including serverless functions.
:::

## Service Status

An overview of the possible statuses for a service in Defang.

| Status | Details |
|-|-|
| BUILD_QUEUED | The service update has been received and is now in the queue for its image to be built. |
| BUILD_PROVISIONING | The container orchestrator is provisioning the necessary resources for building your service's image. |
| BUILD_PENDING | The necessary resources to build your service have been provisioned but the build has not yet been initiated. |
| BUILD_ACTIVATING | The container orchestrator is pulling the build container's image and creating the build container. |
| BUILD_RUNNING | The container which builds your service's image is successfully running. |
| BUILD_STOPPING | The container orchestrator has sent a termination signal to the build container and is waiting for the build process to stop. |
| BUILD_FAILED | The build container exited with a non-zero status code. |
| UPDATE_QUEUED | The service update has been received and is now in the queue. |
| SERVICE_DEPLOYMENT_PENDING | The necessary resources to run your service have been provisioned but the service has not yet been initiated. |
| SERVICE_DEPLOYMENT_COMPLETED | Your service has been deployed and is healthy. |
| SERVICE_DEPLOYMENT_FAILED | Your service could not be deployed. |

:::tip
You can run the `defang compose ps` command to view a service's status.
commit111 marked this conversation as resolved.
Show resolved Hide resolved
:::
Loading