This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to tag nightly-master
in repository https://gitbox.apache.org/repos/asf/airflow.git.
*** WARNING: tag nightly-master was modified! ***
from 5670e6f (commit)
to ac12401 (commit)
from 5670e6f Support .airflowignore for plugins (#9531)
add a2abac9 Remove duplicate License lines in airflow/lineage/entities.py
(#9659)
add 5c89515 Make airflow/models/xcom.py Pylint Compatible (#9658)
add e4529d1 Make airflow/models/kubernetes.py Pylint Compatible (#9673)
add 78d0287 Make airflow/logging_config.py Pylint Compatible (#9672)
add 7a32866 The fix_ownership works independently of backend choice
(#9664)
add d93555b Add git sync option and unit tests for the Helm chart (#9371)
add 01044ff Fix use of GCP credentials in StackdriverTaskHandler (#9668)
add 444051d Fix pylint issues in airflow/models/dagbag.py (#9666)
add bb19b91 Remove side effects from tests (#9675)
add ac12401 Fix tests: Add Default Conns back only when needed (#9679)
No new revisions were added by this update.
Summary of changes:
.github/workflows/ci.yml | 11 +
CI.rst | 2 +-
airflow/kubernetes/worker_configuration.py | 4 +
airflow/lineage/entities.py | 18 +-
airflow/logging_config.py | 5 +-
airflow/models/dag.py | 2 +-
airflow/models/dagbag.py | 278 +++++++++++----------
airflow/models/dagcode.py | 2 +-
airflow/models/kubernetes.py | 5 +
airflow/models/xcom.py | 10 +-
airflow/sensors/base_sensor_operator.py | 4 +-
airflow/serialization/serialized_objects.py | 2 +-
airflow/utils/file.py | 23 +-
airflow/utils/log/stackdriver_task_handler.py | 2 +-
chart/README.md | 40 ++-
chart/templates/_helpers.yaml | 95 +++++++
chart/templates/configmap.yaml | 40 ++-
...vice.yaml => dags-persistent-volume-claim.yaml} | 35 ++-
.../templates/scheduler/scheduler-deployment.yaml | 16 ++
.../templates/webserver/webserver-deployment.yaml | 19 ++
chart/templates/workers/worker-deployment.yaml | 18 ++
chart/tests/dags-persistent-volume-claim_test.yaml | 64 +++++
chart/tests/git-sync-scheduler_test.yaml | 135 ++++++++++
chart/tests/git-sync-webserver_test.yaml | 66 +++++
chart/tests/git-sync-worker_test.yaml | 70 ++++++
chart/values.yaml | 70 +++++-
scripts/ci/ci_fix_ownership.sh | 3 +-
.../ci/ci_run_helm_testing.sh | 15 +-
scripts/ci/pylint_todo.txt | 4 -
.../endpoints/test_connection_endpoint.py | 5 +-
.../endpoints/test_event_log_endpoint.py | 9 +-
tests/api_connexion/endpoints/test_log_endpoint.py | 2 +-
.../api_connexion/endpoints/test_xcom_endpoint.py | 16 +-
tests/jobs/test_backfill_job.py | 8 +-
tests/jobs/test_local_task_job.py | 8 +-
tests/jobs/test_scheduler_job.py | 23 +-
tests/kubernetes/test_worker_configuration.py | 4 +
tests/models/test_cleartasks.py | 7 +-
tests/models/test_dagbag.py | 18 +-
tests/models/test_taskinstance.py | 32 ++-
tests/models/test_variable.py | 3 +
tests/models/test_xcom.py | 8 +
tests/sensors/test_base_sensor.py | 19 +-
tests/sensors/test_external_task_sensor.py | 8 +-
tests/sensors/test_weekday_sensor.py | 18 +-
tests/test_utils/db.py | 30 ++-
tests/utils/log/test_stackdriver_task_handler.py | 17 +-
tests/www/test_views.py | 4 +-
48 files changed, 1010 insertions(+), 287 deletions(-)
copy chart/templates/{webserver/webserver-service.yaml =>
dags-persistent-volume-claim.yaml} (63%)
create mode 100644 chart/tests/dags-persistent-volume-claim_test.yaml
create mode 100644 chart/tests/git-sync-scheduler_test.yaml
create mode 100644 chart/tests/git-sync-webserver_test.yaml
create mode 100644 chart/tests/git-sync-worker_test.yaml
copy airflow/www/compile_assets.sh => scripts/ci/ci_run_helm_testing.sh (68%)