The Astro CLI is intended to make it easier to develop with Apache Airflow, whether you’re developing on your local machine or deploying code to Astronomer. The following guidelines describe a few of the methods you can use to customize the Docker Image that gets pushed to Airflow every time you rebuild your image locally using $ astro dev start or deploy to Astronomer using $ astro deploy.
More specifically, this doc includes instructions for how to:
$ astro dev init. If you haven’t done so already, refer to our “CLI Quickstart” doc.To add Python packages to an Airflow Deployment, add the packages to the Deployment requirements.txt file. To add OS-level packages to an Airflow Deployment, add them to the Deployment packages.txt file. The requirements.txt and packages.txt files were automatically generated after running astro dev init to initialize your local Astro project.
To add all Python packages to an Airflow Deployment, add the packages to the Deployment requirements.txt file.
To pin a version of that package, use the following syntax:
If you’d like to exclusively use Pymongo 3.7.2, for example, you’d add the following in your requirements.txt:
If you do not pin a package to a version, the latest version of the package that’s publicly available will be installed by default.
To add OS-level packages to an Airflow Deployment, add them to the Deployment packages.txt file.
Once you’ve saved those packages in your text editor or version control tool, rebuild your image by running:
followed by
This process stops your running Docker containers and restarts them with your updated image.
If you added pymongo to your requirements.txt file, for example, you can confirm that it was properly installed by running a $ docker exec command into your scheduler.
$ docker ps to identify the 3 running docker containers on your machineIn the same way you can build Python and OS-level packages into your image, you’re free to build additional dependencies and files for your DAGs to use.
In the example below, we’ll add a folder of helper_functions with a file (or set of files) that our Airflow DAGs can then use.
Follow the instructions in the “Rebuild your Image” section above.
Similar to the pymongo example above, you can confirm that helper.py was properly built into your image by running a $ docker exec command into your scheduler.
$ docker ps to identify the 3 running docker containers on your machineNotice that helper_functions folder has been built into your image.
When you first initialize a new Astro project on Astronomer, a file titled airflow_settings.yaml will be automatically generated. With this file you can configure and programmatically generate Airflow connections, Pools, and Variables when you’re developing locally.
For security reasons, the airflow_settings.yaml file is currently only for local development and should not be used for pushing up code to Astronomer via $ astro deploy. For the same reason, we’d recommend adding this file to your .gitignore.
By default, the airflow_settings.yaml file includes the following template:
Make sure to specify all required fields that correspond to the objects you create. If you don’t specify them, you will see a build error on $ astro dev start.
If you want to add a second Connection/Pool/Variable, copy the existing fields and make a new entry like so:
If you’re interested in running any extra commands when your Airflow image builds, it can be added to your Dockerfile as a RUN command. These will run as the last step in the image build process.
For example, if you wanted to run ls when your image builds, your Dockerfile would look like this:
The Astro CLI is built on top of Docker Compose, a tool for defining and running multi-container Docker applications. To override the default CLI configurations, add a docker-compose.override.yml file to your Astro project directory. The values in this file override the default settings when you run $ astro dev start.
To add another volume mount for a directory named custom_dependencies, for example, add the following to your docker-compose.override.yml:
Make sure to specify version: "3.1" and mimic the format of the source code file linked above.
When your image builds on $ astro dev start, any changes made within the custom_dependencies directory will be picked up automatically the same way they are with files in your dags directory:
You’re free to use native Airflow CLI commands on Astronomer when developing locally by wrapping them around docker commands.
To add a connection, for example, you can run:
Refer to the native Airflow CLI for a list of all commands.
To import environment variables from a specific file, run $ astro dev start with an --env flag:
This feature is limited to local development only. Whatever .env you use locally will not be bundled up when you deploy to Astronomer.
For more detail on how to add environment variables both locally and on Astronomer, refer to our Environment Variables doc.
Python packages can be installed from public and private locations into your image. To install public packages listed on PyPI, follow the steps in Add Python and OS-level Packages. To install packages listed on private PyPI indices or a private git-based repository, you need to complete additional configuration in your project.
Depending on where your private packages are stored, use one of the following setups to install your packages to an Astro project by customizing your Runtime image.
This topic provides instructions for building your Astro project with Python packages from a private GitHub repository. At a high level, this setup entails specifying your private packages in requirements.txt, creating a custom Docker image that mounts a GitHub SSH key for your private GitHub repositories, and building your project with this Docker image.
Although this setup is based on GitHub, the general steps can be completed with any hosted Git repository.
ssh-agent, you might need to modify this setup when using more than one SSH key per Docker image.To install Python packages from a private GitHub repository on Astronomer Software, you need:
This setup assumes that each custom Python package is hosted within its own private GitHub repository. Installing multiple packages from a single private GitHub repository is not supported.
To add a Python package from a private repository to your Software project, specify the repository’s SSH URL in your project’s requirements.txt file. This URL should be formatted as git+ssh://git@github.com/<your-github-organization-name>/<your-private-repository>.git.
For example, to install the mypackage1 & mypackage2 from myorganization, as well as numpy v 1.22.1, you would add the following to requirements.txt:
This example assumes that the name of each of your Python packages is identical to the name of its corresponding GitHub repository. In other words,mypackage1 is both the name of the package and the name of the repository.
In your Astro project, create a duplicate of your Dockerfile and name it Dockerfile.build.
In Dockerfile.build, add AS stage to the FROM line which specifies your Astronomer image. For example, if you use Astro Runtime 5.0.6, your FROM line would be:
Make sure to use the -base version of the Astro Runtime image that you want to customize. This image tag is customizable and does not include default build logic. For more information, see Image types
In Dockerfile.build after the FROM line specifying your image, add the following configuration:
In order, these commands:
packages.txt.requirements.txt file, including those from a private GitHub repository.If your repository is hosted somewhere other than GitHub, replace the domain in the ssh-keyscan command with the domain where the package is hosted.
Run the following command to create a new Docker image from your Dockerfile.build file, making sure to replace <ssh-key> with your SSH private key file name and <your-image> with your Astronomer image:
For example, if you have quay.io/astronomer/runtime:5.0.6-base in your Dockerfile.build, this command would be:
--ssh flag.Replace the contents of your Software project’s Dockerfile with the following:
For example, if your base image was quay.io/astronomer/runtime:5.0.6-base, this line would be:
Your Software project can now utilize Python packages from your private GitHub repository.
If you need your Astro deployment to communicate securely with a remote service using a certificate signed by an untrusted or internal certificate authority (CA), you need to add the CA certificate to the trust store inside the image.
In your Astro project Dockerfile, add the following entry below the existing FROM statement which specifies your Astro Runtime image version:
Optional. Add additional COPY statements before the RUN update-ca-certificates stanza for each CA certificate your organization is using for external access.
Save your changes and test them locally, or deploy them to a test Deployment.