EasyCyril opened a new issue, #57140:
URL: https://github.com/apache/airflow/issues/57140

   ### Official Helm Chart version
   
   1.18.0 (latest released)
   
   ### Apache Airflow version
   
   3.0.2
   
   ### Kubernetes Version
   
   1.31
   
   ### Helm Chart configuration
   
   ~~~
   ingress:
       web:
         enabled: true
         ingressClassName: nginx
   ~~~
   
   ### Docker Image customizations
   
   none
   
   ### What happened
   
   In Helm chart 1.18.0, the semver condition in the webserver ingress is in 
the wrong direction.
   So, it is not possible to enable webserver ingress with airflow 3.0.2
   
   
[airflow/chart/templates/webserver/webserver-ingress.yaml](https://github.com/apache/airflow/blob/48ae6af196270e51ee9e9af853cacf474633c60b/chart/templates/webserver/webserver-ingress.yaml#L23)
   
   ### What you think should happen instead
   
   _No response_
   
   ### How to reproduce
   
   ~~~
   {{- if and .Values.webserver.enabled (semverCompare "<3.0.0" 
.Values.airflowVersion) }}
   ~~~
   
   needs to be replaced by 
   
   ~~~
   {{- if and .Values.webserver.enabled (semverCompare ">3.0.0" 
.Values.airflowVersion) }}
   ~~~
   
   or remove this condition
   
   ### Anything else
   
   _No response_
   
   ### Are you willing to submit PR?
   
   - [ ] Yes I am willing to submit a PR!
   
   ### Code of Conduct
   
   - [x] I agree to follow this project's [Code of 
Conduct](https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md)
   


-- 
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.

To unsubscribe, e-mail: [email protected]

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

Reply via email to