IngressPathType
Enum net8.0
Specifies the type of path matching used in a Kubernetes Ingress rule.
namespace Aspire.Hosting.Kubernetes;
public enum IngressPathTypeEnum Members
Section titled Enum MembersPrefixMatches based on a URL path prefix split by /. Matching is case-sensitive and done element-by-element. For example, /api matches /api, /api/, and /api/v1 but not /apiv1.
ExactMatches the URL path exactly and with case sensitivity.
ImplementationSpecificMatching is delegated to the ingress controller. Check the controller's documentation for the supported matching semantics.