danielcrisap opened a new issue #16123:
URL: https://github.com/apache/airflow/issues/16123


   Hello 👋  Everyone,
   
   I'm new using Airflow, but I notice that my webservers a not mounting my 
dags with gitSync.
   
   I think that is because a wrong condition on webserver deployment.
   FROM: ⬇️ 
   ```yaml
   semverCompare "<2.0.0" .Values.airflowVersion
   ```
   
https://github.com/apache/airflow/blob/9d06ee8019ecbc07d041ccede15d0e322aa797a3/chart/templates/webserver/webserver-deployment.yaml#L137
   
https://github.com/apache/airflow/blob/9d06ee8019ecbc07d041ccede15d0e322aa797a3/chart/templates/webserver/webserver-deployment.yaml#L181
   
https://github.com/apache/airflow/blob/9d06ee8019ecbc07d041ccede15d0e322aa797a3/chart/templates/webserver/webserver-deployment.yaml#L200
   
   TO: ⬇️ 
   ```yaml
   semverCompare ">=2.0.0" .Values.airflowVersion
   ```
   
https://github.com/apache/airflow/blob/9d06ee8019ecbc07d041ccede15d0e322aa797a3/chart/templates/webserver/webserver-deployment.yaml#L43
   
   I checked the Worker deployment and they are not using this condition clause
   
https://github.com/apache/airflow/blob/master/chart/templates/workers/worker-deployment.yaml#L168
   
https://github.com/apache/airflow/blob/master/chart/templates/workers/worker-deployment.yaml#L182
   
https://github.com/apache/airflow/blob/master/chart/templates/workers/worker-deployment.yaml#L258
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to