For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
      • AstroFully-managed data operations, powered by Apache Airflow.
      • Astro Private CloudRun Airflow-as-a-service in your environment.
      • Professional ServicesExpert Airflow services for your enterprise's success.
    • Tools
      • Cosmos
      • Orbiter
      • CLI
      • AI SDK
      • Agents
      • Blueprint
      • UpdatesThe State of Airflow 2026See the insights from over 5,800 data practitioners in the full report. Download Now ➔
  • Customers
  • Docs
    • Insights
      • Blog
      • Webinars
      • Resource Library
      • Events
    • Education
      • Academy
      • What is Airflow?
  • Pricing
Get Started Free
    • Overview
      • Create a Deployment
      • Execution mode
        • Overview
        • Shared responsibility model
        • Get started
        • Deploy Remote Execution project
        • Deploy a dbt project
        • Helm chart reference
      • Worker queues
      • Environment variables
      • Secrets backend
    • Book Office Hours

Product

  • Platform Overview
  • Astro
  • Astro Observe
  • Astro Private Cloud
  • Security & Trust
  • Pricing

Tools & Services

  • Cosmos
  • Docs
  • Professional Services
  • Product Updates

Use Cases

  • AI Ops
  • Data Observability
  • ETL/ELT
  • ML Ops
  • Operational Analytics
  • All Use Cases

Industries

  • Financial Services
  • Gaming
  • Retail
  • Manufacturing
  • Healthcare
  • All Industries

Resources

  • Academy
  • eBooks & Guides
  • Blog
  • Webinars
  • Events
  • The Data Flowcast Podcast
  • All Resources

Airflow

  • What is Airflow
  • Airflow on Astro
  • Airflow 3.0
  • Airflow Upgrades
  • Airflow Use Cases
  • Airflow 2.x End of Life

Company

  • Our Story
  • Customers
  • Newsroom
  • Careers
  • Contact

Support

  • Knowledge Base
  • Status
  • Contact Support
GitHubYouTubeLinkedInx
  • Legal
  • Privacy
  • Terms of Service
  • Consent Preferences

  • Do Not Sell or Share My Personal information
  • Limit the Use Of My Sensitive Personal Information

Apache Airflow®, Airflow, and the Airflow logo are trademarks of the Apache Software Foundation. Copyright © Astronomer 2026. All rights reserved.

LogoLogo
On this page
  • Prerequisites
  • Related documentation
Manage DeploymentsRemote Execution

Initialize and deploy Remote Execution projects

Edit this page
Built with
This is feature is only available if you are on the Enterprise tier or above. See Astro Plans and Pricing.
Airflow 3

This feature is only available for Airflow 3.x Deployments.

Remote Execution Deployments require two sets of container images:

  • Astro Runtime images: Astronomer’s managed distribution of Apache Airflow, powering all Deployments on Astro.
  • Remote Execution Agent images: Specifically built for Remote Execution Agents.

When using Remote Execution mode, the server (Deployment on Astro) and client (Remote Execution Agents) are deployed separately. You must maintain dedicated client images for the Remote Execution Agents. These client images are based on the Astro Remote Execution Agent image and must be pushed to a remote image registry accessible by your Agents.

Because these client images are distinct from the usual Astro Runtime images, you need to use dedicated commands to build and deploy them.

This guide explains how to initialize an Astro project for Remote Execution and how to build and push client images for Remote Execution Agents.

For details about Astro project image deploys with Remote Execution, see Deploy an Astro project.

For best practices and procedures to upgrade your Astro Runtime version, including for Remote Execution Deployments, see Upgrade Astro Runtime.

Prerequisites

  • The Astro CLI.
  • An Astro Workspace with at least one Remote Execution Deployment.
  • Remote Execution Agents registered with your Deployment.
  • A remote Docker registry accessible from your environment where Remote Execution Agents run.
1

Create a Remote Execution project

Run:

1astro dev init my-remote-project --remote-execution-enabled --remote-image-repository <remote-image-repository-url>

This generates the required files for building client images. If you omit --remote-image-repository, you can configure it later with:

1astro config set remote.client_registry <remote-image-repository-url>
2

Review generated files

  • Dockerfile.client – Dockerfile for client images
  • requirements-client.txt – Python dependencies for client images
  • packages-client.txt – OS-level packages for client images
3

Configure dag access

Set up dag access for your Remote Execution Agents using either LocalDagBundle or GitDagBundle. Update your Agent’s Helm chart values.yaml accordingly. See Dag bundles.

4

Log in to your remote Docker registry

Before you can deploy a client image, you must be logged in to your remote Docker registry. The Astro CLI does not manage authentication for your registry.

Log in using:

1docker login <remote-registry> --username <registry-username> --password-stdin

Replace <remote-registry> and <registry-username> with the details for your registry.

5

Build and deploy the Astro Deployment (server) image

From your project directory, deploy the Astro Runtime image to your Remote Execution Deployment:

1astro deploy

This command builds your project and pushes the updated Astro Runtime image to Astro, updating the Airflow components in your managed Astro Deployment.

Monitor the Deployment to confirm that the new version is running in the Astro UI.

The astro deploy command updates the orchestration plane only. To update the execution plane, follow the Remote Execution Agent image steps below.

6

Build and deploy Remote Execution Agent (client) images

From your project directory, run:

1astro remote deploy

You can use additional flags as needed, such as:

1astro remote deploy --platform linux/amd64
2astro remote deploy --platform linux/amd64,linux/arm64
3astro remote deploy --image-name my-custom-image:tag
4astro remote deploy --build-secrets id=mysecret,src=secrets.txt
Platform mismatch can cause build failures

By default, astro remote deploy builds an image for your computer’s platform. For example, if you are on a Mac with Apple silicon, it will build for linux/arm64. If your Agents need linux/amd64, the image may not work.

To avoid issues, always set the --platform flag: astro remote deploy --platform linux/amd64,linux/arm64

This command only pushes the client image to your remote registry. See astro remote for more information.

7

Update Remote Execution Agents to use the new image

After pushing the image, you must update your Agent configuration to actually use it:

  1. Edit your Agent Helm chart values.yaml.
  2. Update the image field for each of the worker, dagProcessor, and triggerer component sections to the new client image reference (as just pushed).
  3. Apply the changes by running:
1helm upgrade <release-name> <chart-path> -f values.yaml

Agents will not use the new client image until this update is performed.

If you manage your Agent deployments via a CI/CD pipeline, update your pipeline to set the new client image in the Helm values.yaml file, and trigger the deployment process to roll out the change automatically. This ensures that updates to the client image are reliably applied across all agents without manual intervention.

Related documentation

  • Remote Execution mode overview
  • Remote Execution Agents
  • Dag bundles
  • astro remote CLI reference
  • astro dev init CLI reference