Deploy To Anynines

1 minute read

What is anynines?

anynines is a PaaS built on top of CloudFoundry and OpenStack.

See their documentation for more information.

Deploying

As for getting started with anynines on CodeShip, start by getting your application to deploy from your local machine. Once this is done, you need to add the following environment variables to your project settings.

CF_USER
CF_PASSWORD
CF_ORG
CF_SPACE
CF_APPLICATION

Then create a new script based deployment and paste the following commands.

cf6 api https://api.de.a9s.eu cf6 auth "${CF_USER}" "${CF_PASSWORD}" cf6 target -o "${CF_ORG}" -s "${CF_SPACE}" cf6 push "${CF_APPLICATION}"

This will deploy your application on each push to the specific branch you configured the deployment for.

If you have more thorough requirements, like blue/green deployments see a great article written by the folks at anynines about deploying to CodeShip, which is available at their blog.