cf plugin for hands-off, zero downtime application deploys
*On nix
$ go get github.com/concourse/autopilot
$ cf install-plugin $GOPATH/bin/autopilot
On Windows
$ go get github.com/concourse/autopilot
$ cf install-plugin $env:GOPATH/bin/autopilot.exe
$ cf zero-downtime-push application-to-replace \
-f path/to/new_manifest.yml \
-p path/to/new/path
The --keep-existing-app
flag will stop the existing app instead of deleting it, so that it can be restored more easily.
Your application manifest must be up to date or the new application that is created will not resemble the application that it is replacing.
You can check your application doesn't have unexpected environment variables or services which are missing from the application manifest with Antifreeze.
Autopilot takes a different approach to other zero-downtime plugins. It doesn't perform any complex route re-mappings instead it leans on the manifest feature of the Cloud Foundry CLI. The method also has the advantage of treating a manifest as the source of truth and will converge the state of the system towards that. This makes the plugin ideal for continuous delivery environments.
-
The old application is renamed to
<APP-NAME>-venerable
. It keeps its old route mappings and this change is invisible to users. -
The new application is pushed to
<APP-NAME>
(assuming that the name has not been changed in the manifest). It binds to the same routes as the old application (due to them being defined in the manifest) and traffic begins to be load-balanced between the two applications. -
The old application is deleted along with its route mappings. All traffic now goes to the new application. Optionally, the old application can be stopped instead of deleted using the
--keep-existing-app
flag.