-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
14 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
documentation/modules/ROOT/pages/03-bluegreen-rollout.adoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,18 @@ | ||
= Blue-Green Rollout | ||
include::_attributes.adoc[] | ||
|
||
[#blue-green-overview] | ||
== Blue-Green Overview | ||
|
||
In a blue-green deployment we deploy a new version of the application in a separate stack from the current version with | ||
the two versions running in parallel for a period of time. This enables testing on the new version while users continue | ||
to access the current version of the application until a cut-over of traffic happens. The diagram below shows this process | ||
over time. | ||
|
||
image::overview-blue-green.png[] | ||
|
||
|
||
|
||
|
||
[#deploy-blue-green-rollout] | ||
== Deploy Blue-Green Rollout |