Try installing Airflow on the Azure cluster using the Helm chart apache-airflow/airflow:
helm install airflow apache-airflow/airflow -n airflow -f airflow/values.yaml --debug
However, one of my DAGs requires a third-party package. Is there a way to specify that during the installation?
I checked the values.yaml schema JSON here (https://github.com/apache/airflow/blob/main/chart/values.schema.json), but I couldn’t find a relevant setting entry.
There seems a solution is to extend the image, but I feel it’s overkill.
You can use requirements.txt and specify there your package:
your_package==your_package_version
Then you need to include the file to your values.yaml file and create confimap. Then use helm upgrade