You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ka...@apache.org on 2021/04/30 23:06:39 UTC

[airflow] branch master updated (f8a70e1 -> 8655d66)

This is an automated email from the ASF dual-hosted git repository.

kaxilnaik pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git.


    from f8a70e1  Support MySQL db in the helm chart (#15616)
     add 8655d66  Helm RBAC Best Practices (#14152)

No new revisions were added by this update.

Summary of changes:
 chart/files/pod-template-file.kubernetes-helm-yaml |   2 +-
 chart/templates/_helpers.yaml                      | 129 +++++++++
 chart/templates/cleanup/cleanup-cronjob.yaml       |   2 +-
 .../templates/cleanup/cleanup-serviceaccount.yaml  |  14 +-
 chart/templates/flower/flower-deployment.yaml      |   1 +
 .../flower-serviceaccount.yaml}                    |   8 +-
 .../create-user-job-serviceaccount.yaml}           |  12 +-
 chart/templates/{ => jobs}/create-user-job.yaml    |   1 +
 .../migrate-database-job-serviceaccount.yaml}      |  12 +-
 .../templates/{ => jobs}/migrate-database-job.yaml |   1 +
 .../templates/pgbouncer/pgbouncer-deployment.yaml  |   3 +
 .../pgbouncer-serviceaccount.yaml}                 |   8 +-
 chart/templates/rbac/pod-cleanup-role.yaml         |   2 +-
 chart/templates/rbac/pod-cleanup-rolebinding.yaml  |   4 +-
 chart/templates/rbac/pod-launcher-role.yaml        |   2 +-
 chart/templates/rbac/pod-launcher-rolebinding.yaml |   6 +-
 chart/templates/rbac/pod-log-reader-role.yaml      |   2 +-
 .../templates/rbac/pod-log-reader-rolebinding.yaml |   2 +-
 .../redis-serviceaccount.yaml}                     |   8 +-
 chart/templates/redis/redis-statefulset.yaml       |   1 +
 .../templates/scheduler/scheduler-deployment.yaml  |   2 +-
 .../scheduler/scheduler-serviceaccount.yaml        |   6 +-
 chart/templates/statsd/statsd-deployment.yaml      |   3 +
 .../statsd-serviceaccount.yaml}                    |   8 +-
 .../templates/webserver/webserver-deployment.yaml  |   2 +-
 .../webserver/webserver-serviceaccount.yaml        |   6 +-
 chart/templates/workers/worker-deployment.yaml     |   2 +-
 chart/templates/workers/worker-serviceaccount.yaml |   6 +-
 chart/tests/test_annotations.py                    | 138 ++++++++++
 chart/tests/test_basic_helm_chart.py               |  10 +-
 chart/tests/test_create_user_job.py                |   2 +-
 chart/tests/test_git_sync_webserver.py             |   4 +-
 chart/tests/test_migrate_database_job.py           |   2 +-
 chart/tests/test_pod_launcher_role.py              |   4 +-
 chart/tests/test_rbac.py                           | 297 +++++++++++++++++++++
 chart/values.schema.json                           | 232 +++++++++++++++-
 chart/values.yaml                                  | 140 +++++++++-
 docs/helm-chart/parameters-ref.rst                 | 105 +++++++-
 38 files changed, 1101 insertions(+), 88 deletions(-)
 copy chart/templates/{webserver/webserver-serviceaccount.yaml => flower/flower-serviceaccount.yaml} (80%)
 copy chart/templates/{webserver/webserver-serviceaccount.yaml => jobs/create-user-job-serviceaccount.yaml} (75%)
 rename chart/templates/{ => jobs}/create-user-job.yaml (97%)
 copy chart/templates/{webserver/webserver-serviceaccount.yaml => jobs/migrate-database-job-serviceaccount.yaml} (76%)
 rename chart/templates/{ => jobs}/migrate-database-job.yaml (97%)
 copy chart/templates/{webserver/webserver-serviceaccount.yaml => pgbouncer/pgbouncer-serviceaccount.yaml} (83%)
 copy chart/templates/{webserver/webserver-serviceaccount.yaml => redis/redis-serviceaccount.yaml} (79%)
 copy chart/templates/{webserver/webserver-serviceaccount.yaml => statsd/statsd-serviceaccount.yaml} (84%)
 create mode 100644 chart/tests/test_annotations.py
 create mode 100644 chart/tests/test_rbac.py