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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]