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/11/09 19:57:17 UTC

[airflow] branch master updated (59eb5de -> 90a1478)

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 59eb5de  Update provider READMEs for up-coming 1.0.0beta1 releases (#12206)
     add 90a1478  Render k8s yaml for tasks via the Airflow UI (#11815)

No new revisions were added by this update.

Summary of changes:
 airflow/cli/cli_parser.py                          |   4 +-
 .../executor_constants.py}                         |  17 ++--
 airflow/executors/executor_loader.py               |  31 ++++---
 airflow/executors/kubernetes_executor.py           | 102 +--------------------
 airflow/jobs/backfill_job.py                       |  12 +--
 airflow/kubernetes/kube_config.py                  |  87 ++++++++++++++++++
 airflow/kubernetes/kubernetes_helper_functions.py  |  46 ++++++++++
 ...3f1493b9_add_k8s_yaml_to_rendered_templates.py} |  30 +++---
 airflow/models/renderedtifields.py                 |  25 ++++-
 airflow/models/taskinstance.py                     |  41 +++++++++
 airflow/settings.py                                |   7 ++
 airflow/www/extensions/init_jinja_globals.py       |   3 +-
 airflow/www/static/css/material-icons.css          |   8 ++
 airflow/www/templates/airflow/dag.html             |  23 +++--
 airflow/www/templates/airflow/task_instance.html   |   8 +-
 airflow/www/templates/appbuilder/custom_icons.html |  34 +++++++
 airflow/www/views.py                               |  60 +++++++++++-
 tests/models/test_renderedtifields.py              |  77 ++++++++++++++++
 tests/models/test_taskinstance.py                  |  67 +++++++++++++-
 tests/www/test_views.py                            |  56 ++++++-----
 20 files changed, 558 insertions(+), 180 deletions(-)
 copy airflow/{api_connexion/schemas/dag_source_schema.py => executors/executor_constants.py} (74%)
 create mode 100644 airflow/kubernetes/kube_config.py
 create mode 100644 airflow/kubernetes/kubernetes_helper_functions.py
 copy airflow/migrations/versions/{5e7d17757c7a_add_pid_field_to_taskinstance.py => 45ba3f1493b9_add_k8s_yaml_to_rendered_templates.py} (55%)
 create mode 100644 airflow/www/templates/appbuilder/custom_icons.html