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 64d84cb Typo Fix: Deprecated config force_log_out_after was not used
(#12661)
new 680986b Support creation of configmaps & secrets and extra env &
envFrom configuration in Helm Chart (#12164)
new 85075c4 Fix typo in check_environment.sh (#12395)
new 1ae0c5f Remove CodeQL from PRS. (#12406)
new 8f3b2a3 Switching to Ubuntu 20.04 as Github Actions runner. (#12404)
new 98b3dd9 The messages about remote image check are only shown with -v
(#12402)
new ccf7b3e Cope with '%' in password when waiting for migrations (#12440)
new 29fd0cf Fix broken CI.yml (#12454)
new acd5d12 Fix wait-for-migrations command in helm chart (#12522)
new 6ecc7b4 Fixes unneeded docker-context-files added in CI (#12534)
new eecef12 Adds missing licence headers (#12593)
new d031621 Use AIRFLOW_CONSTRAINTS_LOCATION when passed during docker
build (#12604)
new d1abe71 Adds possibility of forcing upgrade constraint by setting a
label (#12635)
new fcf1c01 Improved breeze messages for initialize-local-virtualenv and
static-check --help (#12640)
new 9fe9102 Allows mounting local sources for github run-id images
(#12650)
new 2e844cd Add 1.10.13 to CI, Breeze and Docs (#12652)
new b354b30 Remove "@" references from constraints generattion (#12671)
new db059d8 Setup.cfg change triggers full build (#12684)
The 17 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/build-images-workflow-run.yml | 28 ++---
.github/workflows/ci.yml | 45 ++++----
.github/workflows/codeql-analysis.yml | 10 +-
.github/workflows/delete_old_artifacts.yml | 2 +-
.github/workflows/label_when_reviewed.yml | 2 +-
.../workflows/label_when_reviewed_workflow_run.yml | 6 +-
.github/workflows/scheduled_quarantined.yml | 4 +-
.pre-commit-config.yaml | 2 +-
BREEZE.rst | 12 ++-
CONTRIBUTING.rst | 5 +
Dockerfile | 3 +-
Dockerfile.ci | 11 +-
IMAGES.rst | 27 +++--
breeze | 7 +-
breeze-complete | 1 +
chart/README.md | 6 +-
chart/files/pod-template-file.kubernetes-helm-yaml | 11 +-
chart/templates/_helpers.yaml | 20 +++-
chart/templates/{ => configmaps}/configmap.yaml | 0
.../extra-configmaps.yaml} | 36 ++++---
chart/templates/create-user-job.yaml | 2 +
chart/templates/flower/flower-deployment.yaml | 2 +-
chart/templates/migrate-database-job.yaml | 2 +
.../templates/scheduler/scheduler-deployment.yaml | 10 +-
.../{fernetkey-secret.yaml => extra-secrets.yaml} | 42 +++++---
.../templates/webserver/webserver-deployment.yaml | 8 +-
chart/templates/workers/worker-deployment.yaml | 10 +-
chart/tests/helm_template_generator.py | 12 +++
chart/tests/test_extra_configmaps_secrets.py | 110 +++++++++++++++++++
chart/tests/test_extra_env_env_from.py | 117 +++++++++++++++++++++
chart/values.schema.json | 44 ++++++++
chart/values.yaml | 51 +++++++++
docs/installation.rst | 10 +-
docs/production-deployment.rst | 50 ++++-----
scripts/ci/dockerfiles/bats/Dockerfile | 17 +++
scripts/ci/dockerfiles/stress/Dockerfile | 17 +++
scripts/ci/libraries/_build_images.sh | 59 +++++------
scripts/ci/selective_ci_checks.sh | 57 +++++++---
scripts/in_container/check_environment.sh | 2 +-
scripts/in_container/run_ci_tests.sh | 8 +-
scripts/in_container/run_generate_constraints.sh | 1 +
41 files changed, 667 insertions(+), 202 deletions(-)
rename chart/templates/{ => configmaps}/configmap.yaml (100%)
copy chart/templates/{secrets/fernetkey-secret.yaml =>
configmaps/extra-configmaps.yaml} (58%)
copy chart/templates/secrets/{fernetkey-secret.yaml => extra-secrets.yaml}
(55%)
create mode 100644 chart/tests/test_extra_configmaps_secrets.py
create mode 100644 chart/tests/test_extra_env_env_from.py