I am using Kubernetes
executor in airflow and for data management
(sharing data across pod), trying to write data in some mounted directory but the issue that I am facing is how to mount PVC
over the worker pod where that task executes.
Worker pod
spawns only at the time of dag execution
and get deleted after completion of the task. Since the worker pod
is only manageable through the configuration file (airflow.cfg).
How can bind a PVC to worker pod other than used for dags
and logs
?