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
The KMinion helm chart is not compatible with Kubernetes >= 1.22 because the networking.k8s.io/v1beta1 API version of Ingress is no longer served, and the helm chart is still using that in the ingress.yaml. Example error while installing KMinion on K8s 1.23:
helm install kminion-test charts/kminion --set ingress.enabled=true
Error: unable to build kubernetes objects from release manifest: unable to recognize "": no matches for kind "Ingress" in version "networking.k8s.io/v1beta1"
Tried some quick fix simply by updating the API version from networking.k8s.io/v1beta1 to networking.k8s.io/v1 but it didn't work because the spec of the Ingress resource has been changed
The KMinion helm chart is not compatible with Kubernetes >= 1.22 because the
networking.k8s.io/v1beta1
API version ofIngress
is no longer served, and the helm chart is still using that in theingress.yaml
. Example error while installing KMinion on K8s 1.23:Tried some quick fix simply by updating the API version from
networking.k8s.io/v1beta1
tonetworking.k8s.io/v1
but it didn't work because thespec
of theIngress
resource has been changedReference: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#ingress-v122
The text was updated successfully, but these errors were encountered: