├── .circleci ├── __init__.py ├── bin │ ├── check-different-arg-values.sh │ ├── example_project │ │ ├── dags │ │ │ └── example_dag.py │ │ ├── packages.txt │ │ └── requirements.txt │ ├── install-ci-tools │ ├── start-kind-cluster │ ├── test-airflow │ └── test-airflow-image.py ├── common.py ├── config.yml ├── config.yml.j2 ├── generate_circleci_config.py ├── kickoff_qa_tests.sh ├── new_build_slack_approval.json.j2 ├── new_dev_build_slack_notification.json.j2 ├── pre-commit-scripts │ └── copyright.py ├── push.bash.j2 ├── regression_test_slack_approval.json.j2 ├── regression_test_slack_notification.json.j2 ├── smoke_test_slack_notification.json.j2 ├── test-requirements.txt ├── update_dockerfiles.py └── verify_changelog_entries.py ├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .pre-commit-config.yaml ├── 1.10.12 └── CHANGELOG.md ├── 1.10.14 └── CHANGELOG.md ├── 1.10.15 └── CHANGELOG.md ├── 2.0.0 └── CHANGELOG.md ├── 2.0.2 └── CHANGELOG.md ├── 2.1.0 └── CHANGELOG.md ├── 2.1.1 └── CHANGELOG.md ├── 2.1.3 └── CHANGELOG.md ├── 2.1.4 └── CHANGELOG.md ├── 2.2.0 └── CHANGELOG.md ├── 2.2.1 └── CHANGELOG.md ├── 2.2.2 └── CHANGELOG.md ├── 2.2.3 └── CHANGELOG.md ├── 2.2.4 └── CHANGELOG.md ├── 2.2.5 └── CHANGELOG.md ├── 2.3.0 └── CHANGELOG.md ├── 2.3.1 └── CHANGELOG.md ├── 2.3.2 └── CHANGELOG.md ├── 2.3.3 └── CHANGELOG.md ├── 2.3.4 ├── CHANGELOG.md └── bullseye │ ├── Dockerfile │ ├── build-time-pip-constraints.txt │ ├── include │ ├── clean-airflow-logs │ ├── entrypoint │ ├── pip-constraints.txt │ └── pip.conf │ └── trivyignore ├── 2.4.1 └── CHANGELOG.md ├── 2.4.2 └── CHANGELOG.md ├── 2.4.3 ├── CHANGELOG.md └── bullseye │ ├── Dockerfile │ ├── build-time-pip-constraints.txt │ ├── include │ ├── clean-airflow-logs │ ├── entrypoint │ ├── pip-constraints.txt │ └── pip.conf │ └── trivyignore ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── clean-artifacts.py ├── common └── Dockerfile.onbuild-bullseye ├── cve-allowlist.yaml ├── main └── bullseye │ ├── Dockerfile │ ├── include │ ├── clean-airflow-logs │ ├── entrypoint │ ├── pip-constraints.txt │ └── pip.conf │ └── trivyignore ├── package ├── astronomer │ ├── certified │ │ ├── __init__.py │ │ ├── blueprint.py │ │ ├── plugin.py │ │ ├── static │ │ │ └── astro-theme.css │ │ └── templates │ │ │ └── certified_base.html │ ├── pyproject.toml │ └── seed_log_template.py ├── dev-requirements.txt ├── setup.cfg ├── setup.py └── tests │ ├── conftest.py │ └── test_plugin.py └── repackage-providers.py /.circleci/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.circleci/bin/check-different-arg-values.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/.circleci/bin/check-different-arg-values.sh -------------------------------------------------------------------------------- /.circleci/bin/example_project/dags/example_dag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/.circleci/bin/example_project/dags/example_dag.py -------------------------------------------------------------------------------- /.circleci/bin/example_project/packages.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.circleci/bin/example_project/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.circleci/bin/install-ci-tools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/.circleci/bin/install-ci-tools -------------------------------------------------------------------------------- /.circleci/bin/start-kind-cluster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/.circleci/bin/start-kind-cluster -------------------------------------------------------------------------------- /.circleci/bin/test-airflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/.circleci/bin/test-airflow -------------------------------------------------------------------------------- /.circleci/bin/test-airflow-image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/.circleci/bin/test-airflow-image.py -------------------------------------------------------------------------------- /.circleci/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/.circleci/common.py -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.circleci/config.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/.circleci/config.yml.j2 -------------------------------------------------------------------------------- /.circleci/generate_circleci_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/.circleci/generate_circleci_config.py -------------------------------------------------------------------------------- /.circleci/kickoff_qa_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/.circleci/kickoff_qa_tests.sh -------------------------------------------------------------------------------- /.circleci/new_build_slack_approval.json.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/.circleci/new_build_slack_approval.json.j2 -------------------------------------------------------------------------------- /.circleci/new_dev_build_slack_notification.json.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/.circleci/new_dev_build_slack_notification.json.j2 -------------------------------------------------------------------------------- /.circleci/pre-commit-scripts/copyright.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/.circleci/pre-commit-scripts/copyright.py -------------------------------------------------------------------------------- /.circleci/push.bash.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/.circleci/push.bash.j2 -------------------------------------------------------------------------------- /.circleci/regression_test_slack_approval.json.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/.circleci/regression_test_slack_approval.json.j2 -------------------------------------------------------------------------------- /.circleci/regression_test_slack_notification.json.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/.circleci/regression_test_slack_notification.json.j2 -------------------------------------------------------------------------------- /.circleci/smoke_test_slack_notification.json.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/.circleci/smoke_test_slack_notification.json.j2 -------------------------------------------------------------------------------- /.circleci/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/.circleci/test-requirements.txt -------------------------------------------------------------------------------- /.circleci/update_dockerfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/.circleci/update_dockerfiles.py -------------------------------------------------------------------------------- /.circleci/verify_changelog_entries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/.circleci/verify_changelog_entries.py -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /1.10.12/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/1.10.12/CHANGELOG.md -------------------------------------------------------------------------------- /1.10.14/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/1.10.14/CHANGELOG.md -------------------------------------------------------------------------------- /1.10.15/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/1.10.15/CHANGELOG.md -------------------------------------------------------------------------------- /2.0.0/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/2.0.0/CHANGELOG.md -------------------------------------------------------------------------------- /2.0.2/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/2.0.2/CHANGELOG.md -------------------------------------------------------------------------------- /2.1.0/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/2.1.0/CHANGELOG.md -------------------------------------------------------------------------------- /2.1.1/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/2.1.1/CHANGELOG.md -------------------------------------------------------------------------------- /2.1.3/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/2.1.3/CHANGELOG.md -------------------------------------------------------------------------------- /2.1.4/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/2.1.4/CHANGELOG.md -------------------------------------------------------------------------------- /2.2.0/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/2.2.0/CHANGELOG.md -------------------------------------------------------------------------------- /2.2.1/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/2.2.1/CHANGELOG.md -------------------------------------------------------------------------------- /2.2.2/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/2.2.2/CHANGELOG.md -------------------------------------------------------------------------------- /2.2.3/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/2.2.3/CHANGELOG.md -------------------------------------------------------------------------------- /2.2.4/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/2.2.4/CHANGELOG.md -------------------------------------------------------------------------------- /2.2.5/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/2.2.5/CHANGELOG.md -------------------------------------------------------------------------------- /2.3.0/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/2.3.0/CHANGELOG.md -------------------------------------------------------------------------------- /2.3.1/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/2.3.1/CHANGELOG.md -------------------------------------------------------------------------------- /2.3.2/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/2.3.2/CHANGELOG.md -------------------------------------------------------------------------------- /2.3.3/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/2.3.3/CHANGELOG.md -------------------------------------------------------------------------------- /2.3.4/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/2.3.4/CHANGELOG.md -------------------------------------------------------------------------------- /2.3.4/bullseye/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/2.3.4/bullseye/Dockerfile -------------------------------------------------------------------------------- /2.3.4/bullseye/build-time-pip-constraints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/2.3.4/bullseye/build-time-pip-constraints.txt -------------------------------------------------------------------------------- /2.3.4/bullseye/include/clean-airflow-logs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/2.3.4/bullseye/include/clean-airflow-logs -------------------------------------------------------------------------------- /2.3.4/bullseye/include/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/2.3.4/bullseye/include/entrypoint -------------------------------------------------------------------------------- /2.3.4/bullseye/include/pip-constraints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/2.3.4/bullseye/include/pip-constraints.txt -------------------------------------------------------------------------------- /2.3.4/bullseye/include/pip.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/2.3.4/bullseye/include/pip.conf -------------------------------------------------------------------------------- /2.3.4/bullseye/trivyignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/2.3.4/bullseye/trivyignore -------------------------------------------------------------------------------- /2.4.1/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/2.4.1/CHANGELOG.md -------------------------------------------------------------------------------- /2.4.2/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/2.4.2/CHANGELOG.md -------------------------------------------------------------------------------- /2.4.3/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/2.4.3/CHANGELOG.md -------------------------------------------------------------------------------- /2.4.3/bullseye/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/2.4.3/bullseye/Dockerfile -------------------------------------------------------------------------------- /2.4.3/bullseye/build-time-pip-constraints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/2.4.3/bullseye/build-time-pip-constraints.txt -------------------------------------------------------------------------------- /2.4.3/bullseye/include/clean-airflow-logs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/2.4.3/bullseye/include/clean-airflow-logs -------------------------------------------------------------------------------- /2.4.3/bullseye/include/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/2.4.3/bullseye/include/entrypoint -------------------------------------------------------------------------------- /2.4.3/bullseye/include/pip-constraints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/2.4.3/bullseye/include/pip-constraints.txt -------------------------------------------------------------------------------- /2.4.3/bullseye/include/pip.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/2.4.3/bullseye/include/pip.conf -------------------------------------------------------------------------------- /2.4.3/bullseye/trivyignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/2.4.3/bullseye/trivyignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/SECURITY.md -------------------------------------------------------------------------------- /clean-artifacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/clean-artifacts.py -------------------------------------------------------------------------------- /common/Dockerfile.onbuild-bullseye: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/common/Dockerfile.onbuild-bullseye -------------------------------------------------------------------------------- /cve-allowlist.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/cve-allowlist.yaml -------------------------------------------------------------------------------- /main/bullseye/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/main/bullseye/Dockerfile -------------------------------------------------------------------------------- /main/bullseye/include/clean-airflow-logs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/main/bullseye/include/clean-airflow-logs -------------------------------------------------------------------------------- /main/bullseye/include/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/main/bullseye/include/entrypoint -------------------------------------------------------------------------------- /main/bullseye/include/pip-constraints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/main/bullseye/include/pip-constraints.txt -------------------------------------------------------------------------------- /main/bullseye/include/pip.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/main/bullseye/include/pip.conf -------------------------------------------------------------------------------- /main/bullseye/trivyignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/main/bullseye/trivyignore -------------------------------------------------------------------------------- /package/astronomer/certified/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package/astronomer/certified/blueprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/package/astronomer/certified/blueprint.py -------------------------------------------------------------------------------- /package/astronomer/certified/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/package/astronomer/certified/plugin.py -------------------------------------------------------------------------------- /package/astronomer/certified/static/astro-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/package/astronomer/certified/static/astro-theme.css -------------------------------------------------------------------------------- /package/astronomer/certified/templates/certified_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/package/astronomer/certified/templates/certified_base.html -------------------------------------------------------------------------------- /package/astronomer/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/package/astronomer/pyproject.toml -------------------------------------------------------------------------------- /package/astronomer/seed_log_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/package/astronomer/seed_log_template.py -------------------------------------------------------------------------------- /package/dev-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/package/dev-requirements.txt -------------------------------------------------------------------------------- /package/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/package/setup.cfg -------------------------------------------------------------------------------- /package/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/package/setup.py -------------------------------------------------------------------------------- /package/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/package/tests/conftest.py -------------------------------------------------------------------------------- /package/tests/test_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/package/tests/test_plugin.py -------------------------------------------------------------------------------- /repackage-providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ap-airflow/HEAD/repackage-providers.py --------------------------------------------------------------------------------