You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2022/02/02 16:13:37 UTC

[GitHub] [airflow] sajod commented on issue #19589: Unable to enable ingress on Kubernetes 1.22

sajod commented on issue #19589:
URL: https://github.com/apache/airflow/issues/19589#issuecomment-1028105329


   With the helm chart 1.4.0 version and with Kubernetes v1.23 the issue is still on!
   
   I am receiving the upper mentioned error message when I turned ingress on.
   I managed to fix the error by manually editing the chart:
   
   chart/templates/webserver/webserver-ingress.yaml:
   Instead of (line 22):
   `{{- $apiIsStable := semverCompare ">= 1.19.x" (include "kubeVersion" .) -}}`
   I changed to this:
   `{{- $apiIsStable := true -}}`
   
   chart/templates/flower/flower-ingress.yaml
   Instead of (line 23):
   `{{- $apiIsStable := semverCompare ">= 1.19.x" (include "kubeVersion" .) -}}`
   I changed to this:
   `{{- $apiIsStable := true -}}`
   
   I am aware that for the chart version 1.4.0 only Kubernetes 1.21 is supported and I'm using 1.23.
   You can still find this fix useful if you are in a similar situation.


-- 
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: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org