Files
deprecated-helm-charts/stable/airflow

Airflow / Celery

Airflow is a platform to programmatically author, schedule and monitor workflows.

Install Chart

To install the Airflow Chart into your Kubernetes cluster :

helm install --namespace "airflow" --name "airflow" stable/airflow

After installation succeeds, you can get a status of Chart

helm status "airflow"

If you want to delete your Chart, use this command:

helm delete  --purge "airflow"

Helm ingresses

The Chart provides ingress configuration to allow customization the installation by adapting the values.yaml depending on your setup. Please read the comments in the values.yaml file for more details on how to configure your reverse proxy or load balancer.

Chart Prefix

This Helm automatically prefixes all names using the release name to avoid collisions.

URL prefix

This chart exposes 2 endpoints:

  • Airflow Web UI
  • Flower, a debug UI for Celery

Both can be placed either at the root of a domain or at a sub path, for example:

http://mycompany.com/airflow/
http://mycompany.com/airflow/flower

NOTE: Mounting the Airflow UI under a subpath requires an airflow version >= 2.0.x. For the moment (June 2018) this is not available on official package, you will have to use an image where airflow has been updated to its current HEAD. You can use the following image: stibbons31/docker-airflow-dev:2.0dev. It is rebase regularly on top of the puckel/docker-airflow image.

Please also note that the Airflow UI and Flower do not behave the same:

  • Airflow Web UI behaves transparently, to configure it one just needs to specify the ingress.web.path value.

  • Flower cannot handle this scheme directly and requires a URL rewrite mechanism in front of it. In short, it is able to generate the right URLs in the returned HTML file but cannot respond to these URL. It is commonly found in software that wasn't intended to work under something else than a root URL or localhost port. To use it, see the values.yaml for how to configure your ingress controller to rewrite the URL (or "strip" the prefix path).

    Note: unreleased Flower (as of June 2018) does not need the prefix strip feature anymore. It is integrated in docker-airflow-dev:2.0dev image.

Airflow configuration

airflow.cfg configuration can be changed by defining environment variables in the following form: AIRFLOW__<section>__<key>.

See the Airflow documentation for more information

This helm chart allows you to add these additional settings with the value key airflow.config. You can also add generic environment variables such as proxy or private pypi:

airflow:
  config:
    AIRFLOW__CORE__EXPOSE_CONFIG: True
    PIP_INDEX_URL: http://pypi.mycompany.com/
    PIP_TRUSTED_HOST: pypi.mycompany.com
    HTTP_PROXY: http://proxy.mycompany.com:1234
    HTTPS_PROXY: http://proxy.mycompany.com:1234

If you are using a private image for your dags (see Embedded Dags) or for use with the KubernetesPodOperator (available in version 1.10.0), then add an image pull secret to the airflow config:

airflow:
  image:
    pullSecret: my-docker-repo-secret

Airflow connections

Connections define how your Airflow instance connects to environment and 3rd party service providers. This helm chart allows you to define your own connections at the time of Airflow initialization. For each connection the id and the type has to be defined. All other properties are optional.

Example:

airflow:
  connections:
  - id: my_aws
    type: aws
    extra: '{"aws_access_key_id": "**********", "aws_secret_access_key": "***", "region_name":"eu-central-1"}'

Note: As connections may require to include sensitive data - the resulting script is stored encrypted in a kubernetes secret and mounted into the airflow scheduler container. It is probably wise not to put connection data in the default values.yaml and instead create an encrypted my-secret-values.yaml. this way it can be decrypted before the installation and passed to helm with -f <my-secret-values.yaml>

Airflow variables

Variables are a generic way to store and retrieve arbitrary content or settings as a simple key value store within Airflow. These variables will be automatically imported by the scheduler when it starts up.

Example:

airflow:
  variables: '{ "environment": "dev" }'

Worker Statefulset

Celery workers uses StatefulSet. It is used to freeze their DNS using a Kubernetes Headless Service, and allow the webserver to requests the logs from each workers individually. This requires to expose a port (8793) and ensure the pod DNS is accessible to the web server pod, which is why StatefulSet is for.

Worker secrets

You can add kubernetes secrets which will be mounted as volumes on the worker nodes at secretsDir/<secret name>.

workers:
  secretsDir: /var/airflow/secrets
  secrets:
    - redshift-user
    - redshift-password
    - elasticsearch-user
    - elasticsearch-password

With the above configuration, you could read the redshift-user password from within a dag or other function using:

import os
from pathlib import Path

def get_secret(secret_name):
    secrets_dir = Path('/var/airflow/secrets')
    secret_path = secrets_dir / secret_name
    assert secret_path.exists(), f'could not find {secret_name} at {secret_path}'
    secret_data = secret_path.read_text().strip()
    return secret_data

redshift_user = get_secret('redshift-user')

To create a secret, you can use:

