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
          • Configure OpenLineage
          • Enable Sentinel monitoring
          • Install in restricted Kubernetes namespace
          • Set up custom timetable support
          • Configure AWS PrivateLink
          • Configure Azure Private Link
        • 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
  • Setup
  • Step 1: Retrieve your OpenLineage namespace and URL
  • Step 2: Configure the OpenLineage API key
  • Step 3: Set OpenLineage environment variables on the orchestration plane
Manage DeploymentsRemote ExecutionAdvanced configuration

Configure OpenLineage for a Remote Execution Agent

Edit this page
Built with
Airflow 3

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

OpenLineage enables you to access data lineage and provenance across your Airflow workflows for your Remote Execution Agent. Features like Observe and Astro Alerts require that you enable OpenLineage for your data pipelines.

When you create your Remote Execution Agent, Astro automatically generates a Helm values.yaml file with OpenLineage configurations pre-filled. To set up OpenLineage, you need to configure an access credential for OpenLineage. This can be an Astro Deployment API token used as your OpenLineage API key. There are three methods you can use to add your API key to your Helm values:

  • Method 1 - Configure the API key as plain text. This stores your API key in your values.yaml file as plaintext, which is the simplest but least secure option. It’s appropriate for development or testing environments.
  • Method 2 - Use a pre-created Kubernetes secret. This procedure stores your API key separately from your values.yaml file, which provides more security than storing as plaintext. This option provides security with standard Kubernetes features.
  • Method 3 - Inject your API key with a secrets manager. This approach uses an init container to inject the Agent token into the Remote Execution Agent component Pods. This example uses the HashiCorp Vault Agent, but you can use your own secrets manager. This option provides enhanced security with the potential for secret rotation.

Prerequisites

  • A Kubernetes cluster
  • Helm
  • The values.yaml file downloaded from the Remote Execution Agent registration modal in the Astro UI
  • A Deployment API Token that uses a Custom Deployment role with Observe Ingest permissions

Setup

Step 1: Retrieve your OpenLineage namespace and URL

1

Open the Remote Agent registration

In the Astro UI, go to the Deployment page and choose Agent. Then click Register Remote Agent.

Download the values file

Click Download values.yaml file.

The downloaded Helm values file includes the OpenLineage namespace and URL pre-filled, so you only need to configure the OpenLineage API key.

Step 2: Configure the OpenLineage API key

Configure key as plaintext
Use pre-created Kubernetes secret
Use secrets manager

This method stores an Astro Deployment API token as your OpenLineage API key in plain text in your values.yaml file, so that the Remote Execution Agent Helm chart can use it to create a Kubernetes secret named openlineage-api-key-secret. This API key is base64-encoded in the Kubernetes secret.

All Remote Execution Agent components — the worker, Dag processor, and triggerer — use this API key to authenticate with the OpenLineage endpoint.

1

Update your values file

Add the following OpenLineage configuration to your values.yaml file:

1openLineage:
2 # Enable OpenLineage integration
3 enabled: true
4
5 # Set your OpenLineage API key directly in the values file
6 apiKey: "<OPENLINEAGE_API_KEY>"
7
8 # Do NOT set apiKeySecret when using apiKey
9 # apiKeySecret: ~
10
11 # Astro OpenLineage URL endpoint (prefilled in the downloaded values.yaml from the Astro UI)
12 url: "<OPENLINEAGE_ENDPOINT_URL>"
13
14 # Astro Deployment's namespace (prefilled in the downloaded values.yaml from the Astro UI)
15 namespace: "<ASTRO_DEPLOYMENT_NAMESPACE>"

Install the Helm chart

Apply the chart using the values.yaml file with the following command:

$helm install astro-agent astronomer/astro-remote-execution-agent -f values.yaml

Step 3: Set OpenLineage environment variables on the orchestration plane

1

Open the Deployment

In the Astro UI, open your Deployment.

Open the Environment Variables tab

Go to the Environment Variables tab.

Add the OpenLineage variable

Add the following environment variable:

$OPENLINEAGE_DISABLED=False

Apply changes

Save your changes to apply them.

Setting this variable ensures that all required OpenLineage events, including task and Dag run events, are collected from the scheduler, workers, Dag processor, and triggerer components. This provides complete lineage in Observe and Astro Alerts.