Skip to content
Merged
Changes from all 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
11 changes: 11 additions & 0 deletions docs/tutorials/updating-your-services.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,17 @@ The default deployment mode is `development`. This is the In this mode, the exis

If you are running in `production` mode, the update will be done with zero downtime. Your current version of the service will keep running and handling traffic while the new version is being built and deployed. Only after the new version passes the health checks and accepts traffic will the older version be stopped.

## Deleting your Application

To delete your app, use `defang compose down` in your compose file working directory, or use the `--project-name` flag.

In some cases, particularly on the AWS platform, additional actions may be required. Specifically load balancers may have Deletion Protection on. To turn this off in the AWS Console for EC2 Load Balancers, follow these steps:

1. Select the load balancer corresponding to the app’s name.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we have any tips on how to identify this load balancer?

Copy link
Contributor Author

@nullfunc nullfunc Jan 8, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The naming will be similar to the cluster/app name, I think for customers they won't have so many they will have issues pick it out.

2. Go to the Attributes tab.
3. Click the Edit button.
4. Locate Deletion Protection and disable it.

:::info
For more information on Deployment Modes, see the [Deployment Modes](/docs/concepts/deployment-modes) concept documentation.
:::
Loading