What information is passed around different components of Airflow?

2018-07-04 Thread Kevin Lam
Hi, We run Apache Airflow as a set of k8s deployments inside of a GKE cluster, similar to the way specified in Mumoshu's github repo: https://github.com/mumoshu/kube-airflow. We are investigating securing our use of Airflow and are wondering about some of Airflow's implementation details.

Re: variables export

2018-07-04 Thread Emmanuel Brard
Hi Michael, Let's assume you use a fernet key and you have two variables defined through the UI with key -> value k_string -> this is a string k_int -> 10 The exporter will produce a compliant JSON: { "k_string": "this is a string", "k_int": 10 } But the importer will fail on k_int