Recreate Deployment StrategyDeployment Strategy
Deployment strategies describe how we handle the release of the new code to an environment. Each has it's different use case, pros and cons.
Here is a (non-definitive) list of deployment strategie... is a very simple strategy to set up. Here is how it works:
- you first terminate version
A
- once that is done, you roll out version
B
The advantage of this approach is that it's really simple to implement. The disadvantage is that it has high customer impact - the application is down from the moment version A
is killed to the moment version B
is successfully booted up.
Status: #💡
References: