Deploy to Cloud Foundry

1 minute read
End-of-life announcement

CodeShip will officially reach end-of-life on January 31, 2026.

To continue CI/CD services at current CodeShip pricing levels, transition to CloudBees Unify.

Next steps:

As for getting started with Cloud Foundry on CloudBees 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_API Endpoints # Pivotal Labs: https://api.run.pivotal.io CF_API CF_USER CF_PASSWORD CF_ORG CF_SPACE CF_APPLICATION

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

cf6 api "${CF_API}" 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.