$ kubectl create secret generic redshift-user --from-file=redshift-user=~/secrets/redshift-user.txt

Where redshift-user.txt contains the user secret as a single text string.

Use precreated secret for airflow secrets or environment variables

You can use a precreated secret for the connection credentials, or general environment variables. To do so specify in values.yaml existingAirflowSecret, where the value is the name of the secret which has postgresUser, postgresPassword, and redisPassword etc. is defined. If not specified, it will fall back to using secrets.yaml to store the connection credentials by default.

Map each specific secret to specific environment variables in your values.yaml. Where envVar is the airflow environment variable to populate and secretKey is the key that contains your secret value in your kubernetes secret:

existingAirflowSecret: my-airflow-secrets
airflow:
    secretsMapping:
      - envVar: AIRFLOW__LDAP__BIND_PASSWORD
        secretKey: ldapBindPassword

      - envVar: POSTGRES_USER
        secretKey: airflowPostgresUser

      - envVar: POSTGRES_PASSWORD
        secretKey: airflowPostgresPassword

      - envVar: REDIS_PASSWORD
        secretKey: airflowRedisPassword

Local binaries

Please note a folder ~/.local/bin will be automatically created and added to the PATH so that Bash operators can use command line tools installed by pip install --user for instance.

Installing dependencies

Add a requirements.txt file at the root of your DAG project (dags.path entry at values.yaml) and they will be automatically installed. That works for both shared persistent volume and init-container deployment strategies (see below).

DAGs Deployment

Several options are provided for synchronizing your Airflow DAGs.

Mount a Shared Persistent Volume

You can store your DAG files on an external volume, and mount this volume into the relevant Pods (scheduler, web, worker). In this scenario, your CI/CD pipeline should update the DAG files in the PV.

Since all Pods should have the same collection of DAG files, it is recommended to create just one PV that is shared. This ensures that the Pods are always in sync about the DagBag.

This is controlled by setting persistence.enabled=true. You will have to ensure yourself the PVC are shared properly between your pods:

To share a PV with multiple Pods, the PV needs to have accessMode 'ReadOnlyMany' or 'ReadWriteMany'.

Use init-container

If you enable set dags.init_container.enabled=true, the pods will try upon startup to fetch the git repository defined by dags.git_repo, on branch dags.git_branch as DAG folder.

This is the easiest way of deploying your DAGs to Airflow.

If you are using a private Git repo, you can set dags.gitSecret to the name of a secret you created containing private keys and a known_hosts file.

For example, this will create a secret named my-git-secret from your ed25519 key and known_hosts file stored in your home directory: kubectl create secret generic my-git-secret --from-file=id_ed25519=~/.ssh/id_ed25519 --from-file=known_hosts=~/.ssh/known_hosts --from-file=id_id_ed25519.pub=~/.ssh/id_ed25519.pub

Embedded DAGs

If you want more control on the way you deploy your DAGs, you can use embedded DAGs, where DAGs are burned inside the Docker container deployed as Scheduler and Workers.

Be aware this requires more tooling than using shared PVC, or init-container:

  • your CI/CD should be able to build a new docker image each time your DAGs are updated.
  • your CI/CD should be able to control the deployment of this new image in your kubernetes cluster

Example of procedure:

  • Fork the puckel/docker-airflow repository
  • Place your DAG inside the dags folder of the repository, and ensure your Python dependencies are well installed (for example consuming a requirements.txt in your Dockerfile)
  • Update the value of airflow.image in your values.yaml and deploy on your Kubernetes cluster

Logs

You can store Airflow logs on an external volume and mount this volume inside Airflow pods.

This is useful when running the Kubernetes executor to centralize logs across the Airflow UI, scheduler, and kubernetes worker pods, which allows for viewing worker log output in the airflow UI.

This is controlled by the logsPersistence.enabled setting.

Refer to the Mount a Shared Persistent Volume section above for details on using persistent volumes.

Service monitor

The service monitor is something introduced by the CoresOS prometheus operator. To be able to expose metrics to prometheus you need install a plugin, this can be added to the docker image. A good one is: https://github.com/epoch8/airflow-exporter. This exposes dag and task based metrics from Airflow. For service monitor configuration see the generic Helm chart Configuration.

Helm chart Configuration

The following table lists the configurable parameters of the Airflow chart and their default values.

Parameter Description Default
airflow.fernetKey Ferney key (see values.yaml for example) (auto generated)
airflow.service.type services type ClusterIP
airflow.executor the executor to run Celery
airflow.initRetryLoop max number of retries during container init
airflow.image.repository Airflow docker image puckel/docker-airflow
airflow.image.tag Airflow docker tag 1.10.0-4
airflow.image.pullPolicy Image pull policy IfNotPresent
airflow.image.pullSecret Image pull secret
airflow.schedulerNumRuns -1 to loop indefinitively, 1 to restart after each exec
airflow.webReplicas how many replicas for web server 1
airflow.config custom airflow configuration env variables {}
airflow.podDisruptionBudget control pod disruption budget {'maxUnavailable': 1}
airflow.secretsMapping override any environment variable with a secret
airflow.extraConfigmapMounts Additional configMap volume mounts on the airflow pods. []
airflow.podAnnotations annotations for scheduler, worker and web pods {}
airflow.extraContainers additional containers to run in the scheduler, worker & web pods []
airflow.extraVolumeMounts additional volumeMounts to the main container in scheduler, worker & web pods []
airflow.extraVolumes additional volumes for the scheduler, worker & web pods []
flower.resources custom resource configuration for flower pod {}
web.resources custom resource configuration for web pod {}
web.initialStartupDelay amount of time webserver pod should sleep before initializing webserver 60
web.initialDelaySeconds initial delay on livenessprobe before checking if webserver is available 360
scheduler.resources custom resource configuration for scheduler pod {}
workers.enabled enable workers true
workers.replicas number of workers pods to launch 1
workers.resources custom resource configuration for worker pod {}
workers.celery.instances number of parallel celery tasks per worker 1
workers.podAnnotations annotations for the worker pods {}
workers.secretsDir directory in which to mount secrets on worker nodes /var/airflow/secrets
workers.secrets secrets to mount as volumes on worker nodes []
existingAirflowSecret secret to use for postgres and redis connection
nodeSelector Node labels for pod assignment {}
affinity Affinity labels for pod assignment {}
tolerations Toleration labels for pod assignment []
ingress.enabled enable ingress false
ingress.web.host hostname for the webserver ui ""
ingress.web.path path of the werbserver ui (read values.yaml) ``
ingress.web.annotations annotations for the web ui ingress {}
ingress.web.tls.enabled enables TLS termination at the ingress false
ingress.web.tls.secretName name of the secret containing the TLS certificate & key ``
ingress.flower.host hostname for the flower ui ""
ingress.flower.path path of the flower ui (read values.yaml) ``
ingress.flower.livenessPath path to the liveness probe (read values.yaml) /
ingress.flower.annotations annotations for the flower ui ingress {}
ingress.flower.tls.enabled enables TLS termination at the ingress false
ingress.flower.tls.secretName name of the secret containing the TLS certificate & key ``
persistence.enabled enable persistence storage for DAGs false
persistence.existingClaim if using an existing claim, specify the name here nil
persistence.storageClass Persistent Volume Storage Class (undefined)
persistence.accessMode PVC access mode ReadWriteOnce
persistence.size Persistant storage size request 1Gi
logsPersistence.enabled enable persistent storage for logs false
logsPersistence.existingClaim if using an existing claim, specify the name here nil
logsPersistence.storageClass Persistent Volume Storage Class (undefined)
logsPersistence.accessMode PVC access mode ReadWriteOnce
logsPersistence.size Persistant storage size request 1Gi
dags.doNotPickle should the scheduler disable DAG pickling false
dags.path mount path for persistent volume /usr/local/airflow/dags
dags.initContainer.enabled Fetch the source code when the pods starts false
dags.initContainer.image.repository Init container Docker image. alpine/git
dags.initContainer.image.tag Init container Docker image tag. 1.0.4
dags.initContainer.installRequirements auto install requirements.txt deps true
dags.git.url url to clone the git repository nil
dags.git.ref branch name, tag or sha1 to reset to master
dags.git.secret name of a secret containing an ssh deploy key nil
logs.path mount path for logs persistent volume /usr/local/airflow/logs
rbac.create create RBAC resources true
serviceAccount.create create a service account true
serviceAccount.name the service account name ``
postgresql.enabled create a postgres server true
postgresql.uri full URL to custom postgres setup (undefined)
postgresql.portgresHost PostgreSQL Hostname (undefined)
postgresql.postgresUser PostgreSQL User postgres
postgresql.postgresPassword PostgreSQL Password airflow
postgresql.postgresDatabase PostgreSQL Database name airflow
postgresql.persistence.enabled Enable Postgres PVC true
postgresql.persistance.storageClass Persistant class (undefined)
postgresql.persistance.accessMode Access mode ReadWriteOnce
redis.enabled Create a Redis cluster true
redis.redisHost Redis Hostname (undefined)
redis.password Redis password airflow
redis.master.persistence.enabled Enable Redis PVC false
redis.cluster.enabled enable master-slave cluster false
serviceMonitor.enabled enable service monitor false
serviceMonitor.interval Interval at which metrics should be scraped 30s
serviceMonitor.path The path at which the metrics should be scraped /admin/metrics
serviceMonitor.selector label Selector for Prometheus to find ServiceMonitors prometheus: kube-prometheus

Full and up-to-date documentation can be found in the comments of the values.yaml file.

Upgrading

To 2.0.0

The parameter workers.pod.annotations has been renamed to workers.podAnnotations. If using a custom values file, rename this parameter.