Hacker News new | ask | show | jobs
by yoquan 2850 days ago
There is an attempt to create a role based access control by the guys at WePay according to the shared slide "RBAC talk" below [1]. Don't know why their repo [2] can't be accessed now, though.

[1] https://www.meetup.com/ja-JP/Bay-Area-Apache-Airflow-Incubat...

[2] https://github.com/wepay/airflow-webserver

1 comments

The RBAC UI has since been merged into Airflow and is now released in Airflow 1.10.

https://github.com/apache/incubator-airflow/tree/master/airf...

https://github.com/apache/incubator-airflow/commit/05e1861e2...

To enable it, set `rbac = True` under the `webserver` group in your airflow.cfg, or via env var:

    export AIRFLOW__WEBSERVER__RBAC=True
That's great to know, thank you. Eager to try 1.10!