binoy_shah
02/22/2022, 4:15 PMmeltano ui in Kubernetes as a Deployment+Pod
My doubts when I deploy it on Kubernetes
1. Does Airflow have to run only via the meltano airflow command
2. Does Airflow need to have meltano pipeline codebase packaged in the docker image
3. Can I Publish and run different Meltano pipelines (meltano.yml) on a Remote Airflow installation (helm chart) that is pre-existing and connected to its own Postgres Dbpat_nadolny
02/23/2022, 2:39 PM1. Does Airflow have to run only via theNo, its common especially with a k8s deployment to use the default airflow helm chart and have Airflow just execute Meltano commands and lots of teams already have an Airflow deployment so they do the same. If youre using environment specific configurations you wont get those benefits unless you use thecommandmeltano airflow
meltano airflow .
2. Does Airflow need to have meltano pipeline codebase packaged in the docker imageThis depends on how you want to do it. We have a Meltano image and an Airflow image, the Meltano image contains a fully installed Meltano project that gets called by Airflow.
3. Can I Publish and run different Meltano pipelines (Yes you can do this also!) on a Remote Airflow installation (helm chart) that is pre-existing and connected to its own Postgres Dbmeltano.yml
binoy_shah
02/23/2022, 4:27 PM