Astro CI/CD templates for Bitbucket

Use the following CI/CD templates to automate deploying Apache Airflow dags from a Git repository to Astro with Bitbucket.

The templates for Bitbucket use the image deploy process with a single branch implementation, which requires only one Astro Deployment.

If you use the dag-only deploy feature on Astro or you’re interested in a multiple-branch implementation, see Template overview to configure your own. To learn more about CI/CD on Astro, see Choose a CI/CD strategy.

Prerequisites

Single branch implementation

To automate code deploys to a Deployment using Bitbucket, complete the following setup in a Git-based repository that hosts an Astro project:

  1. Set the following environment variable as a Bitbucket pipeline variable:

    • ASTRO_API_TOKEN: The value for your Workspace or Organization API token.
    • ASTRO_DEPLOYMENT_ID: Your Deployment ID.

    For production Deployments, be sure to set the value of your API token as secured.

  2. Create a new YAML file in bitbucket-pipelines.yml at the root of the repository that includes the following configuration:

    1pipelines:
    2 pull-requests: # The branch pattern under pull requests defines the *source* branch.
    3 dev:
    4 - step:
    5 name: Deploy to Production
    6 deployment: Production
    7 script:
    8 - curl -sSL install.astronomer.io | sudo bash -s
    9 - astro deploy ${ASTRO_DEPLOYMENT_ID} -f
    10 services:
    11 - docker