-
Notifications
You must be signed in to change notification settings - Fork 6
Add information on how to teardown production apps. #158
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
Changes from 4 commits
477364f
c273c57
23a607c
909272c
63c0c4d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,6 +32,13 @@ 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. | ||
|
||
To delete a production app, use `defang compose down`. In some cases, particularly on the AWS platform, additional actions to be required. Specifically load balancers may have Detetion 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. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do we have any tips on how to identify this load balancer? There was a problem hiding this comment. Choose a reason for hiding this commentThe 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. | ||
::: |
Uh oh!
There was an error while loading. Please reload this page.