Skip to content

Core API: Exact PathMatch #476

Closed
@kate-osborn

Description

@kate-osborn

Support Exact PathMatchType in HTTPRoute resource. See https://gateway-api.sigs.k8s.io/references/spec/#gateway.networking.k8s.io/v1beta1.PathMatchType

Acceptance criteria:

Appendix:
Two locations with the same path but different matching (exact and prefix)

    location = /hello {
        return 200 "exact hello\n";
    }

    location /hello {
        return 200 "prefix hello\n";
    }
curl localhost:8090/hello
exact hello

curl localhost:8090/hello/abc
prefix hello

Aha! Link: https://nginx.aha.io/features/NKG-60

Metadata

Metadata

Assignees

Labels

area/httproute/coreRelates to all Core features of HTTPRouteenhancementNew feature or requestrefinedRequirements are refined and the issue is ready to be implemented.

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions