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
    • Astro Private Cloud overview
    • Astro Private Cloud features
        • Overview
        • Create in the UI
        • Programmatically upsert Deployments
        • Customize release names
        • Create using Astro Runtime SHA
      • Scale Deployment resources
      • Scale Airflow resources
      • Configure Deployment resources
      • Clean up and delete task metadata
      • Ephemeral storage configuration

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
  • Step 1: Enable configuration
  • Step 2: (Optional) Correlate SHA256 with Runtime versions
  • Step 3: (Optional) Specify default Runtime
Manage DeploymentsCreate and update Deployments

Create Deployments using Astro Runtime SHA256 digest

Edit this page
Built with

By default, Deployment creation references an Astro Runtime image by its tag in the Kubernetes spec, like quay.io/astronomer/astro-runtime:9.3.0. However, image tags are mutable and can lead to non-reproducible builds if the image associated with the tag changes. Instead of using the Runtime image tag, you can configure Astro Private Cloud to reference a Runtime image’s immutable sha256 digest, such as quay.io/astronomer/astro-runtime@sha256:<digest>. Using the sha256 digest ensures secure, immutable, and reproducible Deployments, which prevents unexpected behavior caused by tag reassignments.

After you enable using the sha256 digest, when users create or update Deployments that include a SHA version, they still see the same Runtime Image tag view as before in the UI or CLI, but the system resolves the build using the sha256 digest in the Kubernetes spec.

Step 1: Enable configuration

Apply a config change to your APC API values.yaml file to enable customImageShaEnabled.

1astronomer:
2 houston:
3 config:
4 deployments:
5 customImageShaEnabled: true

Step 2: (Optional) Correlate SHA256 with Runtime versions

By default, Astro Private Cloud checks for Airflow updates, which are included in the Astro Runtime, once per day at midnight by querying https://updates.astronomer.io/astronomer-runtime. This returns a JSON file with details about the latest available Astro Runtime versions.

You can store this information in the cluster itself by completing the following steps:

  1. Download the JSON files and store them in a Kubernetes configmap by running the following commands:
1curl -XGET https://updates.astronomer.io/astronomer-runtime -o astro_runtime_releases.json
2
3kubectl -n <astronomer platform namespace> create configmap astro-runtime-base-images --from-file=astro_runtime_releases.json
  1. Open the astro_runtime_release.json file and manually add the SHA256 values that you want Deployments to use for each Runtime version. For example, the following code example shows
1"13.0.0": {
2 "metadata": {
3 "airflowVersion": "2.11.0",
4 "channel": "stable",
5 "releaseDate": "2025-05-20",
6 "endOfSupport": "2026-11-30",
7 "LTS": true
8 },
9 "migrations": {
10 "airflowDatabase": false,
11 "stellarDatabase": false
12 }
13}

Add the Tag and SHA256 value and save:

1"13.0.0": {
2 "metadata": {
3 "airflowVersion": "2.11.0",
4 "channel": "stable",
5 "releaseDate": "2025-05-20",
6 "endOfSupport": "2026-11-30",
7 "LTS": true
8 },
9 "migrations": {
10 "airflowDatabase": false,
11 "stellarDatabase": false
12 },
13 "sha256": "82dc7efe0b16acc74e96a82bc8f1fd1db35a76a5a8c32f581d171d9765c02326"
14}
  1. Add your configmap name, astro-runtime-base-images to your APC API configuration using the runtimeReleasesConfigMapName configuration:
1astronomer:
2 houston:
3 runtimeReleasesConfigMapName: astro-runtime-base-images
4 config:
5 airgapped:
6 enabled: true

Step 3: (Optional) Specify default Runtime

If you want to configure your platform to create Deployments with a single, specific Runtime version, you can add the defaultRuntimeRepository configuration to specify the Runtime:

1astronomer:
2 houston:
3 config:
4 deployments:
5 customImageShaEnabled: true
6 helm:
7 defaultRuntimeRepository: quay.io/astronomer/astro-runtime@sha256