You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
kubernetes.io/ingress.class is an old way to assign ingress to specific ingress class but in newer versions there is a special attribute ingressClassName.
chart implemented both ways but kubernetes.io/ingress.class has hardcoded value, so it is not possible to use non default ingress class name.
Steps To Reproduce
deploy ingress with non default class name.
try to deploy keep hq using this chart.
Additional Information
to fix this need to change kubernetes.io/ingress.class: "nginx" to kubernetes.io/ingress.class: "{{ .Values.global.ingress.className }}"
The text was updated successfully, but these errors were encountered:
Description of the bug
kubernetes.io/ingress.class is an old way to assign ingress to specific ingress class but in newer versions there is a special attribute ingressClassName.
chart implemented both ways but kubernetes.io/ingress.class has hardcoded value, so it is not possible to use non default ingress class name.
Steps To Reproduce
Additional Information
to fix this need to change kubernetes.io/ingress.class: "nginx" to kubernetes.io/ingress.class: "{{ .Values.global.ingress.className }}"
The text was updated successfully, but these errors were encountered: