Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

programs.airlift.enable

Whether to enable airlift.

Type: boolean

Default:

false

Example:

true

Declared by:

programs.airlift.package

The airlift package to use.

Type: null or package

Default:

pkgs.airlift

Declared by:

programs.airlift.settings

Configuration settings for airlift. All the available options can be found here: https://artifacthub.io/packages/helm/apache-airflow/airflow?modal=values.

Type: YAML 1.1 value

Default:

{ }

Example:

{
  cluster_config_file = "/path/to/cluster/config.yaml";
  dag_path = "/path/to/dags";
  extra_volume_mounts = [
    "hostPath=/my/cool/path,containerPath=/my/mounted/path,name=a_unique_name"
  ];
  helm_chart_version = "1.0.0";
  helm_values_file = "/path/to/values.yaml";
  image = "apache/airflow:2.6.0";
  plugin_path = "/path/to/plugins";
  port = 8080;
  post_start_dag_id = "example_dag_id";
  requirements_file = "/path/to/requirements.txt";
}

Declared by: