On Ingress creation UI the API used was extensions/v1beta1 but since kubernetes 1.22 the deprecated API is removed.
The UI now uses the new API networking.k8s.io/v1 available since 1.19 to create Ingresses.
On the new API version each path in an Ingress is required to have a corresponding path type (Path type can be one of the following values ImplementationSpecific, Exact, or Prefix). By default Prefix value is used, on later releases the path type will be configurable from the UI itself.
On Ingress creation UI the API used was
extensions/v1beta1
but since kubernetes 1.22 the deprecated API is removed.The UI now uses the new API
networking.k8s.io/v1
available since 1.19 to create Ingresses.On the new API version each path in an Ingress is required to have a corresponding path type (Path type can be one of the following values
ImplementationSpecific
,Exact
, orPrefix
). By defaultPrefix
value is used, on later releases the path type will be configurable from the UI itself.