One of the great things about Cloud Foundry is that it is a great enabler. Tall words. But what do they mean? Essentially, Cloud Foundry (and any other well-designed PaaS) enables us to do things as developers and operators that would be extremely difficult in a traditional deployment environments. One particularly valuable area of enablement is our new found ability to practice Continous Delivery, meaning that we continuously prove our ability to deliver working software by continuously treating each code commit to a system as if it could be deployed to a production environment. We do this by shipping these commits through what’s called a “deployment pipeline,” which consists of a series of build-test-deploy cycles that prove out a commit’s suitability for production deployment. At the end of the pipeline we can either deploy automatically to our production environment (i.e. continuous deployment), or we can have a business decision to deploy that “deployable artifact” or not.
One particular practice associated with Continuous Delivery is Blue-Green Deployments. Martin Fowler describes these very well at the link provided, but I’ll summarize briefly here:
- Cut-over to a new software version is tricky, and must be quick in order to minimize downtime events.
- Blue-green deployments ensure the parallel existence of two, identical (as possible) production environments.
- At any given point, only one (e.g. blue) services production traffic.
- New deploys are made to the other (e.g. green) environment. Final smoke testing is performed here.
- When green is determined ready, we begin routing traffic to it.
- We then stop routing traffic to blue.
Of course, there are several concerns that must be dealt with at the application level in order for this to work (datastores should support concurrent usage by two app versions, long running requests may be killed, etc.). What we’ll focus on in this post is how Cloud Foundry supports the mechanics summarized above.
We’ll begin with a basic Spring application named ms-spr-demo
. This app takes users to a simple web page announcing the ubiquitous “Hello World!” message. We’ll utilize the cf
command-line interface to push the application:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
|
The end result of this cf push
event is that an application is now serving requests at http://ms-spr-demo.cfapps.io
. The following graphic shows the state of our system, with the CF Router sending traffic to our application:
Next, we make a slight change to our application. Rather that saying “Hello World!” we decide to make it say “Goodbye World!” We build a new war file for the application. Rather than letting cf
prompt us this time, we’ll make use of the manifest.yml
file that we saved from our previous push. However, we’ll rename the application and provide a new route. Take a look:
1 2 3 4 5 6 7 |
|
As you can see, we’re calling our new application version ms-spr-demo-green
and we’re mapping it to the URL ms-spr-demo-green.cfapps.io
. Let’s push the application:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
|
We now have two instances of the application running, each of them using distinct routes:
Now it’s time for the magic to happen. We’ll map our original URL route (ms-spr-demo.cfapps.io
) to our “green” instance. This is accomplished very simply by using cf
:
1 2 |
|
The CF router immediately begins to load balance requests between each instance of the application, as shown here:
Now our router will send requests to ms-spr-demo.cfapps.io
to both instances of the application, while ms-spr-demo-green.cfapps.io
only services the “green” instance. Once we determine that all is well, it’s time to stop routing requests to the “blue” instance. This is just as simple using cf
:
1 2 |
|
Our “blue” instance is now no longer receiving any web traffic:
We can now decomission our “blue” instance, or we can leave it around for a period of time in case we decide we need to roll back our changes. The important thing is that our customers suffered absolutely no downtime!