This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a change to branch v1-10-test
in repository https://gitbox.apache.org/repos/asf/airflow.git.
from e75deee Bugfix: Unable to import Airflow plugins on Python 3.8
(#12859)
new 91df4f0 Requirements shoudl be removed. Sufficient time passed.
new 465cdf0 Adds --no-rbac-ui flag for Breeze airflow 1.10 installation
(#11315)
new 641a334 Enable PIP check for both CI and PROD image (#12664)
new f114663 Improve wording of selective checks comments (#12701)
new 7b777ba User-friendly output of Breeze and CI scripts (#12735)
new 09a4885 Fix chart jobs delete policy for improved idempotency (#12646)
new 4f5170e Artifacts in Github Action have a short retention period
(#12793)
new 637425f Adds airflow as viable docker command in official image
(#12878)
new a806229 Clarifies version args for installing 1.10 in Docker (#12875)
new f12a23c Kubernetes worker pod doesn't use docker container entrypoint
(#12766)
new 4f50e00 Builds prod images on DockerHub from packages (#12908)
new 9e283fb Apply labels to Docker images in a single instruction (#12931)
new d4a149d Update CI to run tests againt v2-0-test branch (#10891)
new 8f3ffcc Update CI to run tests againt v2-0-test branch (#10891)
new 8a5d378 Update Dockerfile.ci (#12988)
new 0e924ba Update Dockerfile (#12987)
new 91b32ad Add changes from 1.10.14 (#12993)
new 1cbff2f Changes release image preparation to use PyPI packages
(#12990)
new 72c0a83 Fix gpg verification command (#13035)
new a8f57d1 Install airflow and providers from dist and verifies them
(#13033)
new 54fc2f9 Fixes image building in DockerHub (#13039)
The 21 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.github/workflows/ci.yml | 46 +-
.github/workflows/delete_old_artifacts.yml | 31 -
.../workflows/label_when_reviewed_workflow_run.yml | 24 +-
.github/workflows/scheduled_quarantined.yml | 2 +
BREEZE.rst | 202 ++-
CI.rst | 8 +-
CONTRIBUTING.rst | 12 -
Dockerfile | 120 +-
Dockerfile.ci | 23 +-
IMAGES.rst | 73 +-
README.md | 27 +-
airflow/executors/kubernetes_executor.py | 2 +-
breeze | 220 ++-
breeze-complete | 17 +-
chart/templates/create-user-job.yaml | 2 +-
chart/templates/migrate-database-job.yaml | 2 +-
.../templates/scheduler/scheduler-deployment.yaml | 2 +-
.../templates/webserver/webserver-deployment.yaml | 2 +-
chart/tests/test_basic_helm_chart.py | 2 -
codecov.yml | 72 +
dev/README.md | 1511 +-------------------
dev/README_RELEASE_AIRFLOW.md | 733 ++++++++++
docs/production-deployment.rst | 274 ++--
requirements/REMOVE.md | 22 -
requirements/requirements-python2.7.txt | 343 -----
requirements/requirements-python3.5.txt | 326 -----
requirements/requirements-python3.6.txt | 333 -----
requirements/requirements-python3.7.txt | 330 -----
requirements/requirements-python3.8.txt | 329 -----
requirements/setup-2.7.md5 | 1 -
requirements/setup-3.5.md5 | 1 -
requirements/setup-3.6.md5 | 1 -
requirements/setup-3.7.md5 | 1 -
requirements/setup-3.8.md5 | 1 -
scripts/ci/constraints/ci_branch_constraints.sh | 2 +
scripts/ci/images/ci_build_dockerhub.sh | 103 +-
scripts/ci/images/ci_prepare_prod_image_on_ci.sh | 16 +-
scripts/ci/images/ci_verify_ci_image.sh | 6 +-
scripts/ci/images/ci_verify_prod_image.sh | 19 +-
scripts/ci/images/ci_wait_for_ci_image.sh | 17 +
scripts/ci/images/ci_wait_for_prod_image.sh | 18 +
scripts/ci/libraries/_build_images.sh | 249 ++--
scripts/ci/libraries/_docker.env | 1 +
scripts/ci/libraries/_initialization.sh | 85 +-
scripts/ci/libraries/_kind.sh | 30 +-
scripts/ci/libraries/_parameters.sh | 18 +-
scripts/ci/libraries/_push_pull_remove_images.sh | 38 +-
scripts/ci/libraries/_repeats.sh | 13 +-
scripts/ci/libraries/_sanity_checks.sh | 68 +-
.../ci/pre_commit/pre_commit_check_pre_commits.sh | 40 +-
scripts/ci/pre_commit/pre_commit_mermaid.sh | 6 +-
scripts/ci/selective_ci_checks.sh | 8 +-
scripts/ci/static_checks/check_license.sh | 15 +-
scripts/in_container/_in_container_script_init.sh | 6 +-
scripts/in_container/_in_container_utils.sh | 342 ++++-
scripts/in_container/check_environment.sh | 5 +-
scripts/in_container/entrypoint_ci.sh | 91 +-
scripts/in_container/prod/entrypoint_prod.sh | 29 +-
scripts/in_container/run_ci_tests.sh | 83 +-
scripts/in_container/run_cli_tool.sh | 20 +-
scripts/in_container/run_system_tests.sh | 2 +
tests/bats/breeze/test_breeze_params.bats | 17 +-
tests/bats/in_container/test_in_container.bats | 2 +
63 files changed, 2433 insertions(+), 4011 deletions(-)
delete mode 100644 .github/workflows/delete_old_artifacts.yml
create mode 100644 codecov.yml
create mode 100644 dev/README_RELEASE_AIRFLOW.md
delete mode 100644 requirements/REMOVE.md
delete mode 100644 requirements/requirements-python2.7.txt
delete mode 100644 requirements/requirements-python3.5.txt
delete mode 100644 requirements/requirements-python3.6.txt
delete mode 100644 requirements/requirements-python3.7.txt
delete mode 100644 requirements/requirements-python3.8.txt
delete mode 100644 requirements/setup-2.7.md5
delete mode 100644 requirements/setup-3.5.md5
delete mode 100644 requirements/setup-3.6.md5
delete mode 100644 requirements/setup-3.7.md5
delete mode 100644 requirements/setup-3.8.md5