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 2020/06/17 22:38:43 UTC

[airflow] branch master updated (6a9c436 -> 66e7382)

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 6a9c436  Move out metastore_browser from airflow.contrib (#9341)
     add 66e7382  Add Production Helm chart support (#8777)

No new revisions were added by this update.

Summary of changes:
 .pre-commit-config.yaml                            |   2 +-
 chart/.gitignore                                   |   9 +
 .../config_endpoint.py => chart/.helmignore        |  31 +-
 .readthedocs.yml => chart/Chart.yaml               |  20 +-
 chart/README.md                                    | 269 +++++++++++++
 chart/requirements.lock                            |   6 +
 .../libs/helper.py => chart/requirements.yaml      |  10 +-
 .../LICENSE.txt => chart/templates/NOTES.txt       |  13 +
 chart/templates/_helpers.yaml                      | 260 ++++++++++++
 chart/templates/cleanup/cleanup-cronjob.yaml       |  67 ++++
 .../templates/cleanup/cleanup-serviceaccount.yaml  |  24 +-
 chart/templates/configmap.yaml                     | 117 ++++++
 chart/templates/create-user-job.yaml               |  87 ++++
 chart/templates/flower/flower-deployment.yaml      | 102 +++++
 chart/templates/flower/flower-networkpolicy.yaml   |  51 +++
 .../templates/flower/flower-service.yaml           |  41 +-
 .../pod.yaml => chart/templates/limitrange.yaml    |  33 +-
 .../templates/pgbouncer/pgbouncer-deployment.yaml  | 128 ++++++
 .../pgbouncer/pgbouncer-networkpolicy.yaml         |  69 ++++
 .../pgbouncer/pgbouncer-poddisruptionbudget.yaml   |  55 ++-
 chart/templates/pgbouncer/pgbouncer-service.yaml   |  56 +++
 .../templates/rbac/pod-cleanup-role.yaml           |  45 ++-
 .../templates/rbac/pod-cleanup-rolebinding.yaml    |  32 +-
 chart/templates/rbac/pod-launcher-role.yaml        |  58 +++
 chart/templates/rbac/pod-launcher-rolebinding.yaml |  51 +++
 chart/templates/redis/redis-networkpolicy.yaml     |  63 +++
 .../templates/redis/redis-service.yaml             |  41 +-
 chart/templates/redis/redis-statefulset.yaml       |  99 +++++
 .../pod.yaml => chart/templates/resourcequota.yaml |  33 +-
 .../templates/scheduler/scheduler-deployment.yaml  | 195 +++++++++
 .../scheduler/scheduler-networkpolicy.yaml         |  55 +++
 .../scheduler/scheduler-poddisruptionbudget.yaml   |  39 +-
 .../templates/scheduler/scheduler-service.yaml     |  43 +-
 .../scheduler/scheduler-serviceaccount.yaml        |  24 +-
 .../templates/secrets/elasticsearch-secret.yaml    |  22 +-
 .../templates/secrets/fernetkey-secret.yaml        |  27 +-
 .../secrets/metadata-connection-secret.yaml        |  42 ++
 .../templates/secrets/pgbouncer-config-secret.yaml |  23 +-
 .../templates/secrets/pgbouncer-stats-secret.yaml  |  22 +-
 chart/templates/secrets/redis-secrets.yaml         |  61 +++
 .../templates/secrets/registry-secret.yaml         |  24 +-
 .../secrets/result-backend-connection-secret.yaml  |  37 ++
 chart/templates/statsd/statsd-deployment.yaml      |  87 ++++
 chart/templates/statsd/statsd-networkpolicy.yaml   |  57 +++
 chart/templates/statsd/statsd-service.yaml         |  56 +++
 .../templates/webserver/webserver-deployment.yaml  | 139 +++++++
 .../webserver/webserver-networkpolicy.yaml         |  51 +++
 .../templates/webserver/webserver-service.yaml     |  39 +-
 chart/templates/workers/worker-deployment.yaml     | 161 ++++++++
 chart/templates/workers/worker-kedaautoscaler.yaml |  47 +++
 chart/templates/workers/worker-networkpolicy.yaml  |  53 +++
 .../templates/workers/worker-service.yaml          |  41 +-
 .../templates/workers/worker-serviceaccount.yaml   |  24 +-
 chart/values.yaml                                  | 436 +++++++++++++++++++++
 54 files changed, 3426 insertions(+), 251 deletions(-)
 create mode 100644 chart/.gitignore
 copy airflow/api_connexion/endpoints/config_endpoint.py => chart/.helmignore (70%)
 copy .readthedocs.yml => chart/Chart.yaml (81%)
 create mode 100644 chart/README.md
 create mode 100644 chart/requirements.lock
 copy airflow/example_dags/libs/helper.py => chart/requirements.yaml (87%)
 copy license-templates/LICENSE.txt => chart/templates/NOTES.txt (57%)
 create mode 100644 chart/templates/_helpers.yaml
 create mode 100644 chart/templates/cleanup/cleanup-cronjob.yaml
 copy scripts/ci/kubernetes/app/secrets.yaml => chart/templates/cleanup/cleanup-serviceaccount.yaml (63%)
 create mode 100644 chart/templates/configmap.yaml
 create mode 100644 chart/templates/create-user-job.yaml
 create mode 100644 chart/templates/flower/flower-deployment.yaml
 create mode 100644 chart/templates/flower/flower-networkpolicy.yaml
 copy tests/kubernetes/pod.yaml => chart/templates/flower/flower-service.yaml (53%)
 copy tests/kubernetes/pod.yaml => chart/templates/limitrange.yaml (62%)
 create mode 100644 chart/templates/pgbouncer/pgbouncer-deployment.yaml
 create mode 100644 chart/templates/pgbouncer/pgbouncer-networkpolicy.yaml
 copy tests/dags/test_no_impersonation.py => chart/templates/pgbouncer/pgbouncer-poddisruptionbudget.yaml (53%)
 create mode 100644 chart/templates/pgbouncer/pgbouncer-service.yaml
 copy .asf.yaml => chart/templates/rbac/pod-cleanup-role.yaml (58%)
 copy .bash_completion => chart/templates/rbac/pod-cleanup-rolebinding.yaml (53%)
 mode change 100755 => 100644
 create mode 100644 chart/templates/rbac/pod-launcher-role.yaml
 create mode 100644 chart/templates/rbac/pod-launcher-rolebinding.yaml
 create mode 100644 chart/templates/redis/redis-networkpolicy.yaml
 copy tests/kubernetes/pod.yaml => chart/templates/redis/redis-service.yaml (54%)
 create mode 100644 chart/templates/redis/redis-statefulset.yaml
 copy tests/kubernetes/pod.yaml => chart/templates/resourcequota.yaml (62%)
 create mode 100644 chart/templates/scheduler/scheduler-deployment.yaml
 create mode 100644 chart/templates/scheduler/scheduler-networkpolicy.yaml
 copy tests/kubernetes/pod.yaml => chart/templates/scheduler/scheduler-poddisruptionbudget.yaml (54%)
 copy airflow/cli/commands/rotate_fernet_key_command.py => chart/templates/scheduler/scheduler-service.yaml (53%)
 copy scripts/ci/kubernetes/app/secrets.yaml => chart/templates/scheduler/scheduler-serviceaccount.yaml (65%)
 copy scripts/ci/kubernetes/app/secrets.yaml => chart/templates/secrets/elasticsearch-secret.yaml (56%)
 copy scripts/ci/kubernetes/app/secrets.yaml => chart/templates/secrets/fernetkey-secret.yaml (56%)
 create mode 100644 chart/templates/secrets/metadata-connection-secret.yaml
 copy scripts/ci/kubernetes/app/secrets.yaml => chart/templates/secrets/pgbouncer-config-secret.yaml (63%)
 copy scripts/ci/kubernetes/app/secrets.yaml => chart/templates/secrets/pgbouncer-stats-secret.yaml (59%)
 create mode 100644 chart/templates/secrets/redis-secrets.yaml
 copy scripts/ci/kubernetes/app/secrets.yaml => chart/templates/secrets/registry-secret.yaml (62%)
 create mode 100644 chart/templates/secrets/result-backend-connection-secret.yaml
 create mode 100644 chart/templates/statsd/statsd-deployment.yaml
 create mode 100644 chart/templates/statsd/statsd-networkpolicy.yaml
 create mode 100644 chart/templates/statsd/statsd-service.yaml
 create mode 100644 chart/templates/webserver/webserver-deployment.yaml
 create mode 100644 chart/templates/webserver/webserver-networkpolicy.yaml
 copy tests/kubernetes/pod.yaml => chart/templates/webserver/webserver-service.yaml (55%)
 create mode 100644 chart/templates/workers/worker-deployment.yaml
 create mode 100644 chart/templates/workers/worker-kedaautoscaler.yaml
 create mode 100644 chart/templates/workers/worker-networkpolicy.yaml
 copy tests/kubernetes/pod.yaml => chart/templates/workers/worker-service.yaml (54%)
 copy scripts/ci/kubernetes/app/secrets.yaml => chart/templates/workers/worker-serviceaccount.yaml (65%)
 create mode 100644 chart/values.yaml