Running Airflow locally is fine for practice, but production environments require scalability, reliability, and automation. Airflow can be deployed in different ways — from lightweight Docker setups to highly scalable Kubernetes clusters and managed cloud services.

In this lesson, you’ll explore how to deploy Airflow using Docker, Kubernetes, and Cloud platforms.

Learning Objectives

By the end of this lesson, you will be able to:

  • Deploy Airflow using Docker Compose for development.

  • Understand how to scale Airflow with Kubernetes.

  • Explore cloud-managed Airflow services (AWS, GCP, Azure).

  • Decide which deployment strategy fits different use cases.

1. Airflow Deployment Options

Airflow can be deployed in several environments:

  • Local (development) → Simple setup for learning.

  • Docker → Portable, reproducible, and easy for dev/test.

  • Kubernetes → Highly scalable for production workloads.

  • Cloud services → Fully managed options (AWS MWAA, GCP Composer, Astronomer, etc.).

2. Deploying Airflow with Docker Compose

  • Airflow provides an official Docker image and docker-compose.yaml.

  • Quick start:

# Clone official Airflow repo
git clone https://github.com/apache/airflow.git
cd airflow

# Initialize environment
echo -e "AIRFLOW_UID=$(id -u)" > .env

# Start Airflow
docker-compose up -d

👉 This launches Airflow with:

  • Webserver

  • Scheduler

  • PostgreSQL (metadata DB)

  • Redis/Celery (for task queue, optional)

💡 Best for: development, local testing, and training environments.

3. Deploying Airflow on Kubernetes

  • Airflow can run on Kubernetes clusters for scalability.

  • The official Airflow Helm Chart simplifies installation.

Steps:

1. Install Helm:

 
helm repo add apache-airflow https://airflow.apache.org
helm repo update

 

2. Install Airflow:

 
helm install airflow apache-airflow/airflow --namespace airflow

 

3. Access the Web UI using port forwarding or an Ingress.

👉 Benefits:

  • Auto-scaling of workers.

  • Isolation of tasks in Kubernetes pods.

  • Easier resource management.

💡 Best for: production-grade, large-scale deployments.

4. Cloud-Managed Airflow Services

Several cloud providers offer managed Airflow environments:

  • AWS Managed Workflows for Apache Airflow (MWAA)

    • Fully managed Airflow on AWS.

    • Integrates with S3, Redshift, Glue, etc.

  • Google Cloud Composer

    • Managed Airflow on GCP.

    • Integrates with BigQuery, GCS, Pub/Sub.

  • Astronomer Cloud / MWaaS providers

    • Commercial solutions offering managed Airflow clusters.

👉 Benefits:

  • No need to manage infrastructure.

  • Integrated with cloud security & monitoring tools.

  • Auto-scaling and updates handled for you.

💡 Best for: teams that want to focus on pipelines, not infrastructure.

5. Choosing the Right Deployment Strategy

 

DeploymentBest ForProsCons
Docker ComposeLearning, local devEasy, fast, portableNot scalable for production
KubernetesProduction at scaleScalable, resilient, cloud-nativeComplex setup & management
Cloud ServicesEnterprise productionManaged, secure, integratedVendor lock-in, cost

Lesson Summary

  • Docker Compose: great for development and quick setups.

  • Kubernetes: best for scaling Airflow in production.

  • Cloud services: ideal for managed, enterprise-ready deployments.

  • The right choice depends on your team size, workload, and infrastructure expertise.