Spring Cloud Pipelines 1.0.0.M3 Released
On behalf of the Spring Cloud team it is my pleasure to announce a new milestone release of Spring Cloud Pipelines - 1.0.0.M3
.
What’s new?
Apart from some bug and documentation fixes it’s providing an out of the box support for blue green deployment on Cloud Foundry (both for Concourse and Jenkins)! This is how we do it.
When you click deploy to prod
-
we’re renaming the current instance of the app e.g.
fooService
tofooService-venerable
-
we’re deploying the new instance of the app under the
fooService
name -
now two instances of the same application are running on production
When you click on the Complete switch over
…