├── .custom-gcl.yml ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug.md │ ├── config.yml │ ├── conformance-test.md │ ├── documentation.md │ └── enhancement.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── crd-validation.yml │ ├── kal.yml │ └── mkdocs-nav-validation.yml ├── .gitignore ├── .golangci-kal.yml ├── .golangci.yml ├── .openvex └── templates │ ├── README.md │ └── main.openvex.json ├── .yamllint.yaml ├── CHANGELOG.md ├── CHANGELOG ├── 0.x-CHANGELOG.md ├── 1.0-CHANGELOG.md ├── 1.1-CHANGELOG.md ├── 1.1-TEAM.md ├── 1.2-CHANGELOG.md ├── 1.2-TEAM.md ├── 1.3-CHANGELOG.md ├── 1.3-TEAM.md ├── 1.4-CHANGELOG.md └── 1.4-TEAM.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── OWNERS ├── OWNERS_ALIASES ├── README.md ├── RELEASE.md ├── RELEASE_MANAGEMENT.md ├── SECURITY_CONTACTS ├── apis ├── doc.go ├── v1 │ ├── backendtlspolicy_types.go │ ├── doc.go │ ├── gateway_types.go │ ├── gatewayclass_types.go │ ├── gatewayclass_types_overrides.go │ ├── gatewayclass_types_test.go │ ├── grpcroute_types.go │ ├── httproute_types.go │ ├── object_reference_types.go │ ├── policy_types.go │ ├── shared_types.go │ ├── util │ │ └── validation │ │ │ ├── gatewayclass.go │ │ │ └── gatewayclass_test.go │ ├── zz_generated.deepcopy.go │ └── zz_generated.register.go ├── v1alpha2 │ ├── doc.go │ ├── grpcroute_types.go │ ├── object_reference_types.go │ ├── policy_types.go │ ├── referencegrant_types.go │ ├── shared_types.go │ ├── tcproute_types.go │ ├── tlsroute_types.go │ ├── udproute_types.go │ ├── util │ │ └── validation │ │ │ └── gatewayclass.go │ ├── zz_generated.deepcopy.go │ └── zz_generated.register.go ├── v1alpha3 │ ├── backendtlspolicy_types.go │ ├── doc.go │ ├── shared_types.go │ ├── tlsroute_types.go │ ├── zz_generated.deepcopy.go │ └── zz_generated.register.go └── v1beta1 │ ├── doc.go │ ├── gateway_types.go │ ├── gatewayclass_types.go │ ├── httproute_types.go │ ├── object_reference_types.go │ ├── referencegrant_types.go │ ├── shared_types.go │ ├── util │ └── validation │ │ ├── gatewayclass.go │ │ └── gatewayclass_test.go │ ├── zz_generated.deepcopy.go │ └── zz_generated.register.go ├── apisx ├── doc.go └── v1alpha1 │ ├── doc.go │ ├── shared_types.go │ ├── xbackendtrafficpolicy_types.go │ ├── xlistenerset_types.go │ ├── xmesh_types.go │ ├── zz_generated.deepcopy.go │ └── zz_generated.register.go ├── applyconfiguration ├── apis │ ├── v1 │ │ ├── allowedlisteners.go │ │ ├── allowedroutes.go │ │ ├── backendobjectreference.go │ │ ├── backendref.go │ │ ├── backendtlspolicy.go │ │ ├── backendtlspolicyspec.go │ │ ├── backendtlspolicyvalidation.go │ │ ├── commonroutespec.go │ │ ├── cookieconfig.go │ │ ├── forwardbodyconfig.go │ │ ├── fraction.go │ │ ├── frontendtlsconfig.go │ │ ├── frontendtlsvalidation.go │ │ ├── gateway.go │ │ ├── gatewaybackendtls.go │ │ ├── gatewayclass.go │ │ ├── gatewayclassspec.go │ │ ├── gatewayclassstatus.go │ │ ├── gatewayinfrastructure.go │ │ ├── gatewayspec.go │ │ ├── gatewayspecaddress.go │ │ ├── gatewaystatus.go │ │ ├── gatewaystatusaddress.go │ │ ├── gatewaytlsconfig.go │ │ ├── grpcauthconfig.go │ │ ├── grpcbackendref.go │ │ ├── grpcheadermatch.go │ │ ├── grpcmethodmatch.go │ │ ├── grpcroute.go │ │ ├── grpcroutefilter.go │ │ ├── grpcroutematch.go │ │ ├── grpcrouterule.go │ │ ├── grpcroutespec.go │ │ ├── grpcroutestatus.go │ │ ├── httpauthconfig.go │ │ ├── httpbackendref.go │ │ ├── httpcorsfilter.go │ │ ├── httpexternalauthfilter.go │ │ ├── httpheader.go │ │ ├── httpheaderfilter.go │ │ ├── httpheadermatch.go │ │ ├── httppathmatch.go │ │ ├── httppathmodifier.go │ │ ├── httpqueryparammatch.go │ │ ├── httprequestmirrorfilter.go │ │ ├── httprequestredirectfilter.go │ │ ├── httproute.go │ │ ├── httproutefilter.go │ │ ├── httproutematch.go │ │ ├── httprouteretry.go │ │ ├── httprouterule.go │ │ ├── httproutespec.go │ │ ├── httproutestatus.go │ │ ├── httproutetimeouts.go │ │ ├── httpurlrewritefilter.go │ │ ├── listener.go │ │ ├── listenernamespaces.go │ │ ├── listenerstatus.go │ │ ├── listenertlsconfig.go │ │ ├── localobjectreference.go │ │ ├── localparametersreference.go │ │ ├── localpolicytargetreference.go │ │ ├── localpolicytargetreferencewithsectionname.go │ │ ├── objectreference.go │ │ ├── parametersreference.go │ │ ├── parentreference.go │ │ ├── policyancestorstatus.go │ │ ├── policystatus.go │ │ ├── routegroupkind.go │ │ ├── routenamespaces.go │ │ ├── routeparentstatus.go │ │ ├── routestatus.go │ │ ├── secretobjectreference.go │ │ ├── sessionpersistence.go │ │ ├── subjectaltname.go │ │ ├── supportedfeature.go │ │ ├── tlsconfig.go │ │ └── tlsportconfig.go │ ├── v1alpha2 │ │ ├── grpcroute.go │ │ ├── localpolicytargetreference.go │ │ ├── localpolicytargetreferencewithsectionname.go │ │ ├── policyancestorstatus.go │ │ ├── policystatus.go │ │ ├── referencegrant.go │ │ ├── tcproute.go │ │ ├── tcprouterule.go │ │ ├── tcproutespec.go │ │ ├── tcproutestatus.go │ │ ├── tlsroute.go │ │ ├── tlsrouterule.go │ │ ├── tlsroutespec.go │ │ ├── tlsroutestatus.go │ │ ├── udproute.go │ │ ├── udprouterule.go │ │ ├── udproutespec.go │ │ └── udproutestatus.go │ ├── v1alpha3 │ │ ├── backendtlspolicy.go │ │ ├── backendtlspolicyspec.go │ │ ├── backendtlspolicyvalidation.go │ │ ├── subjectaltname.go │ │ ├── tlsroute.go │ │ ├── tlsrouterule.go │ │ ├── tlsroutespec.go │ │ └── tlsroutestatus.go │ └── v1beta1 │ │ ├── gateway.go │ │ ├── gatewayclass.go │ │ ├── httproute.go │ │ ├── referencegrant.go │ │ ├── referencegrantfrom.go │ │ ├── referencegrantspec.go │ │ └── referencegrantto.go ├── apisx │ └── v1alpha1 │ │ ├── backendtrafficpolicyspec.go │ │ ├── budgetdetails.go │ │ ├── listenerentry.go │ │ ├── listenerentrystatus.go │ │ ├── listenersetspec.go │ │ ├── listenersetstatus.go │ │ ├── meshspec.go │ │ ├── meshstatus.go │ │ ├── parentgatewayreference.go │ │ ├── requestrate.go │ │ ├── retryconstraint.go │ │ ├── xbackendtrafficpolicy.go │ │ ├── xlistenerset.go │ │ └── xmesh.go ├── internal │ └── internal.go └── utils.go ├── cloudbuild.yaml ├── code-of-conduct.md ├── config └── crd │ ├── experimental │ ├── gateway.networking.k8s.io_backendtlspolicies.yaml │ ├── gateway.networking.k8s.io_gatewayclasses.yaml │ ├── gateway.networking.k8s.io_gateways.yaml │ ├── gateway.networking.k8s.io_grpcroutes.yaml │ ├── gateway.networking.k8s.io_httproutes.yaml │ ├── gateway.networking.k8s.io_referencegrants.yaml │ ├── gateway.networking.k8s.io_tcproutes.yaml │ ├── gateway.networking.k8s.io_tlsroutes.yaml │ ├── gateway.networking.k8s.io_udproutes.yaml │ ├── gateway.networking.x-k8s.io_xbackendtrafficpolicies.yaml │ ├── gateway.networking.x-k8s.io_xlistenersets.yaml │ ├── gateway.networking.x-k8s.io_xmeshes.yaml │ └── kustomization.yaml │ ├── kustomization.yaml │ └── standard │ ├── gateway.networking.k8s.io_backendtlspolicies.yaml │ ├── gateway.networking.k8s.io_gatewayclasses.yaml │ ├── gateway.networking.k8s.io_gateways.yaml │ ├── gateway.networking.k8s.io_grpcroutes.yaml │ ├── gateway.networking.k8s.io_httproutes.yaml │ └── gateway.networking.k8s.io_referencegrants.yaml ├── conformance ├── OWNERS ├── apis │ └── v1 │ │ ├── conformancereport.go │ │ ├── doc.go │ │ ├── groupversion.go │ │ ├── profilereport.go │ │ ├── result.go │ │ └── statistics.go ├── base │ └── manifests.yaml ├── conformance.go ├── conformance_test.go ├── echo-basic │ ├── .gitignore │ ├── .go.mod │ ├── .go.sum │ ├── echo-basic.go │ ├── echo-basic_test.go │ ├── grpc │ │ ├── grpc.go │ │ └── grpcechoserver_test.go │ ├── grpcecho.proto │ └── grpcechoserver │ │ ├── grpcecho.pb.go │ │ └── grpcecho_grpc.pb.go ├── embed.go ├── go.mod ├── go.sum ├── mesh │ └── manifests.yaml ├── reports │ ├── README.md │ ├── v0.7.1 │ │ ├── cilium │ │ │ ├── README.md │ │ │ └── v1.14.0-report.yaml │ │ ├── istio-istio │ │ │ ├── README.md │ │ │ └── pull-46148-report.yaml │ │ ├── kong-kubernetes-ingress-controller │ │ │ ├── 2.10.3-report.yaml │ │ │ └── README.md │ │ ├── kumahq-kuma │ │ │ ├── 0.0.0-preview.vcf063c043-report.yaml │ │ │ └── README.md │ │ ├── nginx-nginx-gateway-fabric │ │ │ ├── README.md │ │ │ └── v0.5.0-report.yaml │ │ └── projectcontour-contour │ │ │ ├── README.md │ │ │ └── f6c112e60a40ceb9d448354473a8fe7d1a726790-report.yaml │ ├── v0.8.0 │ │ ├── envoy-gateway │ │ │ ├── README.md │ │ │ └── latest-report.yaml │ │ ├── kumahq-kuma │ │ │ ├── 2.4.1-report.yaml │ │ │ └── README.md │ │ ├── nginx-nginx-gateway-fabric │ │ │ ├── README.md │ │ │ └── v0.6.0-report.yaml │ │ └── projectcontour-contour │ │ │ ├── README.md │ │ │ └── v1.26.0-report.yaml │ ├── v0.8.1 │ │ ├── cilium │ │ │ ├── README.md │ │ │ └── v1.15.0-pre.1-report.yaml │ │ ├── kong-kubernetes-ingress-controller │ │ │ ├── README.md │ │ │ └── v2.12.0-report.yaml │ │ ├── nginx-nginx-gateway-fabric │ │ │ ├── README.md │ │ │ └── v1.0.0-report.yaml │ │ └── projectcontour-contour │ │ │ ├── README.md │ │ │ ├── experimental-v1.27.4-default-report.yaml │ │ │ ├── v1.27.0-report.yaml │ │ │ ├── v1.27.1-report.yaml │ │ │ ├── v1.27.2-report.yaml │ │ │ └── v1.27.3-report.yaml │ ├── v1.0.0 │ │ ├── azure-application-gateway-for-containers │ │ │ ├── README.md │ │ │ └── v1.0.0-report.yaml │ │ ├── cilium │ │ │ ├── README.md │ │ │ └── v1.15.0-pre.3-report.yaml │ │ ├── envoy-gateway │ │ │ ├── README.md │ │ │ └── v0.6.0-report.yaml │ │ ├── gloo-gateway │ │ │ ├── README.md │ │ │ └── v1.17.4-report.yaml │ │ ├── istio-istio │ │ │ ├── 1.20-report.yaml │ │ │ └── README.md │ │ ├── kong-kubernetes-ingress-controller │ │ │ ├── README.md │ │ │ ├── v3.0.2-report.yaml │ │ │ └── v3.1.1-report.yaml │ │ ├── kumahq-kuma │ │ │ ├── 2.6.0-report.yaml │ │ │ └── README.md │ │ ├── nginx-nginx-gateway-fabric │ │ │ ├── README.md │ │ │ ├── v1.1.0-report.yaml │ │ │ └── v1.2.0-report.yaml │ │ └── projectcontour-contour │ │ │ ├── README.md │ │ │ ├── experimental-v1.28.5-default-report.yaml │ │ │ ├── experimental-v1.28.6-default-report.yaml │ │ │ ├── experimental-v1.29.1-default-report.yaml │ │ │ ├── experimental-v1.29.2-default-report.yaml │ │ │ ├── v1.28.1-report.yaml │ │ │ ├── v1.28.2-report.yaml │ │ │ ├── v1.28.3-report.yaml │ │ │ ├── v1.28.4-report.yaml │ │ │ └── v1.29.0-report.yaml │ ├── v1.1.0 │ │ ├── airlock-microgateway │ │ │ ├── README.md │ │ │ ├── experimental-4.4.0-default-report.yaml │ │ │ ├── standard-4.5.0-default-report.yaml │ │ │ ├── standard-4.6.0-default-report.yaml │ │ │ └── standard-4.7.0-default-report.yaml │ │ ├── azure-application-gateway-for-containers │ │ │ ├── README.md │ │ │ └── standard-v1.1.0-default-report.yaml │ │ ├── cilium-cilium │ │ │ ├── README.md │ │ │ └── experimental-1.16-default-report.yaml │ │ ├── envoy-gateway │ │ │ ├── README.md │ │ │ └── experimental-v1.1.0-default-report.yaml │ │ ├── gke-gateway │ │ │ ├── README.md │ │ │ ├── standard-1.30.3-gxlb-report.yaml │ │ │ ├── standard-1.30.3-rilb-report.yaml │ │ │ └── standard-1.30.3-rxlb-report.yaml │ │ ├── gloo-gateway │ │ │ ├── README.md │ │ │ └── experimental-v1.18.0-beta30-default-report.yaml │ │ ├── istio-istio │ │ │ ├── README.md │ │ │ └── experimental-1.22-default-report.yaml │ │ ├── kong-kubernetes-ingress-controller │ │ │ ├── README.md │ │ │ ├── experimental-v3.2.0-expressions-report.yaml │ │ │ └── experimental-v3.3.1-expressions-report.yaml │ │ ├── nginx-nginx-gateway-fabric │ │ │ ├── README.md │ │ │ ├── experimental-1.4.0-default-report.yaml │ │ │ └── standard-1.3.0-default-report.yaml │ │ ├── projectcontour-contour │ │ │ ├── README.md │ │ │ └── experimental-v1.30.0-default-report.yaml │ │ └── traefik-traefik │ │ │ ├── README.md │ │ │ └── experimental-v3.1.0-default-report.yaml │ ├── v1.1.1 │ │ └── airlock-microgateway │ │ │ ├── README.md │ │ │ ├── standard-4.5.0-default-report.yaml │ │ │ ├── standard-4.6.0-default-report.yaml │ │ │ └── standard-4.7.0-default-report.yaml │ ├── v1.2.0 │ │ ├── airlock-microgateway │ │ │ ├── README.md │ │ │ ├── standard-4.5.0-default-report.yaml │ │ │ ├── standard-4.6.0-default-report.yaml │ │ │ └── standard-4.7.0-default-report.yaml │ │ ├── cilium-cilium │ │ │ ├── README.md │ │ │ └── experimental-1.17-default-report.yaml │ │ ├── envoy-gateway │ │ │ ├── README.md │ │ │ └── experimental-v1.2.0-default-report.yaml │ │ ├── gloo-gateway │ │ │ ├── README.md │ │ │ └── experimental-v1.18.0-report.yaml │ │ ├── istio-istio │ │ │ ├── README.md │ │ │ └── experimental-1.24-default-report.yaml │ │ ├── kong-gateway-operator │ │ │ ├── README.md │ │ │ └── standard-v1.4.0-expressions-report.yaml │ │ ├── kong-kubernetes-ingress-controller │ │ │ ├── README.md │ │ │ └── experimental-v3.2.0-244-gea4944bb0-expressions-report.yaml │ │ ├── nginx-nginx-gateway-fabric │ │ │ ├── README.md │ │ │ └── experimental-1.5.0-default-report.yaml │ │ └── traefik-traefik │ │ │ ├── README.md │ │ │ └── experimental-v3.2.0-default-report.yaml │ ├── v1.2.1 │ │ ├── airlock-microgateway │ │ │ ├── README.md │ │ │ ├── experimental-4.5.0-default-report.yaml │ │ │ ├── standard-4.6.0-default-report.yaml │ │ │ └── standard-4.7.0-default-report.yaml │ │ ├── azure-application-gateway-for-containers │ │ │ ├── README.md │ │ │ └── standard-v1.2.1-default-report.yaml │ │ ├── cilium-cilium │ │ │ ├── README.md │ │ │ └── experimental-1.17-default-report.yaml │ │ ├── envoy-gateway │ │ │ ├── README.md │ │ │ └── experimental-v1.3.1-default-report.yaml │ │ ├── istio-istio │ │ │ ├── README.md │ │ │ └── experimental-1.24-default-report.yaml │ │ ├── kgateway │ │ │ ├── README.md │ │ │ └── v2.0.0-report.yaml │ │ ├── kong-kubernetes-ingress-controller │ │ │ ├── README.md │ │ │ ├── experimental-v3.4.0-expressions-report.yaml │ │ │ └── experimental-v3.4.0-traditional_compatible-report.yaml │ │ ├── kubvernor │ │ │ ├── README.md │ │ │ └── kubvernor-conformance-output-1.2.1.yaml │ │ ├── nginx-nginx-gateway-fabric │ │ │ ├── README.md │ │ │ ├── experimental-1.6.0-default-report.yaml │ │ │ ├── experimental-2.0.2-default-report.yaml │ │ │ └── experimental-2.2.0-default-report.yaml │ │ ├── projectcontour-contour │ │ │ ├── README.md │ │ │ └── experimental-v1.31.0-default-report.yaml │ │ └── traefik-traefik │ │ │ ├── README.md │ │ │ └── experimental-v3.2.2-default-report.yaml │ ├── v1.3.0 │ │ ├── agentgateway-agentgateway │ │ │ ├── README.md │ │ │ └── experimental-0.6.0-report.yaml │ │ ├── airlock-microgateway │ │ │ ├── README.md │ │ │ ├── experimental-4.6.0-default-report.yaml │ │ │ └── experimental-4.7.0-default-report.yaml │ │ ├── buoyant-enterprise-for-linkerd │ │ │ ├── README.md │ │ │ ├── run-conformance.sh │ │ │ └── standard-2.18-default-report.yaml │ │ ├── cilium-cilium │ │ │ ├── README.md │ │ │ └── experimental-main-default-report.yaml │ │ ├── cloud-provider-kind │ │ │ ├── README.md │ │ │ └── standard-v0.8.0-alpha.1-default-report.yaml │ │ ├── envoy-gateway │ │ │ ├── README.md │ │ │ ├── experimental-v1.5.0-default-report.yaml │ │ │ └── experimental-v1.5.0-gateway-namespace-mode-report.yaml │ │ ├── gke-gateway │ │ │ ├── README.md │ │ │ └── standard-1.33.4-managed-gxlb-report.yaml │ │ ├── istio-istio │ │ │ ├── README.md │ │ │ └── experimental-1.26.1-default-report.yaml │ │ ├── kgateway │ │ │ ├── README.md │ │ │ └── v2.1.0-main-report.yaml │ │ ├── linkerd-linkerd │ │ │ ├── README.md │ │ │ ├── run-conformance.sh │ │ │ └── standard-2.18-default-report.yaml │ │ ├── nginx-nginx-gateway-fabric │ │ │ ├── README.md │ │ │ ├── experimental-2.0.0-default-report.yaml │ │ │ ├── experimental-2.1.0-default-report.yaml │ │ │ └── experimental-2.2.0-default-report.yaml │ │ └── traefik-traefik │ │ │ ├── README.md │ │ │ └── experimental-v3.5.0-default-report.yaml │ └── v1.4.0 │ │ ├── agentgateway-agentgateway │ │ ├── README.md │ │ └── v2.2.0-report.yaml │ │ ├── airlock-microgateway │ │ ├── README.md │ │ └── experimental-4.8.0-alpha1-default-report.yaml │ │ ├── cilium │ │ ├── README.md │ │ └── experimental-v1.19.0-pre.2-default-report.yaml │ │ ├── envoy-gateway │ │ ├── README.md │ │ ├── experimental-v1.6.0-default-report.yaml │ │ └── experimental-v1.6.0-gateway-namespace-mode-report.yaml │ │ ├── gke-gateway │ │ ├── README.md │ │ └── standard-1.43.1-rxlb-report.yaml │ │ ├── istio-istio │ │ ├── 1.28.0-default-report.yaml │ │ └── README.md │ │ ├── kgateway │ │ ├── README.md │ │ └── v2.1.0-report.yaml │ │ └── traefik-traefik │ │ ├── README.md │ │ └── experimental-v3.6.0-default-report.yaml ├── tests │ ├── backendtlspolicy-conflict-resolution.go │ ├── backendtlspolicy-conflict-resolution.yaml │ ├── backendtlspolicy-invalid-ca-certificate-ref.go │ ├── backendtlspolicy-invalid-ca-certificate-ref.yaml │ ├── backendtlspolicy-invalid-kind.go │ ├── backendtlspolicy-invalid-kind.yaml │ ├── backendtlspolicy-observed-generation-bump.go │ ├── backendtlspolicy-observed-generation-bump.yaml │ ├── backendtlspolicy-san.go │ ├── backendtlspolicy-san.yaml │ ├── backendtlspolicy.go │ ├── backendtlspolicy.yaml │ ├── gateway-http-listener-isolation-with-hostname-intersection.yaml │ ├── gateway-http-listener-isolation.go │ ├── gateway-http-listener-isolation.yaml │ ├── gateway-infrastructure.go │ ├── gateway-infrastructure.yaml │ ├── gateway-invalid-route-kind.go │ ├── gateway-invalid-route-kind.yaml │ ├── gateway-invalid-tls-configuration.go │ ├── gateway-invalid-tls-configuration.yaml │ ├── gateway-modify-listeners.go │ ├── gateway-modify-listeners.yaml │ ├── gateway-observed-generation-bump.go │ ├── gateway-observed-generation-bump.yaml │ ├── gateway-optional-address-value.go │ ├── gateway-optional-address-value.yaml │ ├── gateway-secret-invalid-reference-grant.go │ ├── gateway-secret-invalid-reference-grant.yaml │ ├── gateway-secret-missing-reference-grant.go │ ├── gateway-secret-missing-reference-grant.yaml │ ├── gateway-secret-reference-grant-all-in-namespace.go │ ├── gateway-secret-reference-grant-all-in-namespace.yaml │ ├── gateway-secret-reference-grant-specific.go │ ├── gateway-secret-reference-grant-specific.yaml │ ├── gateway-static-addresses.go │ ├── gateway-static-addresses.yaml │ ├── gateway-with-attached-routes-with-port-8080.yaml │ ├── gateway-with-attached-routes.go │ ├── gateway-with-attached-routes.yaml │ ├── gatewayclass-observed-generation-bump.go │ ├── gatewayclass-observed-generation-bump.yaml │ ├── grpcroute-exact-method-matching.go │ ├── grpcroute-exact-method-matching.yaml │ ├── grpcroute-header-matching.go │ ├── grpcroute-header-matching.yaml │ ├── grpcroute-listener-hostname-matching.go │ ├── grpcroute-listener-hostname-matching.yaml │ ├── grpcroute-named-rule.go │ ├── grpcroute-named-rule.yaml │ ├── grpcroute-weight.go │ ├── grpcroute-weight.yaml │ ├── httproute-303-redirect.go │ ├── httproute-303-redirect.yaml │ ├── httproute-307-redirect.go │ ├── httproute-307-redirect.yaml │ ├── httproute-308-redirect.go │ ├── httproute-308-redirect.yaml │ ├── httproute-backend-protocol-h2c.go │ ├── httproute-backend-protocol-h2c.yaml │ ├── httproute-backend-protocol-websocket.go │ ├── httproute-backend-protocol-websocket.yaml │ ├── httproute-cors-allow-credentials-behavior.go │ ├── httproute-cors-allow-credentials-behavior.yaml │ ├── httproute-cross-namespace.go │ ├── httproute-cross-namespace.yaml │ ├── httproute-disallowed-kind.go │ ├── httproute-disallowed-kind.yaml │ ├── httproute-exact-path-matching.go │ ├── httproute-exact-path-matching.yaml │ ├── httproute-header-matching.go │ ├── httproute-header-matching.yaml │ ├── httproute-hostname-intersection.go │ ├── httproute-hostname-intersection.yaml │ ├── httproute-https-listener.go │ ├── httproute-https-listener.yaml │ ├── httproute-invalid-backendref-unknown-kind.go │ ├── httproute-invalid-backendref-unknown-kind.yaml │ ├── httproute-invalid-cross-namespace-backend-ref.go │ ├── httproute-invalid-cross-namespace-backend-ref.yaml │ ├── httproute-invalid-cross-namespace-parent-ref.go │ ├── httproute-invalid-cross-namespace-parent-ref.yaml │ ├── httproute-invalid-nonexistent-backendref.go │ ├── httproute-invalid-nonexistent-backendref.yaml │ ├── httproute-invalid-parentref-not-matching-listener-port.go │ ├── httproute-invalid-parentref-not-matching-listener-port.yaml │ ├── httproute-invalid-parentref-not-matching-section-name.go │ ├── httproute-invalid-parentref-not-matching-section-name.yaml │ ├── httproute-invalid-parentref-section-name-not-matching-port.go │ ├── httproute-invalid-parentref-section-name-not-matching-port.yaml │ ├── httproute-invalid-reference-grant.go │ ├── httproute-invalid-reference-grant.yaml │ ├── httproute-listener-hostname-matching.go │ ├── httproute-listener-hostname-matching.yaml │ ├── httproute-listener-port-matching.go │ ├── httproute-listener-port-matching.yaml │ ├── httproute-matching-across-routes.go │ ├── httproute-matching-across-routes.yaml │ ├── httproute-matching.go │ ├── httproute-matching.yaml │ ├── httproute-method-matching.go │ ├── httproute-method-matching.yaml │ ├── httproute-named-rule.go │ ├── httproute-named-rule.yaml │ ├── httproute-observed-generation-bump.go │ ├── httproute-observed-generation-bump.yaml │ ├── httproute-partially-invalid-via-invalid-reference-grant.go │ ├── httproute-partially-invalid-via-invalid-reference-grant.yaml │ ├── httproute-path-match-order.go │ ├── httproute-path-match-order.yaml │ ├── httproute-query-param-matching.go │ ├── httproute-query-param-matching.yaml │ ├── httproute-redirect-host-and-status.go │ ├── httproute-redirect-host-and-status.yaml │ ├── httproute-redirect-path.go │ ├── httproute-redirect-path.yaml │ ├── httproute-redirect-port-and-scheme.go │ ├── httproute-redirect-port-and-scheme.yaml │ ├── httproute-redirect-port.go │ ├── httproute-redirect-port.yaml │ ├── httproute-redirect-scheme.go │ ├── httproute-redirect-scheme.yaml │ ├── httproute-reference-grant.go │ ├── httproute-reference-grant.yaml │ ├── httproute-request-header-modifier-backend-weights.go │ ├── httproute-request-header-modifier-backend-weights.yaml │ ├── httproute-request-header-modifier-backend.yaml │ ├── httproute-request-header-modifier.go │ ├── httproute-request-header-modifier.yaml │ ├── httproute-request-mirror.go │ ├── httproute-request-mirror.yaml │ ├── httproute-request-multiple-mirrors.go │ ├── httproute-request-multiple-mirrors.yaml │ ├── httproute-request-percentage-mirror.go │ ├── httproute-request-percentage-mirror.yaml │ ├── httproute-response-header-modifier.go │ ├── httproute-response-header-modifier.yaml │ ├── httproute-rewrite-host.go │ ├── httproute-rewrite-host.yaml │ ├── httproute-rewrite-path.go │ ├── httproute-rewrite-path.yaml │ ├── httproute-service-types.go │ ├── httproute-service-types.yaml │ ├── httproute-simple-same-namespace.go │ ├── httproute-simple-same-namespace.yaml │ ├── httproute-timeout-backend-request.go │ ├── httproute-timeout-backend-request.yaml │ ├── httproute-timeout-request.go │ ├── httproute-timeout-request.yaml │ ├── httproute-weight.go │ ├── httproute-weight.yaml │ ├── main.go │ ├── mesh │ │ ├── grpcroute-weight.go │ │ ├── grpcroute-weight.yaml │ │ ├── httproute-303-redirect.go │ │ ├── httproute-303-redirect.yaml │ │ ├── httproute-307-redirect.go │ │ ├── httproute-307-redirect.yaml │ │ ├── httproute-308-redirect.go │ │ ├── httproute-308-redirect.yaml │ │ ├── httproute-matching.go │ │ ├── httproute-matching.yaml │ │ ├── httproute-named-rule.go │ │ ├── httproute-named-rule.yaml │ │ ├── httproute-query-param-matching.go │ │ ├── httproute-query-param-matching.yaml │ │ ├── httproute-redirect-host-and-status.go │ │ ├── httproute-redirect-host-and-status.yaml │ │ ├── httproute-redirect-path.go │ │ ├── httproute-redirect-path.yaml │ │ ├── httproute-redirect-port.go │ │ ├── httproute-redirect-port.yaml │ │ ├── httproute-redirect-scheme.go │ │ ├── httproute-redirect-scheme.yaml │ │ ├── httproute-request-header-modifier-backend.yaml │ │ ├── httproute-request-header-modifier.go │ │ ├── httproute-request-header-modifier.yaml │ │ ├── httproute-rewrite-path.go │ │ ├── httproute-rewrite-path.yaml │ │ ├── httproute-simple-same-namespace.go │ │ ├── httproute-simple-same-namespace.yaml │ │ ├── httproute-weight.go │ │ ├── httproute-weight.yaml │ │ ├── main.go │ │ ├── mesh-basic.go │ │ ├── mesh-consumer-route.go │ │ ├── mesh-consumer-route.yaml │ │ ├── mesh-frontend-hostname.go │ │ ├── mesh-frontend.go │ │ ├── mesh-frontend.yaml │ │ ├── mesh-ports.go │ │ ├── mesh-ports.yaml │ │ ├── mesh-split.go │ │ └── mesh-split.yaml │ ├── tlsroute-invalid-reference-grant.go │ ├── tlsroute-invalid-reference-grant.yaml │ ├── tlsroute-simple-same-namespace.go │ ├── tlsroute-simple-same-namespace.yaml │ ├── udproute-simple.go │ └── udproute-simple.yaml └── utils │ ├── config │ └── timeout.go │ ├── echo │ ├── parse.go │ └── pod.go │ ├── flags │ └── flags.go │ ├── grpc │ └── grpc.go │ ├── http │ ├── http.go │ └── mirror.go │ ├── kubernetes │ ├── apply.go │ ├── apply_test.go │ ├── certificate.go │ ├── helpers.go │ ├── helpers_test.go │ └── logs.go │ ├── roundtripper │ └── roundtripper.go │ ├── suite │ ├── conformance.go │ ├── conformance_test.go │ ├── profiles.go │ ├── reports.go │ ├── reports_test.go │ ├── suite.go │ └── suite_test.go │ ├── tlog │ ├── tlog.go │ └── tlog_test.go │ ├── tls │ └── tls.go │ └── weight │ ├── senders.go │ └── weight.go ├── crd-ref-docs.yaml ├── docker ├── Dockerfile.echo-advanced └── Dockerfile.echo-basic ├── docs ├── 404.html └── index.html ├── examples ├── experimental │ ├── backend-tls.yaml │ ├── basic-tcp.yaml │ ├── destination-port-matching-tcp.yaml │ ├── frontend-cert-validation.yaml │ ├── http-response-header.yaml │ ├── http-route-rule-name.yaml │ ├── http-route-timeouts │ │ └── timeout-example.yaml │ ├── v1alpha2 │ │ └── tls-routing │ │ │ ├── gateway.yaml │ │ │ └── tls-route.yaml │ └── v1alpha3 │ │ └── tls-routing │ │ ├── gateway.yaml │ │ └── tls-route.yaml └── standard │ ├── 0-namespaces.yaml │ ├── backendtlspolicy │ ├── backendtlspolicy-ca-certs.yaml │ └── backendtlspolicy-system-certs.yaml │ ├── basic-grpc.yaml │ ├── basic-http.yaml │ ├── cross-namespace-routing │ ├── 0-namespaces.yaml │ ├── gateway.yaml │ ├── site-route.yaml │ └── store-route.yaml │ ├── default-match-http.yaml │ ├── gateway-addresses.yaml │ ├── grpc-filter.yaml │ ├── grpc-routing │ ├── bar-grpcroute.yaml │ ├── foo-grpcroute.yaml │ ├── gateway.yaml │ └── reflection-grpcroute.yaml │ ├── http-filter.yaml │ ├── http-redirect-path.yaml │ ├── http-redirect-rewrite │ ├── gateway-redirect-http-https.yaml │ ├── httproute-redirect-303.yaml │ ├── httproute-redirect-307.yaml │ ├── httproute-redirect-308.yaml │ ├── httproute-redirect-full.yaml │ ├── httproute-redirect-http.yaml │ ├── httproute-redirect-https.yaml │ ├── httproute-redirect-prefix.yaml │ ├── httproute-rewrite-full-path.yaml │ ├── httproute-rewrite-prefix-path.yaml │ └── httproute-rewrite.yaml │ ├── http-redirect.yaml │ ├── http-request-header-add.yaml │ ├── http-request-header-remove.yaml │ ├── http-request-header-set.yaml │ ├── http-request-mirroring │ └── httproute-mirroring.yaml │ ├── http-rewrite.yaml │ ├── http-route-attachment │ ├── gateway-namespaces.yaml │ ├── gateway-strict.yaml │ └── httproute.yaml │ ├── http-routing │ ├── bar-httproute.yaml │ ├── foo-httproute.yaml │ └── gateway.yaml │ ├── httproute.yaml │ ├── multicluster │ ├── 0-namespaces.yaml │ ├── httproute-gamma.yaml │ ├── httproute-hybrid.yaml │ ├── httproute-location.yaml │ ├── httproute-method.yaml │ ├── httproute-referencegrant.yaml │ └── httproute-simple.yaml │ ├── reference-grant.yaml │ ├── simple-gateway │ ├── gateway.yaml │ └── httproute.yaml │ ├── simple-http-https │ ├── bar-route.yaml │ ├── foo-route.yaml │ ├── gateway.yaml │ └── tls-redirect-route.yaml │ ├── tls-basic.yaml │ ├── tls-cert-cross-namespace.yaml │ ├── traffic-splitting │ ├── grpc-traffic-split-2.yaml │ ├── simple-split.yaml │ ├── traffic-split-1.yaml │ ├── traffic-split-2.yaml │ └── traffic-split-3.yaml │ └── wildcard-tls-gateway.yaml ├── geps ├── OWNERS ├── gep-1016 │ ├── index.md │ └── metadata.yaml ├── gep-1282 │ ├── index.md │ └── metadata.yaml ├── gep-1294 │ ├── index.md │ └── metadata.yaml ├── gep-1323 │ ├── index.md │ └── metadata.yaml ├── gep-1324 │ ├── images │ │ ├── 1324-backend-ref.png │ │ ├── 1324-decomposed-view-of-service.png │ │ ├── 1324-resource-view-of-service.png │ │ └── 1324-service-frontend.png │ ├── index.md │ └── metadata.yaml ├── gep-1364 │ ├── index.md │ └── metadata.yaml ├── gep-1494 │ ├── index.md │ └── metadata.yaml ├── gep-1619 │ ├── index.md │ └── metadata.yaml ├── gep-1651 │ ├── index.md │ └── metadata.yaml ├── gep-1686 │ ├── index.md │ └── metadata.yaml ├── gep-1709 │ ├── index.md │ └── metadata.yaml ├── gep-1713 │ ├── index.md │ └── metadata.yaml ├── gep-1731 │ ├── index.md │ └── metadata.yaml ├── gep-1742 │ ├── index.md │ └── metadata.yaml ├── gep-1748 │ ├── index.md │ └── metadata.yaml ├── gep-1762 │ ├── index.md │ └── metadata.yaml ├── gep-1767 │ ├── index.md │ └── metadata.yaml ├── gep-1867 │ ├── index.md │ └── metadata.yaml ├── gep-1897 │ ├── images │ │ ├── 1897-TLStermtypes.png │ │ └── mesh.png │ ├── index.md │ └── metadata.yaml ├── gep-1911 │ ├── index.md │ └── metadata.yaml ├── gep-2162 │ ├── index.md │ └── metadata.yaml ├── gep-2257 │ ├── index.md │ └── metadata.yaml ├── gep-2627 │ ├── index.md │ └── metadata.yaml ├── gep-2648 │ ├── index.md │ └── metadata.yaml ├── gep-2649 │ ├── images │ │ ├── 2649-hierarchy.png │ │ ├── 2649-ingress-complex.png │ │ ├── 2649-ingress-simple.png │ │ ├── 2649-mesh-complex.png │ │ ├── 2649-mesh-simple.png │ │ └── 2649-policy-hierarchy.png │ ├── index.md │ └── metadata.yaml ├── gep-2659 │ ├── index.md │ └── metadata.yaml ├── gep-2722 │ ├── index.md │ └── metadata.yaml ├── gep-2907 │ ├── index.md │ └── metadata.yaml ├── gep-3155 │ ├── index.md │ └── metadata.yaml ├── gep-3171 │ ├── index.md │ └── metadata.yaml ├── gep-3388 │ ├── index.md │ └── metadata.yaml ├── gep-3567 │ ├── index.md │ └── metadata.yaml ├── gep-3779 │ ├── index.md │ └── metadata.yaml ├── gep-3792 │ ├── index.md │ └── metadata.yaml ├── gep-3793 │ ├── index.md │ └── metadata.yaml ├── gep-3798 │ ├── index.md │ └── metadata.yaml ├── gep-3949 │ ├── index.md │ └── metadata.yaml ├── gep-4152 │ ├── index.md │ └── metadata.yaml ├── gep-696 │ ├── index.md │ └── metadata.yaml ├── gep-709 │ ├── images │ │ ├── 709-inline.png │ │ └── 709-referencegrant.png │ ├── index.md │ └── metadata.yaml ├── gep-713 │ ├── images │ │ ├── 713-ingress-attachment.png │ │ ├── 713-servicebinding-complex.png │ │ ├── 713-servicebinding-simple.png │ │ └── 713-the-diagram-with-policy-admin.png │ ├── index.md │ └── metadata.yaml ├── gep-718 │ ├── index.md │ └── metadata.yaml ├── gep-724 │ ├── images │ │ ├── 724-alt1.png │ │ ├── 724-alt2.png │ │ └── 724-proposal.png │ ├── index.md │ └── metadata.yaml ├── gep-726 │ ├── index.md │ └── metadata.yaml ├── gep-735 │ ├── index.md │ └── metadata.yaml ├── gep-746 │ ├── index.md │ └── metadata.yaml ├── gep-820 │ ├── index.md │ └── metadata.yaml ├── gep-851 │ ├── index.md │ └── metadata.yaml ├── gep-91 │ ├── index.md │ └── metadata.yaml ├── gep-917 │ ├── index.md │ └── metadata.yaml ├── gep-922 │ ├── index.md │ └── metadata.yaml ├── gep-957 │ ├── index.md │ └── metadata.yaml ├── gep-995 │ ├── index.md │ └── metadata.yaml └── overview.md ├── go.mod ├── go.sum ├── go.work ├── gwctl └── README.md ├── hack ├── boilerplate │ ├── boilerplate.generatego.txt │ ├── boilerplate.go.txt │ ├── boilerplate.py │ ├── boilerplate.py.txt │ └── boilerplate.sh.txt ├── build-and-push.sh ├── build-install-yaml.sh ├── build-monthly-yaml.sh ├── crd-ref-templates │ ├── README.md │ ├── gv_details.tpl │ ├── gv_list.tpl │ ├── type.tpl │ └── type_members.tpl ├── delete-crds.sh ├── implementations │ ├── common │ │ └── create-cluster.sh │ └── envoy-gateway │ │ └── README.md ├── install-examples.sh ├── invalid-examples │ ├── experimental │ │ ├── httproute │ │ │ ├── invalid-filter-externalauth-bad-http-path.yaml │ │ │ ├── invalid-filter-externalauth-empty.yaml │ │ │ ├── invalid-filter-externalauth-no-protocol.yaml │ │ │ └── invalid-header-value.yaml │ │ └── tlsroute │ │ │ ├── invalid-hostname.yaml │ │ │ └── no-hostname.yaml │ └── standard │ │ ├── gateway │ │ ├── duplicate-listeners.yaml │ │ ├── hostname-tcp.yaml │ │ ├── hostname-udp.yaml │ │ ├── invalid-addresses.yaml │ │ ├── invalid-listener-name.yaml │ │ ├── invalid-listener-port.yaml │ │ ├── invalid-tls-mode.yaml │ │ └── tlsconfig-tcp.yaml │ │ ├── gatewayclass │ │ └── invalid-controller.yaml │ │ ├── httproute │ │ ├── duplicate-header-match.yaml │ │ ├── duplicate-query-match.yaml │ │ ├── httproute-portless-backend.yaml │ │ ├── httproute-portless-service.yaml │ │ ├── invalid-backend-group.yaml │ │ ├── invalid-backend-kind.yaml │ │ ├── invalid-backend-port.yaml │ │ ├── invalid-filter-duplicate-header.yaml │ │ ├── invalid-filter-duplicate.yaml │ │ ├── invalid-filter-empty.yaml │ │ ├── invalid-filter-wrong-field.yaml │ │ ├── invalid-header-name.yaml │ │ ├── invalid-hostname.yaml │ │ ├── invalid-httpredirect-hostname.yaml │ │ ├── invalid-method.yaml │ │ ├── invalid-path-alphanum-specialchars-mix.yaml │ │ ├── invalid-path-specialchars.yaml │ │ └── invalid-request-redirect-with-backendref.yaml │ │ └── referencegrant │ │ ├── missing-from.yaml │ │ ├── missing-ns.yaml │ │ └── missing-to.yaml ├── kube-env.sh ├── make-docs.sh ├── mkdocs-copy-geps.py ├── mkdocs-generate-conformance.py ├── mkdocs │ ├── OWNERS │ ├── generate.sh │ └── image │ │ ├── Dockerfile │ │ ├── entrypoint.sh │ │ └── requirements.txt ├── supportedfeatures │ └── main.go ├── update-clientset.sh ├── update-codegen.sh ├── update-conformance-image-refs.sh ├── update-mkdocs-nav.sh ├── update-protos.sh ├── verify-all.sh ├── verify-boilerplate.sh ├── verify-codegen.sh ├── verify-docker-build.sh ├── verify-golint.sh ├── verify-mkdocs-nav.sh ├── verify-reports.sh └── verify-yamllint.sh ├── mkdocs.yml ├── nav.yml ├── nav.yml.tmpl ├── netlify.toml ├── pkg ├── client │ ├── clientset │ │ └── versioned │ │ │ ├── clientset.go │ │ │ ├── fake │ │ │ ├── clientset_generated.go │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ ├── scheme │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ └── typed │ │ │ ├── apis │ │ │ ├── v1 │ │ │ │ ├── apis_client.go │ │ │ │ ├── backendtlspolicy.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_apis_client.go │ │ │ │ │ ├── fake_backendtlspolicy.go │ │ │ │ │ ├── fake_gateway.go │ │ │ │ │ ├── fake_gatewayclass.go │ │ │ │ │ ├── fake_grpcroute.go │ │ │ │ │ └── fake_httproute.go │ │ │ │ ├── gateway.go │ │ │ │ ├── gatewayclass.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── grpcroute.go │ │ │ │ └── httproute.go │ │ │ ├── v1alpha2 │ │ │ │ ├── apis_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_apis_client.go │ │ │ │ │ ├── fake_grpcroute.go │ │ │ │ │ ├── fake_referencegrant.go │ │ │ │ │ ├── fake_tcproute.go │ │ │ │ │ ├── fake_tlsroute.go │ │ │ │ │ └── fake_udproute.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── grpcroute.go │ │ │ │ ├── referencegrant.go │ │ │ │ ├── tcproute.go │ │ │ │ ├── tlsroute.go │ │ │ │ └── udproute.go │ │ │ ├── v1alpha3 │ │ │ │ ├── apis_client.go │ │ │ │ ├── backendtlspolicy.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_apis_client.go │ │ │ │ │ ├── fake_backendtlspolicy.go │ │ │ │ │ └── fake_tlsroute.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── tlsroute.go │ │ │ └── v1beta1 │ │ │ │ ├── apis_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── doc.go │ │ │ │ ├── fake_apis_client.go │ │ │ │ ├── fake_gateway.go │ │ │ │ ├── fake_gatewayclass.go │ │ │ │ ├── fake_httproute.go │ │ │ │ └── fake_referencegrant.go │ │ │ │ ├── gateway.go │ │ │ │ ├── gatewayclass.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── httproute.go │ │ │ │ └── referencegrant.go │ │ │ └── apisx │ │ │ └── v1alpha1 │ │ │ ├── apisx_client.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_apisx_client.go │ │ │ ├── fake_xbackendtrafficpolicy.go │ │ │ ├── fake_xlistenerset.go │ │ │ └── fake_xmesh.go │ │ │ ├── generated_expansion.go │ │ │ ├── xbackendtrafficpolicy.go │ │ │ ├── xlistenerset.go │ │ │ └── xmesh.go │ ├── informers │ │ └── externalversions │ │ │ ├── apis │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── backendtlspolicy.go │ │ │ │ ├── gateway.go │ │ │ │ ├── gatewayclass.go │ │ │ │ ├── grpcroute.go │ │ │ │ ├── httproute.go │ │ │ │ └── interface.go │ │ │ ├── v1alpha2 │ │ │ │ ├── grpcroute.go │ │ │ │ ├── interface.go │ │ │ │ ├── referencegrant.go │ │ │ │ ├── tcproute.go │ │ │ │ ├── tlsroute.go │ │ │ │ └── udproute.go │ │ │ ├── v1alpha3 │ │ │ │ ├── backendtlspolicy.go │ │ │ │ ├── interface.go │ │ │ │ └── tlsroute.go │ │ │ └── v1beta1 │ │ │ │ ├── gateway.go │ │ │ │ ├── gatewayclass.go │ │ │ │ ├── httproute.go │ │ │ │ ├── interface.go │ │ │ │ └── referencegrant.go │ │ │ ├── apisx │ │ │ ├── interface.go │ │ │ └── v1alpha1 │ │ │ │ ├── interface.go │ │ │ │ ├── xbackendtrafficpolicy.go │ │ │ │ ├── xlistenerset.go │ │ │ │ └── xmesh.go │ │ │ ├── factory.go │ │ │ ├── generic.go │ │ │ └── internalinterfaces │ │ │ └── factory_interfaces.go │ └── listers │ │ ├── apis │ │ ├── v1 │ │ │ ├── backendtlspolicy.go │ │ │ ├── expansion_generated.go │ │ │ ├── gateway.go │ │ │ ├── gatewayclass.go │ │ │ ├── grpcroute.go │ │ │ └── httproute.go │ │ ├── v1alpha2 │ │ │ ├── expansion_generated.go │ │ │ ├── grpcroute.go │ │ │ ├── referencegrant.go │ │ │ ├── tcproute.go │ │ │ ├── tlsroute.go │ │ │ └── udproute.go │ │ ├── v1alpha3 │ │ │ ├── backendtlspolicy.go │ │ │ ├── expansion_generated.go │ │ │ └── tlsroute.go │ │ └── v1beta1 │ │ │ ├── expansion_generated.go │ │ │ ├── gateway.go │ │ │ ├── gatewayclass.go │ │ │ ├── httproute.go │ │ │ └── referencegrant.go │ │ └── apisx │ │ └── v1alpha1 │ │ ├── expansion_generated.go │ │ ├── xbackendtrafficpolicy.go │ │ ├── xlistenerset.go │ │ └── xmesh.go ├── consts │ └── consts.go ├── features │ ├── backendtlspolicy.go │ ├── features.go │ ├── gateway.go │ ├── grpcroute.go │ ├── httproute.go │ ├── mesh.go │ ├── referencegrant.go │ ├── tlsroute.go │ └── udproute.go ├── generated │ └── openapi │ │ └── zz_generated.openapi.go ├── gep │ ├── doc.go │ └── gepdetail.go └── utils │ ├── duration.go │ └── duration_test.go ├── roles └── RELEASE_MANAGER.md ├── site-src ├── .mkdocs-exclude ├── OWNERS ├── api-types │ ├── backendtlspolicy.md │ ├── backendtrafficpolicy.md │ ├── gateway.md │ ├── gatewayclass.md │ ├── grpcroute.md │ ├── httproute.md │ └── referencegrant.md ├── blog │ ├── 2021 │ │ └── introducing-v1alpha2.md │ ├── 2022 │ │ └── graduating-to-beta.md │ ├── 2023 │ │ └── 0829-mesh-support.md │ └── index.md ├── concepts │ ├── api-overview.md │ ├── conformance.md │ ├── glossary.md │ ├── roles-and-personas.md │ ├── security-model.md │ ├── tooling.md │ ├── use-cases.md │ └── versioning.md ├── contributing │ ├── contributor-ladder.md │ ├── devguide.md │ ├── enhancement-requests.md │ ├── index.md │ ├── release-cycle.md │ └── style-guide.md ├── faq.md ├── guides │ ├── api-design.md │ ├── backend-protocol.md │ ├── crd-management.md │ ├── grpc-routing.md │ ├── http-header-modifier.md │ ├── http-redirect-rewrite.md │ ├── http-request-mirroring.md │ ├── http-routing.md │ ├── implementers.md │ ├── index.md │ ├── infrastructure.md │ ├── migrating-from-ingress.md │ ├── multiple-ns.md │ ├── simple-gateway.md │ ├── tcp.md │ ├── tls.md │ └── traffic-splitting.md ├── images │ ├── api-model.png │ ├── backendtlspolicy-api.png │ ├── cross-namespace-routing.svg │ ├── gateway-roles.png │ ├── gateway-route-binding.png │ ├── grpc-routing.png │ ├── grpc-routing.svg │ ├── grpcroute-basic-example.png │ ├── grpcroute-basic-example.svg │ ├── http-routing.png │ ├── httproute-basic-example.svg │ ├── httproute-with-backend-tls-policy.png │ ├── k8s-favicon.png │ ├── lifecycle-new-fields.svg │ ├── lifecycle-new-resources.png │ ├── logo │ │ ├── logo-text-horizontal-white.png │ │ ├── logo-text-horizontal.png │ │ ├── logo-text-horizontal.svg │ │ ├── logo-text-large-horizontal-white.png │ │ ├── logo-text-large-horizontal-white.svg │ │ └── logo.svg │ ├── policy │ │ ├── hierarchy.png │ │ ├── ingress-attachment.png │ │ ├── ingress-complex.png │ │ ├── ingress-simple.png │ │ ├── mesh-complex.png │ │ └── mesh-simple.png │ ├── referencegrant-simple.svg │ ├── release-channel-overlap.svg │ ├── resource-model.png │ ├── schema-uml.svg │ ├── simple-split.png │ ├── single-service-gateway.png │ ├── tls-overview.svg │ ├── tls-termination-types.png │ ├── traffic-splitting-1.png │ ├── traffic-splitting-2.png │ ├── traffic-splitting-3.png │ └── v1alpha2-group.png ├── implementations.md ├── implementations │ └── .gitignore ├── index.md ├── js │ └── implementations.js ├── mesh │ ├── gamma.md │ ├── index.md │ └── service-facets.md ├── overrides │ └── partials │ │ ├── copyright.html │ │ └── header.html ├── reference │ ├── images │ │ ├── policy-hierarchy.png │ │ └── referencepolicy.png │ └── policy-attachment.md └── stylesheets │ └── extra.css ├── tests ├── cel │ ├── backendtlspolicy_test.go │ ├── backendtrafficpolicy_test.go │ ├── gateway_experimental_test.go │ ├── gateway_test.go │ ├── gatewayclass_test.go │ ├── grpcroute_experimental_test.go │ ├── grpcroute_test.go │ ├── httproute_experimental_test.go │ ├── httproute_standard_test.go │ ├── httproute_test.go │ └── main_test.go ├── crd │ └── crd_test.go ├── go.mod └── go.sum └── tools ├── README.md ├── generator ├── main.go └── markers.go ├── gepstoc └── main.go ├── go.mod ├── go.sum └── modelschema └── main.go /.custom-gcl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/.custom-gcl.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/.github/ISSUE_TEMPLATE/bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/conformance-test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/.github/ISSUE_TEMPLATE/conformance-test.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/.github/ISSUE_TEMPLATE/documentation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/.github/ISSUE_TEMPLATE/enhancement.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/crd-validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/.github/workflows/crd-validation.yml -------------------------------------------------------------------------------- /.github/workflows/kal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/.github/workflows/kal.yml -------------------------------------------------------------------------------- /.github/workflows/mkdocs-nav-validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/.github/workflows/mkdocs-nav-validation.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci-kal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/.golangci-kal.yml -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.openvex/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/.openvex/templates/README.md -------------------------------------------------------------------------------- /.openvex/templates/main.openvex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/.openvex/templates/main.openvex.json -------------------------------------------------------------------------------- /.yamllint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/.yamllint.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | This has been moved to the CHANGELOG directory. 4 | -------------------------------------------------------------------------------- /CHANGELOG/0.x-CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/CHANGELOG/0.x-CHANGELOG.md -------------------------------------------------------------------------------- /CHANGELOG/1.0-CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/CHANGELOG/1.0-CHANGELOG.md -------------------------------------------------------------------------------- /CHANGELOG/1.1-CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/CHANGELOG/1.1-CHANGELOG.md -------------------------------------------------------------------------------- /CHANGELOG/1.1-TEAM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/CHANGELOG/1.1-TEAM.md -------------------------------------------------------------------------------- /CHANGELOG/1.2-CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/CHANGELOG/1.2-CHANGELOG.md -------------------------------------------------------------------------------- /CHANGELOG/1.2-TEAM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/CHANGELOG/1.2-TEAM.md -------------------------------------------------------------------------------- /CHANGELOG/1.3-CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/CHANGELOG/1.3-CHANGELOG.md -------------------------------------------------------------------------------- /CHANGELOG/1.3-TEAM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/CHANGELOG/1.3-TEAM.md -------------------------------------------------------------------------------- /CHANGELOG/1.4-CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/CHANGELOG/1.4-CHANGELOG.md -------------------------------------------------------------------------------- /CHANGELOG/1.4-TEAM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/CHANGELOG/1.4-TEAM.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/Makefile -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/OWNERS -------------------------------------------------------------------------------- /OWNERS_ALIASES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/OWNERS_ALIASES -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/RELEASE.md -------------------------------------------------------------------------------- /RELEASE_MANAGEMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/RELEASE_MANAGEMENT.md -------------------------------------------------------------------------------- /SECURITY_CONTACTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/SECURITY_CONTACTS -------------------------------------------------------------------------------- /apis/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apis/doc.go -------------------------------------------------------------------------------- /apis/v1/backendtlspolicy_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apis/v1/backendtlspolicy_types.go -------------------------------------------------------------------------------- /apis/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apis/v1/doc.go -------------------------------------------------------------------------------- /apis/v1/gateway_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apis/v1/gateway_types.go -------------------------------------------------------------------------------- /apis/v1/gatewayclass_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apis/v1/gatewayclass_types.go -------------------------------------------------------------------------------- /apis/v1/gatewayclass_types_overrides.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apis/v1/gatewayclass_types_overrides.go -------------------------------------------------------------------------------- /apis/v1/gatewayclass_types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apis/v1/gatewayclass_types_test.go -------------------------------------------------------------------------------- /apis/v1/grpcroute_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apis/v1/grpcroute_types.go -------------------------------------------------------------------------------- /apis/v1/httproute_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apis/v1/httproute_types.go -------------------------------------------------------------------------------- /apis/v1/object_reference_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apis/v1/object_reference_types.go -------------------------------------------------------------------------------- /apis/v1/policy_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apis/v1/policy_types.go -------------------------------------------------------------------------------- /apis/v1/shared_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apis/v1/shared_types.go -------------------------------------------------------------------------------- /apis/v1/util/validation/gatewayclass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apis/v1/util/validation/gatewayclass.go -------------------------------------------------------------------------------- /apis/v1/util/validation/gatewayclass_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apis/v1/util/validation/gatewayclass_test.go -------------------------------------------------------------------------------- /apis/v1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apis/v1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /apis/v1/zz_generated.register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apis/v1/zz_generated.register.go -------------------------------------------------------------------------------- /apis/v1alpha2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apis/v1alpha2/doc.go -------------------------------------------------------------------------------- /apis/v1alpha2/grpcroute_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apis/v1alpha2/grpcroute_types.go -------------------------------------------------------------------------------- /apis/v1alpha2/object_reference_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apis/v1alpha2/object_reference_types.go -------------------------------------------------------------------------------- /apis/v1alpha2/policy_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apis/v1alpha2/policy_types.go -------------------------------------------------------------------------------- /apis/v1alpha2/referencegrant_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apis/v1alpha2/referencegrant_types.go -------------------------------------------------------------------------------- /apis/v1alpha2/shared_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apis/v1alpha2/shared_types.go -------------------------------------------------------------------------------- /apis/v1alpha2/tcproute_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apis/v1alpha2/tcproute_types.go -------------------------------------------------------------------------------- /apis/v1alpha2/tlsroute_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apis/v1alpha2/tlsroute_types.go -------------------------------------------------------------------------------- /apis/v1alpha2/udproute_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apis/v1alpha2/udproute_types.go -------------------------------------------------------------------------------- /apis/v1alpha2/util/validation/gatewayclass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apis/v1alpha2/util/validation/gatewayclass.go -------------------------------------------------------------------------------- /apis/v1alpha2/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apis/v1alpha2/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /apis/v1alpha2/zz_generated.register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apis/v1alpha2/zz_generated.register.go -------------------------------------------------------------------------------- /apis/v1alpha3/backendtlspolicy_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apis/v1alpha3/backendtlspolicy_types.go -------------------------------------------------------------------------------- /apis/v1alpha3/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apis/v1alpha3/doc.go -------------------------------------------------------------------------------- /apis/v1alpha3/shared_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apis/v1alpha3/shared_types.go -------------------------------------------------------------------------------- /apis/v1alpha3/tlsroute_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apis/v1alpha3/tlsroute_types.go -------------------------------------------------------------------------------- /apis/v1alpha3/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apis/v1alpha3/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /apis/v1alpha3/zz_generated.register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apis/v1alpha3/zz_generated.register.go -------------------------------------------------------------------------------- /apis/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apis/v1beta1/doc.go -------------------------------------------------------------------------------- /apis/v1beta1/gateway_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apis/v1beta1/gateway_types.go -------------------------------------------------------------------------------- /apis/v1beta1/gatewayclass_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apis/v1beta1/gatewayclass_types.go -------------------------------------------------------------------------------- /apis/v1beta1/httproute_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apis/v1beta1/httproute_types.go -------------------------------------------------------------------------------- /apis/v1beta1/object_reference_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apis/v1beta1/object_reference_types.go -------------------------------------------------------------------------------- /apis/v1beta1/referencegrant_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apis/v1beta1/referencegrant_types.go -------------------------------------------------------------------------------- /apis/v1beta1/shared_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apis/v1beta1/shared_types.go -------------------------------------------------------------------------------- /apis/v1beta1/util/validation/gatewayclass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apis/v1beta1/util/validation/gatewayclass.go -------------------------------------------------------------------------------- /apis/v1beta1/util/validation/gatewayclass_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apis/v1beta1/util/validation/gatewayclass_test.go -------------------------------------------------------------------------------- /apis/v1beta1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apis/v1beta1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /apis/v1beta1/zz_generated.register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apis/v1beta1/zz_generated.register.go -------------------------------------------------------------------------------- /apisx/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apisx/doc.go -------------------------------------------------------------------------------- /apisx/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apisx/v1alpha1/doc.go -------------------------------------------------------------------------------- /apisx/v1alpha1/shared_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apisx/v1alpha1/shared_types.go -------------------------------------------------------------------------------- /apisx/v1alpha1/xbackendtrafficpolicy_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apisx/v1alpha1/xbackendtrafficpolicy_types.go -------------------------------------------------------------------------------- /apisx/v1alpha1/xlistenerset_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apisx/v1alpha1/xlistenerset_types.go -------------------------------------------------------------------------------- /apisx/v1alpha1/xmesh_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apisx/v1alpha1/xmesh_types.go -------------------------------------------------------------------------------- /apisx/v1alpha1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apisx/v1alpha1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /apisx/v1alpha1/zz_generated.register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/apisx/v1alpha1/zz_generated.register.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/allowedlisteners.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/allowedlisteners.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/allowedroutes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/allowedroutes.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/backendobjectreference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/backendobjectreference.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/backendref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/backendref.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/backendtlspolicy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/backendtlspolicy.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/backendtlspolicyspec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/backendtlspolicyspec.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/commonroutespec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/commonroutespec.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/cookieconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/cookieconfig.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/forwardbodyconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/forwardbodyconfig.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/fraction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/fraction.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/frontendtlsconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/frontendtlsconfig.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/frontendtlsvalidation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/frontendtlsvalidation.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/gateway.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/gateway.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/gatewaybackendtls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/gatewaybackendtls.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/gatewayclass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/gatewayclass.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/gatewayclassspec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/gatewayclassspec.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/gatewayclassstatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/gatewayclassstatus.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/gatewayinfrastructure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/gatewayinfrastructure.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/gatewayspec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/gatewayspec.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/gatewayspecaddress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/gatewayspecaddress.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/gatewaystatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/gatewaystatus.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/gatewaystatusaddress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/gatewaystatusaddress.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/gatewaytlsconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/gatewaytlsconfig.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/grpcauthconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/grpcauthconfig.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/grpcbackendref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/grpcbackendref.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/grpcheadermatch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/grpcheadermatch.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/grpcmethodmatch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/grpcmethodmatch.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/grpcroute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/grpcroute.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/grpcroutefilter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/grpcroutefilter.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/grpcroutematch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/grpcroutematch.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/grpcrouterule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/grpcrouterule.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/grpcroutespec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/grpcroutespec.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/grpcroutestatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/grpcroutestatus.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/httpauthconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/httpauthconfig.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/httpbackendref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/httpbackendref.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/httpcorsfilter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/httpcorsfilter.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/httpexternalauthfilter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/httpexternalauthfilter.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/httpheader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/httpheader.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/httpheaderfilter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/httpheaderfilter.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/httpheadermatch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/httpheadermatch.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/httppathmatch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/httppathmatch.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/httppathmodifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/httppathmodifier.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/httpqueryparammatch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/httpqueryparammatch.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/httprequestmirrorfilter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/httprequestmirrorfilter.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/httprequestredirectfilter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/httprequestredirectfilter.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/httproute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/httproute.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/httproutefilter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/httproutefilter.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/httproutematch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/httproutematch.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/httprouteretry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/httprouteretry.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/httprouterule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/httprouterule.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/httproutespec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/httproutespec.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/httproutestatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/httproutestatus.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/httproutetimeouts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/httproutetimeouts.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/httpurlrewritefilter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/httpurlrewritefilter.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/listener.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/listener.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/listenernamespaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/listenernamespaces.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/listenerstatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/listenerstatus.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/listenertlsconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/listenertlsconfig.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/localobjectreference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/localobjectreference.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/localparametersreference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/localparametersreference.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/objectreference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/objectreference.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/parametersreference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/parametersreference.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/parentreference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/parentreference.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/policyancestorstatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/policyancestorstatus.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/policystatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/policystatus.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/routegroupkind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/routegroupkind.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/routenamespaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/routenamespaces.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/routeparentstatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/routeparentstatus.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/routestatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/routestatus.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/secretobjectreference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/secretobjectreference.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/sessionpersistence.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/sessionpersistence.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/subjectaltname.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/subjectaltname.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/supportedfeature.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/supportedfeature.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/tlsconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/tlsconfig.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1/tlsportconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1/tlsportconfig.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1alpha2/grpcroute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1alpha2/grpcroute.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1alpha2/policystatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1alpha2/policystatus.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1alpha2/referencegrant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1alpha2/referencegrant.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1alpha2/tcproute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1alpha2/tcproute.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1alpha2/tcprouterule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1alpha2/tcprouterule.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1alpha2/tcproutespec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1alpha2/tcproutespec.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1alpha2/tcproutestatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1alpha2/tcproutestatus.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1alpha2/tlsroute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1alpha2/tlsroute.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1alpha2/tlsrouterule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1alpha2/tlsrouterule.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1alpha2/tlsroutespec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1alpha2/tlsroutespec.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1alpha2/tlsroutestatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1alpha2/tlsroutestatus.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1alpha2/udproute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1alpha2/udproute.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1alpha2/udprouterule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1alpha2/udprouterule.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1alpha2/udproutespec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1alpha2/udproutespec.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1alpha2/udproutestatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1alpha2/udproutestatus.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1alpha3/backendtlspolicy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1alpha3/backendtlspolicy.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1alpha3/subjectaltname.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1alpha3/subjectaltname.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1alpha3/tlsroute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1alpha3/tlsroute.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1alpha3/tlsrouterule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1alpha3/tlsrouterule.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1alpha3/tlsroutespec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1alpha3/tlsroutespec.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1alpha3/tlsroutestatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1alpha3/tlsroutestatus.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1beta1/gateway.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1beta1/gateway.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1beta1/gatewayclass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1beta1/gatewayclass.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1beta1/httproute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1beta1/httproute.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1beta1/referencegrant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1beta1/referencegrant.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1beta1/referencegrantfrom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1beta1/referencegrantfrom.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1beta1/referencegrantspec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1beta1/referencegrantspec.go -------------------------------------------------------------------------------- /applyconfiguration/apis/v1beta1/referencegrantto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apis/v1beta1/referencegrantto.go -------------------------------------------------------------------------------- /applyconfiguration/apisx/v1alpha1/budgetdetails.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apisx/v1alpha1/budgetdetails.go -------------------------------------------------------------------------------- /applyconfiguration/apisx/v1alpha1/listenerentry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apisx/v1alpha1/listenerentry.go -------------------------------------------------------------------------------- /applyconfiguration/apisx/v1alpha1/listenersetspec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apisx/v1alpha1/listenersetspec.go -------------------------------------------------------------------------------- /applyconfiguration/apisx/v1alpha1/listenersetstatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apisx/v1alpha1/listenersetstatus.go -------------------------------------------------------------------------------- /applyconfiguration/apisx/v1alpha1/meshspec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apisx/v1alpha1/meshspec.go -------------------------------------------------------------------------------- /applyconfiguration/apisx/v1alpha1/meshstatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apisx/v1alpha1/meshstatus.go -------------------------------------------------------------------------------- /applyconfiguration/apisx/v1alpha1/requestrate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apisx/v1alpha1/requestrate.go -------------------------------------------------------------------------------- /applyconfiguration/apisx/v1alpha1/retryconstraint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apisx/v1alpha1/retryconstraint.go -------------------------------------------------------------------------------- /applyconfiguration/apisx/v1alpha1/xlistenerset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apisx/v1alpha1/xlistenerset.go -------------------------------------------------------------------------------- /applyconfiguration/apisx/v1alpha1/xmesh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/apisx/v1alpha1/xmesh.go -------------------------------------------------------------------------------- /applyconfiguration/internal/internal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/internal/internal.go -------------------------------------------------------------------------------- /applyconfiguration/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/applyconfiguration/utils.go -------------------------------------------------------------------------------- /cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/cloudbuild.yaml -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/code-of-conduct.md -------------------------------------------------------------------------------- /config/crd/experimental/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/config/crd/experimental/kustomization.yaml -------------------------------------------------------------------------------- /config/crd/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/config/crd/kustomization.yaml -------------------------------------------------------------------------------- /conformance/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/OWNERS -------------------------------------------------------------------------------- /conformance/apis/v1/conformancereport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/apis/v1/conformancereport.go -------------------------------------------------------------------------------- /conformance/apis/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/apis/v1/doc.go -------------------------------------------------------------------------------- /conformance/apis/v1/groupversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/apis/v1/groupversion.go -------------------------------------------------------------------------------- /conformance/apis/v1/profilereport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/apis/v1/profilereport.go -------------------------------------------------------------------------------- /conformance/apis/v1/result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/apis/v1/result.go -------------------------------------------------------------------------------- /conformance/apis/v1/statistics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/apis/v1/statistics.go -------------------------------------------------------------------------------- /conformance/base/manifests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/base/manifests.yaml -------------------------------------------------------------------------------- /conformance/conformance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/conformance.go -------------------------------------------------------------------------------- /conformance/conformance_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/conformance_test.go -------------------------------------------------------------------------------- /conformance/echo-basic/.gitignore: -------------------------------------------------------------------------------- 1 | echo-basic 2 | -------------------------------------------------------------------------------- /conformance/echo-basic/.go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/echo-basic/.go.mod -------------------------------------------------------------------------------- /conformance/echo-basic/.go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/echo-basic/.go.sum -------------------------------------------------------------------------------- /conformance/echo-basic/echo-basic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/echo-basic/echo-basic.go -------------------------------------------------------------------------------- /conformance/echo-basic/echo-basic_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/echo-basic/echo-basic_test.go -------------------------------------------------------------------------------- /conformance/echo-basic/grpc/grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/echo-basic/grpc/grpc.go -------------------------------------------------------------------------------- /conformance/echo-basic/grpc/grpcechoserver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/echo-basic/grpc/grpcechoserver_test.go -------------------------------------------------------------------------------- /conformance/echo-basic/grpcecho.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/echo-basic/grpcecho.proto -------------------------------------------------------------------------------- /conformance/echo-basic/grpcechoserver/grpcecho.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/echo-basic/grpcechoserver/grpcecho.pb.go -------------------------------------------------------------------------------- /conformance/embed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/embed.go -------------------------------------------------------------------------------- /conformance/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/go.mod -------------------------------------------------------------------------------- /conformance/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/go.sum -------------------------------------------------------------------------------- /conformance/mesh/manifests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/mesh/manifests.yaml -------------------------------------------------------------------------------- /conformance/reports/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/reports/README.md -------------------------------------------------------------------------------- /conformance/reports/v0.7.1/cilium/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/reports/v0.7.1/cilium/README.md -------------------------------------------------------------------------------- /conformance/reports/v0.7.1/cilium/v1.14.0-report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/reports/v0.7.1/cilium/v1.14.0-report.yaml -------------------------------------------------------------------------------- /conformance/reports/v0.7.1/istio-istio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/reports/v0.7.1/istio-istio/README.md -------------------------------------------------------------------------------- /conformance/reports/v0.7.1/kumahq-kuma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/reports/v0.7.1/kumahq-kuma/README.md -------------------------------------------------------------------------------- /conformance/reports/v0.8.0/envoy-gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/reports/v0.8.0/envoy-gateway/README.md -------------------------------------------------------------------------------- /conformance/reports/v0.8.0/kumahq-kuma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/reports/v0.8.0/kumahq-kuma/README.md -------------------------------------------------------------------------------- /conformance/reports/v0.8.1/cilium/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/reports/v0.8.1/cilium/README.md -------------------------------------------------------------------------------- /conformance/reports/v1.0.0/cilium/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/reports/v1.0.0/cilium/README.md -------------------------------------------------------------------------------- /conformance/reports/v1.0.0/envoy-gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/reports/v1.0.0/envoy-gateway/README.md -------------------------------------------------------------------------------- /conformance/reports/v1.0.0/gloo-gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/reports/v1.0.0/gloo-gateway/README.md -------------------------------------------------------------------------------- /conformance/reports/v1.0.0/istio-istio/1.20-report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/reports/v1.0.0/istio-istio/1.20-report.yaml -------------------------------------------------------------------------------- /conformance/reports/v1.0.0/istio-istio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/reports/v1.0.0/istio-istio/README.md -------------------------------------------------------------------------------- /conformance/reports/v1.0.0/kumahq-kuma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/reports/v1.0.0/kumahq-kuma/README.md -------------------------------------------------------------------------------- /conformance/reports/v1.1.0/cilium-cilium/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/reports/v1.1.0/cilium-cilium/README.md -------------------------------------------------------------------------------- /conformance/reports/v1.1.0/envoy-gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/reports/v1.1.0/envoy-gateway/README.md -------------------------------------------------------------------------------- /conformance/reports/v1.1.0/gke-gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/reports/v1.1.0/gke-gateway/README.md -------------------------------------------------------------------------------- /conformance/reports/v1.1.0/gloo-gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/reports/v1.1.0/gloo-gateway/README.md -------------------------------------------------------------------------------- /conformance/reports/v1.1.0/istio-istio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/reports/v1.1.0/istio-istio/README.md -------------------------------------------------------------------------------- /conformance/reports/v1.1.0/traefik-traefik/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/reports/v1.1.0/traefik-traefik/README.md -------------------------------------------------------------------------------- /conformance/reports/v1.2.0/cilium-cilium/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/reports/v1.2.0/cilium-cilium/README.md -------------------------------------------------------------------------------- /conformance/reports/v1.2.0/envoy-gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/reports/v1.2.0/envoy-gateway/README.md -------------------------------------------------------------------------------- /conformance/reports/v1.2.0/gloo-gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/reports/v1.2.0/gloo-gateway/README.md -------------------------------------------------------------------------------- /conformance/reports/v1.2.0/istio-istio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/reports/v1.2.0/istio-istio/README.md -------------------------------------------------------------------------------- /conformance/reports/v1.2.0/traefik-traefik/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/reports/v1.2.0/traefik-traefik/README.md -------------------------------------------------------------------------------- /conformance/reports/v1.2.1/cilium-cilium/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/reports/v1.2.1/cilium-cilium/README.md -------------------------------------------------------------------------------- /conformance/reports/v1.2.1/envoy-gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/reports/v1.2.1/envoy-gateway/README.md -------------------------------------------------------------------------------- /conformance/reports/v1.2.1/istio-istio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/reports/v1.2.1/istio-istio/README.md -------------------------------------------------------------------------------- /conformance/reports/v1.2.1/kgateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/reports/v1.2.1/kgateway/README.md -------------------------------------------------------------------------------- /conformance/reports/v1.2.1/kgateway/v2.0.0-report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/reports/v1.2.1/kgateway/v2.0.0-report.yaml -------------------------------------------------------------------------------- /conformance/reports/v1.2.1/kubvernor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/reports/v1.2.1/kubvernor/README.md -------------------------------------------------------------------------------- /conformance/reports/v1.2.1/traefik-traefik/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/reports/v1.2.1/traefik-traefik/README.md -------------------------------------------------------------------------------- /conformance/reports/v1.3.0/cilium-cilium/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/reports/v1.3.0/cilium-cilium/README.md -------------------------------------------------------------------------------- /conformance/reports/v1.3.0/envoy-gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/reports/v1.3.0/envoy-gateway/README.md -------------------------------------------------------------------------------- /conformance/reports/v1.3.0/gke-gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/reports/v1.3.0/gke-gateway/README.md -------------------------------------------------------------------------------- /conformance/reports/v1.3.0/istio-istio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/reports/v1.3.0/istio-istio/README.md -------------------------------------------------------------------------------- /conformance/reports/v1.3.0/kgateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/reports/v1.3.0/kgateway/README.md -------------------------------------------------------------------------------- /conformance/reports/v1.3.0/linkerd-linkerd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/reports/v1.3.0/linkerd-linkerd/README.md -------------------------------------------------------------------------------- /conformance/reports/v1.3.0/traefik-traefik/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/reports/v1.3.0/traefik-traefik/README.md -------------------------------------------------------------------------------- /conformance/reports/v1.4.0/cilium/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/reports/v1.4.0/cilium/README.md -------------------------------------------------------------------------------- /conformance/reports/v1.4.0/envoy-gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/reports/v1.4.0/envoy-gateway/README.md -------------------------------------------------------------------------------- /conformance/reports/v1.4.0/gke-gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/reports/v1.4.0/gke-gateway/README.md -------------------------------------------------------------------------------- /conformance/reports/v1.4.0/istio-istio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/reports/v1.4.0/istio-istio/README.md -------------------------------------------------------------------------------- /conformance/reports/v1.4.0/kgateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/reports/v1.4.0/kgateway/README.md -------------------------------------------------------------------------------- /conformance/reports/v1.4.0/kgateway/v2.1.0-report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/reports/v1.4.0/kgateway/v2.1.0-report.yaml -------------------------------------------------------------------------------- /conformance/reports/v1.4.0/traefik-traefik/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/reports/v1.4.0/traefik-traefik/README.md -------------------------------------------------------------------------------- /conformance/tests/backendtlspolicy-invalid-kind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/backendtlspolicy-invalid-kind.go -------------------------------------------------------------------------------- /conformance/tests/backendtlspolicy-invalid-kind.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/backendtlspolicy-invalid-kind.yaml -------------------------------------------------------------------------------- /conformance/tests/backendtlspolicy-san.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/backendtlspolicy-san.go -------------------------------------------------------------------------------- /conformance/tests/backendtlspolicy-san.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/backendtlspolicy-san.yaml -------------------------------------------------------------------------------- /conformance/tests/backendtlspolicy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/backendtlspolicy.go -------------------------------------------------------------------------------- /conformance/tests/backendtlspolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/backendtlspolicy.yaml -------------------------------------------------------------------------------- /conformance/tests/gateway-http-listener-isolation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/gateway-http-listener-isolation.go -------------------------------------------------------------------------------- /conformance/tests/gateway-http-listener-isolation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/gateway-http-listener-isolation.yaml -------------------------------------------------------------------------------- /conformance/tests/gateway-infrastructure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/gateway-infrastructure.go -------------------------------------------------------------------------------- /conformance/tests/gateway-infrastructure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/gateway-infrastructure.yaml -------------------------------------------------------------------------------- /conformance/tests/gateway-invalid-route-kind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/gateway-invalid-route-kind.go -------------------------------------------------------------------------------- /conformance/tests/gateway-invalid-route-kind.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/gateway-invalid-route-kind.yaml -------------------------------------------------------------------------------- /conformance/tests/gateway-invalid-tls-configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/gateway-invalid-tls-configuration.go -------------------------------------------------------------------------------- /conformance/tests/gateway-modify-listeners.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/gateway-modify-listeners.go -------------------------------------------------------------------------------- /conformance/tests/gateway-modify-listeners.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/gateway-modify-listeners.yaml -------------------------------------------------------------------------------- /conformance/tests/gateway-observed-generation-bump.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/gateway-observed-generation-bump.go -------------------------------------------------------------------------------- /conformance/tests/gateway-observed-generation-bump.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/gateway-observed-generation-bump.yaml -------------------------------------------------------------------------------- /conformance/tests/gateway-optional-address-value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/gateway-optional-address-value.go -------------------------------------------------------------------------------- /conformance/tests/gateway-optional-address-value.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/gateway-optional-address-value.yaml -------------------------------------------------------------------------------- /conformance/tests/gateway-static-addresses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/gateway-static-addresses.go -------------------------------------------------------------------------------- /conformance/tests/gateway-static-addresses.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/gateway-static-addresses.yaml -------------------------------------------------------------------------------- /conformance/tests/gateway-with-attached-routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/gateway-with-attached-routes.go -------------------------------------------------------------------------------- /conformance/tests/gateway-with-attached-routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/gateway-with-attached-routes.yaml -------------------------------------------------------------------------------- /conformance/tests/grpcroute-exact-method-matching.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/grpcroute-exact-method-matching.go -------------------------------------------------------------------------------- /conformance/tests/grpcroute-exact-method-matching.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/grpcroute-exact-method-matching.yaml -------------------------------------------------------------------------------- /conformance/tests/grpcroute-header-matching.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/grpcroute-header-matching.go -------------------------------------------------------------------------------- /conformance/tests/grpcroute-header-matching.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/grpcroute-header-matching.yaml -------------------------------------------------------------------------------- /conformance/tests/grpcroute-named-rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/grpcroute-named-rule.go -------------------------------------------------------------------------------- /conformance/tests/grpcroute-named-rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/grpcroute-named-rule.yaml -------------------------------------------------------------------------------- /conformance/tests/grpcroute-weight.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/grpcroute-weight.go -------------------------------------------------------------------------------- /conformance/tests/grpcroute-weight.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/grpcroute-weight.yaml -------------------------------------------------------------------------------- /conformance/tests/httproute-303-redirect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-303-redirect.go -------------------------------------------------------------------------------- /conformance/tests/httproute-303-redirect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-303-redirect.yaml -------------------------------------------------------------------------------- /conformance/tests/httproute-307-redirect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-307-redirect.go -------------------------------------------------------------------------------- /conformance/tests/httproute-307-redirect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-307-redirect.yaml -------------------------------------------------------------------------------- /conformance/tests/httproute-308-redirect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-308-redirect.go -------------------------------------------------------------------------------- /conformance/tests/httproute-308-redirect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-308-redirect.yaml -------------------------------------------------------------------------------- /conformance/tests/httproute-backend-protocol-h2c.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-backend-protocol-h2c.go -------------------------------------------------------------------------------- /conformance/tests/httproute-backend-protocol-h2c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-backend-protocol-h2c.yaml -------------------------------------------------------------------------------- /conformance/tests/httproute-cross-namespace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-cross-namespace.go -------------------------------------------------------------------------------- /conformance/tests/httproute-cross-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-cross-namespace.yaml -------------------------------------------------------------------------------- /conformance/tests/httproute-disallowed-kind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-disallowed-kind.go -------------------------------------------------------------------------------- /conformance/tests/httproute-disallowed-kind.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-disallowed-kind.yaml -------------------------------------------------------------------------------- /conformance/tests/httproute-exact-path-matching.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-exact-path-matching.go -------------------------------------------------------------------------------- /conformance/tests/httproute-exact-path-matching.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-exact-path-matching.yaml -------------------------------------------------------------------------------- /conformance/tests/httproute-header-matching.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-header-matching.go -------------------------------------------------------------------------------- /conformance/tests/httproute-header-matching.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-header-matching.yaml -------------------------------------------------------------------------------- /conformance/tests/httproute-hostname-intersection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-hostname-intersection.go -------------------------------------------------------------------------------- /conformance/tests/httproute-hostname-intersection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-hostname-intersection.yaml -------------------------------------------------------------------------------- /conformance/tests/httproute-https-listener.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-https-listener.go -------------------------------------------------------------------------------- /conformance/tests/httproute-https-listener.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-https-listener.yaml -------------------------------------------------------------------------------- /conformance/tests/httproute-invalid-reference-grant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-invalid-reference-grant.go -------------------------------------------------------------------------------- /conformance/tests/httproute-listener-port-matching.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-listener-port-matching.go -------------------------------------------------------------------------------- /conformance/tests/httproute-listener-port-matching.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-listener-port-matching.yaml -------------------------------------------------------------------------------- /conformance/tests/httproute-matching-across-routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-matching-across-routes.go -------------------------------------------------------------------------------- /conformance/tests/httproute-matching-across-routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-matching-across-routes.yaml -------------------------------------------------------------------------------- /conformance/tests/httproute-matching.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-matching.go -------------------------------------------------------------------------------- /conformance/tests/httproute-matching.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-matching.yaml -------------------------------------------------------------------------------- /conformance/tests/httproute-method-matching.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-method-matching.go -------------------------------------------------------------------------------- /conformance/tests/httproute-method-matching.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-method-matching.yaml -------------------------------------------------------------------------------- /conformance/tests/httproute-named-rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-named-rule.go -------------------------------------------------------------------------------- /conformance/tests/httproute-named-rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-named-rule.yaml -------------------------------------------------------------------------------- /conformance/tests/httproute-observed-generation-bump.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-observed-generation-bump.go -------------------------------------------------------------------------------- /conformance/tests/httproute-path-match-order.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-path-match-order.go -------------------------------------------------------------------------------- /conformance/tests/httproute-path-match-order.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-path-match-order.yaml -------------------------------------------------------------------------------- /conformance/tests/httproute-query-param-matching.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-query-param-matching.go -------------------------------------------------------------------------------- /conformance/tests/httproute-query-param-matching.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-query-param-matching.yaml -------------------------------------------------------------------------------- /conformance/tests/httproute-redirect-host-and-status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-redirect-host-and-status.go -------------------------------------------------------------------------------- /conformance/tests/httproute-redirect-path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-redirect-path.go -------------------------------------------------------------------------------- /conformance/tests/httproute-redirect-path.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-redirect-path.yaml -------------------------------------------------------------------------------- /conformance/tests/httproute-redirect-port-and-scheme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-redirect-port-and-scheme.go -------------------------------------------------------------------------------- /conformance/tests/httproute-redirect-port.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-redirect-port.go -------------------------------------------------------------------------------- /conformance/tests/httproute-redirect-port.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-redirect-port.yaml -------------------------------------------------------------------------------- /conformance/tests/httproute-redirect-scheme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-redirect-scheme.go -------------------------------------------------------------------------------- /conformance/tests/httproute-redirect-scheme.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-redirect-scheme.yaml -------------------------------------------------------------------------------- /conformance/tests/httproute-reference-grant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-reference-grant.go -------------------------------------------------------------------------------- /conformance/tests/httproute-reference-grant.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-reference-grant.yaml -------------------------------------------------------------------------------- /conformance/tests/httproute-request-mirror.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-request-mirror.go -------------------------------------------------------------------------------- /conformance/tests/httproute-request-mirror.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-request-mirror.yaml -------------------------------------------------------------------------------- /conformance/tests/httproute-rewrite-host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-rewrite-host.go -------------------------------------------------------------------------------- /conformance/tests/httproute-rewrite-host.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-rewrite-host.yaml -------------------------------------------------------------------------------- /conformance/tests/httproute-rewrite-path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-rewrite-path.go -------------------------------------------------------------------------------- /conformance/tests/httproute-rewrite-path.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-rewrite-path.yaml -------------------------------------------------------------------------------- /conformance/tests/httproute-service-types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-service-types.go -------------------------------------------------------------------------------- /conformance/tests/httproute-service-types.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-service-types.yaml -------------------------------------------------------------------------------- /conformance/tests/httproute-simple-same-namespace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-simple-same-namespace.go -------------------------------------------------------------------------------- /conformance/tests/httproute-timeout-request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-timeout-request.go -------------------------------------------------------------------------------- /conformance/tests/httproute-timeout-request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-timeout-request.yaml -------------------------------------------------------------------------------- /conformance/tests/httproute-weight.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-weight.go -------------------------------------------------------------------------------- /conformance/tests/httproute-weight.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/httproute-weight.yaml -------------------------------------------------------------------------------- /conformance/tests/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/main.go -------------------------------------------------------------------------------- /conformance/tests/mesh/grpcroute-weight.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/mesh/grpcroute-weight.go -------------------------------------------------------------------------------- /conformance/tests/mesh/grpcroute-weight.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/mesh/grpcroute-weight.yaml -------------------------------------------------------------------------------- /conformance/tests/mesh/httproute-303-redirect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/mesh/httproute-303-redirect.go -------------------------------------------------------------------------------- /conformance/tests/mesh/httproute-303-redirect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/mesh/httproute-303-redirect.yaml -------------------------------------------------------------------------------- /conformance/tests/mesh/httproute-307-redirect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/mesh/httproute-307-redirect.go -------------------------------------------------------------------------------- /conformance/tests/mesh/httproute-307-redirect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/mesh/httproute-307-redirect.yaml -------------------------------------------------------------------------------- /conformance/tests/mesh/httproute-308-redirect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/mesh/httproute-308-redirect.go -------------------------------------------------------------------------------- /conformance/tests/mesh/httproute-308-redirect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/mesh/httproute-308-redirect.yaml -------------------------------------------------------------------------------- /conformance/tests/mesh/httproute-matching.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/mesh/httproute-matching.go -------------------------------------------------------------------------------- /conformance/tests/mesh/httproute-matching.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/mesh/httproute-matching.yaml -------------------------------------------------------------------------------- /conformance/tests/mesh/httproute-named-rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/mesh/httproute-named-rule.go -------------------------------------------------------------------------------- /conformance/tests/mesh/httproute-named-rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/mesh/httproute-named-rule.yaml -------------------------------------------------------------------------------- /conformance/tests/mesh/httproute-redirect-path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/mesh/httproute-redirect-path.go -------------------------------------------------------------------------------- /conformance/tests/mesh/httproute-redirect-path.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/mesh/httproute-redirect-path.yaml -------------------------------------------------------------------------------- /conformance/tests/mesh/httproute-redirect-port.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/mesh/httproute-redirect-port.go -------------------------------------------------------------------------------- /conformance/tests/mesh/httproute-redirect-port.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/mesh/httproute-redirect-port.yaml -------------------------------------------------------------------------------- /conformance/tests/mesh/httproute-redirect-scheme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/mesh/httproute-redirect-scheme.go -------------------------------------------------------------------------------- /conformance/tests/mesh/httproute-rewrite-path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/mesh/httproute-rewrite-path.go -------------------------------------------------------------------------------- /conformance/tests/mesh/httproute-rewrite-path.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/mesh/httproute-rewrite-path.yaml -------------------------------------------------------------------------------- /conformance/tests/mesh/httproute-weight.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/mesh/httproute-weight.go -------------------------------------------------------------------------------- /conformance/tests/mesh/httproute-weight.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/mesh/httproute-weight.yaml -------------------------------------------------------------------------------- /conformance/tests/mesh/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/mesh/main.go -------------------------------------------------------------------------------- /conformance/tests/mesh/mesh-basic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/mesh/mesh-basic.go -------------------------------------------------------------------------------- /conformance/tests/mesh/mesh-consumer-route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/mesh/mesh-consumer-route.go -------------------------------------------------------------------------------- /conformance/tests/mesh/mesh-consumer-route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/mesh/mesh-consumer-route.yaml -------------------------------------------------------------------------------- /conformance/tests/mesh/mesh-frontend-hostname.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/mesh/mesh-frontend-hostname.go -------------------------------------------------------------------------------- /conformance/tests/mesh/mesh-frontend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/mesh/mesh-frontend.go -------------------------------------------------------------------------------- /conformance/tests/mesh/mesh-frontend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/mesh/mesh-frontend.yaml -------------------------------------------------------------------------------- /conformance/tests/mesh/mesh-ports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/mesh/mesh-ports.go -------------------------------------------------------------------------------- /conformance/tests/mesh/mesh-ports.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/mesh/mesh-ports.yaml -------------------------------------------------------------------------------- /conformance/tests/mesh/mesh-split.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/mesh/mesh-split.go -------------------------------------------------------------------------------- /conformance/tests/mesh/mesh-split.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/mesh/mesh-split.yaml -------------------------------------------------------------------------------- /conformance/tests/tlsroute-simple-same-namespace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/tlsroute-simple-same-namespace.go -------------------------------------------------------------------------------- /conformance/tests/udproute-simple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/udproute-simple.go -------------------------------------------------------------------------------- /conformance/tests/udproute-simple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/tests/udproute-simple.yaml -------------------------------------------------------------------------------- /conformance/utils/config/timeout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/utils/config/timeout.go -------------------------------------------------------------------------------- /conformance/utils/echo/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/utils/echo/parse.go -------------------------------------------------------------------------------- /conformance/utils/echo/pod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/utils/echo/pod.go -------------------------------------------------------------------------------- /conformance/utils/flags/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/utils/flags/flags.go -------------------------------------------------------------------------------- /conformance/utils/grpc/grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/utils/grpc/grpc.go -------------------------------------------------------------------------------- /conformance/utils/http/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/utils/http/http.go -------------------------------------------------------------------------------- /conformance/utils/http/mirror.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/utils/http/mirror.go -------------------------------------------------------------------------------- /conformance/utils/kubernetes/apply.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/utils/kubernetes/apply.go -------------------------------------------------------------------------------- /conformance/utils/kubernetes/apply_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/utils/kubernetes/apply_test.go -------------------------------------------------------------------------------- /conformance/utils/kubernetes/certificate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/utils/kubernetes/certificate.go -------------------------------------------------------------------------------- /conformance/utils/kubernetes/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/utils/kubernetes/helpers.go -------------------------------------------------------------------------------- /conformance/utils/kubernetes/helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/utils/kubernetes/helpers_test.go -------------------------------------------------------------------------------- /conformance/utils/kubernetes/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/utils/kubernetes/logs.go -------------------------------------------------------------------------------- /conformance/utils/roundtripper/roundtripper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/utils/roundtripper/roundtripper.go -------------------------------------------------------------------------------- /conformance/utils/suite/conformance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/utils/suite/conformance.go -------------------------------------------------------------------------------- /conformance/utils/suite/conformance_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/utils/suite/conformance_test.go -------------------------------------------------------------------------------- /conformance/utils/suite/profiles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/utils/suite/profiles.go -------------------------------------------------------------------------------- /conformance/utils/suite/reports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/utils/suite/reports.go -------------------------------------------------------------------------------- /conformance/utils/suite/reports_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/utils/suite/reports_test.go -------------------------------------------------------------------------------- /conformance/utils/suite/suite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/utils/suite/suite.go -------------------------------------------------------------------------------- /conformance/utils/suite/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/utils/suite/suite_test.go -------------------------------------------------------------------------------- /conformance/utils/tlog/tlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/utils/tlog/tlog.go -------------------------------------------------------------------------------- /conformance/utils/tlog/tlog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/utils/tlog/tlog_test.go -------------------------------------------------------------------------------- /conformance/utils/tls/tls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/utils/tls/tls.go -------------------------------------------------------------------------------- /conformance/utils/weight/senders.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/utils/weight/senders.go -------------------------------------------------------------------------------- /conformance/utils/weight/weight.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/conformance/utils/weight/weight.go -------------------------------------------------------------------------------- /crd-ref-docs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/crd-ref-docs.yaml -------------------------------------------------------------------------------- /docker/Dockerfile.echo-advanced: -------------------------------------------------------------------------------- 1 | FROM gcr.io/istio-release/app:1.21.2 2 | -------------------------------------------------------------------------------- /docker/Dockerfile.echo-basic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/docker/Dockerfile.echo-basic -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/docs/index.html -------------------------------------------------------------------------------- /examples/experimental/backend-tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/examples/experimental/backend-tls.yaml -------------------------------------------------------------------------------- /examples/experimental/basic-tcp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/examples/experimental/basic-tcp.yaml -------------------------------------------------------------------------------- /examples/experimental/frontend-cert-validation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/examples/experimental/frontend-cert-validation.yaml -------------------------------------------------------------------------------- /examples/experimental/http-response-header.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/examples/experimental/http-response-header.yaml -------------------------------------------------------------------------------- /examples/experimental/http-route-rule-name.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/examples/experimental/http-route-rule-name.yaml -------------------------------------------------------------------------------- /examples/standard/0-namespaces.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/examples/standard/0-namespaces.yaml -------------------------------------------------------------------------------- /examples/standard/basic-grpc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/examples/standard/basic-grpc.yaml -------------------------------------------------------------------------------- /examples/standard/basic-http.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/examples/standard/basic-http.yaml -------------------------------------------------------------------------------- /examples/standard/default-match-http.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/examples/standard/default-match-http.yaml -------------------------------------------------------------------------------- /examples/standard/gateway-addresses.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/examples/standard/gateway-addresses.yaml -------------------------------------------------------------------------------- /examples/standard/grpc-filter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/examples/standard/grpc-filter.yaml -------------------------------------------------------------------------------- /examples/standard/grpc-routing/bar-grpcroute.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/examples/standard/grpc-routing/bar-grpcroute.yaml -------------------------------------------------------------------------------- /examples/standard/grpc-routing/foo-grpcroute.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/examples/standard/grpc-routing/foo-grpcroute.yaml -------------------------------------------------------------------------------- /examples/standard/grpc-routing/gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/examples/standard/grpc-routing/gateway.yaml -------------------------------------------------------------------------------- /examples/standard/http-filter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/examples/standard/http-filter.yaml -------------------------------------------------------------------------------- /examples/standard/http-redirect-path.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/examples/standard/http-redirect-path.yaml -------------------------------------------------------------------------------- /examples/standard/http-redirect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/examples/standard/http-redirect.yaml -------------------------------------------------------------------------------- /examples/standard/http-request-header-add.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/examples/standard/http-request-header-add.yaml -------------------------------------------------------------------------------- /examples/standard/http-request-header-remove.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/examples/standard/http-request-header-remove.yaml -------------------------------------------------------------------------------- /examples/standard/http-request-header-set.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/examples/standard/http-request-header-set.yaml -------------------------------------------------------------------------------- /examples/standard/http-rewrite.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/examples/standard/http-rewrite.yaml -------------------------------------------------------------------------------- /examples/standard/http-routing/bar-httproute.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/examples/standard/http-routing/bar-httproute.yaml -------------------------------------------------------------------------------- /examples/standard/http-routing/foo-httproute.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/examples/standard/http-routing/foo-httproute.yaml -------------------------------------------------------------------------------- /examples/standard/http-routing/gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/examples/standard/http-routing/gateway.yaml -------------------------------------------------------------------------------- /examples/standard/httproute.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/examples/standard/httproute.yaml -------------------------------------------------------------------------------- /examples/standard/multicluster/0-namespaces.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/examples/standard/multicluster/0-namespaces.yaml -------------------------------------------------------------------------------- /examples/standard/multicluster/httproute-gamma.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/examples/standard/multicluster/httproute-gamma.yaml -------------------------------------------------------------------------------- /examples/standard/multicluster/httproute-hybrid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/examples/standard/multicluster/httproute-hybrid.yaml -------------------------------------------------------------------------------- /examples/standard/multicluster/httproute-method.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/examples/standard/multicluster/httproute-method.yaml -------------------------------------------------------------------------------- /examples/standard/multicluster/httproute-simple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/examples/standard/multicluster/httproute-simple.yaml -------------------------------------------------------------------------------- /examples/standard/reference-grant.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/examples/standard/reference-grant.yaml -------------------------------------------------------------------------------- /examples/standard/simple-gateway/gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/examples/standard/simple-gateway/gateway.yaml -------------------------------------------------------------------------------- /examples/standard/simple-gateway/httproute.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/examples/standard/simple-gateway/httproute.yaml -------------------------------------------------------------------------------- /examples/standard/simple-http-https/bar-route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/examples/standard/simple-http-https/bar-route.yaml -------------------------------------------------------------------------------- /examples/standard/simple-http-https/foo-route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/examples/standard/simple-http-https/foo-route.yaml -------------------------------------------------------------------------------- /examples/standard/simple-http-https/gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/examples/standard/simple-http-https/gateway.yaml -------------------------------------------------------------------------------- /examples/standard/tls-basic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/examples/standard/tls-basic.yaml -------------------------------------------------------------------------------- /examples/standard/tls-cert-cross-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/examples/standard/tls-cert-cross-namespace.yaml -------------------------------------------------------------------------------- /examples/standard/wildcard-tls-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/examples/standard/wildcard-tls-gateway.yaml -------------------------------------------------------------------------------- /geps/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/OWNERS -------------------------------------------------------------------------------- /geps/gep-1016/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-1016/index.md -------------------------------------------------------------------------------- /geps/gep-1016/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-1016/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-1282/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-1282/index.md -------------------------------------------------------------------------------- /geps/gep-1282/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-1282/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-1294/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-1294/index.md -------------------------------------------------------------------------------- /geps/gep-1294/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-1294/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-1323/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-1323/index.md -------------------------------------------------------------------------------- /geps/gep-1323/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-1323/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-1324/images/1324-backend-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-1324/images/1324-backend-ref.png -------------------------------------------------------------------------------- /geps/gep-1324/images/1324-service-frontend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-1324/images/1324-service-frontend.png -------------------------------------------------------------------------------- /geps/gep-1324/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-1324/index.md -------------------------------------------------------------------------------- /geps/gep-1324/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-1324/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-1364/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-1364/index.md -------------------------------------------------------------------------------- /geps/gep-1364/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-1364/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-1494/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-1494/index.md -------------------------------------------------------------------------------- /geps/gep-1494/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-1494/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-1619/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-1619/index.md -------------------------------------------------------------------------------- /geps/gep-1619/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-1619/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-1651/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-1651/index.md -------------------------------------------------------------------------------- /geps/gep-1651/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-1651/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-1686/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-1686/index.md -------------------------------------------------------------------------------- /geps/gep-1686/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-1686/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-1709/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-1709/index.md -------------------------------------------------------------------------------- /geps/gep-1709/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-1709/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-1713/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-1713/index.md -------------------------------------------------------------------------------- /geps/gep-1713/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-1713/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-1731/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-1731/index.md -------------------------------------------------------------------------------- /geps/gep-1731/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-1731/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-1742/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-1742/index.md -------------------------------------------------------------------------------- /geps/gep-1742/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-1742/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-1748/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-1748/index.md -------------------------------------------------------------------------------- /geps/gep-1748/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-1748/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-1762/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-1762/index.md -------------------------------------------------------------------------------- /geps/gep-1762/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-1762/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-1767/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-1767/index.md -------------------------------------------------------------------------------- /geps/gep-1767/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-1767/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-1867/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-1867/index.md -------------------------------------------------------------------------------- /geps/gep-1867/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-1867/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-1897/images/1897-TLStermtypes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-1897/images/1897-TLStermtypes.png -------------------------------------------------------------------------------- /geps/gep-1897/images/mesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-1897/images/mesh.png -------------------------------------------------------------------------------- /geps/gep-1897/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-1897/index.md -------------------------------------------------------------------------------- /geps/gep-1897/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-1897/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-1911/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-1911/index.md -------------------------------------------------------------------------------- /geps/gep-1911/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-1911/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-2162/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-2162/index.md -------------------------------------------------------------------------------- /geps/gep-2162/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-2162/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-2257/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-2257/index.md -------------------------------------------------------------------------------- /geps/gep-2257/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-2257/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-2627/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-2627/index.md -------------------------------------------------------------------------------- /geps/gep-2627/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-2627/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-2648/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-2648/index.md -------------------------------------------------------------------------------- /geps/gep-2648/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-2648/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-2649/images/2649-hierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-2649/images/2649-hierarchy.png -------------------------------------------------------------------------------- /geps/gep-2649/images/2649-ingress-complex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-2649/images/2649-ingress-complex.png -------------------------------------------------------------------------------- /geps/gep-2649/images/2649-ingress-simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-2649/images/2649-ingress-simple.png -------------------------------------------------------------------------------- /geps/gep-2649/images/2649-mesh-complex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-2649/images/2649-mesh-complex.png -------------------------------------------------------------------------------- /geps/gep-2649/images/2649-mesh-simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-2649/images/2649-mesh-simple.png -------------------------------------------------------------------------------- /geps/gep-2649/images/2649-policy-hierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-2649/images/2649-policy-hierarchy.png -------------------------------------------------------------------------------- /geps/gep-2649/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-2649/index.md -------------------------------------------------------------------------------- /geps/gep-2649/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-2649/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-2659/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-2659/index.md -------------------------------------------------------------------------------- /geps/gep-2659/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-2659/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-2722/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-2722/index.md -------------------------------------------------------------------------------- /geps/gep-2722/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-2722/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-2907/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-2907/index.md -------------------------------------------------------------------------------- /geps/gep-2907/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-2907/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-3155/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-3155/index.md -------------------------------------------------------------------------------- /geps/gep-3155/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-3155/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-3171/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-3171/index.md -------------------------------------------------------------------------------- /geps/gep-3171/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-3171/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-3388/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-3388/index.md -------------------------------------------------------------------------------- /geps/gep-3388/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-3388/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-3567/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-3567/index.md -------------------------------------------------------------------------------- /geps/gep-3567/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-3567/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-3779/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-3779/index.md -------------------------------------------------------------------------------- /geps/gep-3779/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-3779/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-3792/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-3792/index.md -------------------------------------------------------------------------------- /geps/gep-3792/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-3792/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-3793/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-3793/index.md -------------------------------------------------------------------------------- /geps/gep-3793/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-3793/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-3798/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-3798/index.md -------------------------------------------------------------------------------- /geps/gep-3798/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-3798/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-3949/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-3949/index.md -------------------------------------------------------------------------------- /geps/gep-3949/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-3949/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-4152/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-4152/index.md -------------------------------------------------------------------------------- /geps/gep-4152/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-4152/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-696/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-696/index.md -------------------------------------------------------------------------------- /geps/gep-696/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-696/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-709/images/709-inline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-709/images/709-inline.png -------------------------------------------------------------------------------- /geps/gep-709/images/709-referencegrant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-709/images/709-referencegrant.png -------------------------------------------------------------------------------- /geps/gep-709/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-709/index.md -------------------------------------------------------------------------------- /geps/gep-709/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-709/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-713/images/713-ingress-attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-713/images/713-ingress-attachment.png -------------------------------------------------------------------------------- /geps/gep-713/images/713-servicebinding-complex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-713/images/713-servicebinding-complex.png -------------------------------------------------------------------------------- /geps/gep-713/images/713-servicebinding-simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-713/images/713-servicebinding-simple.png -------------------------------------------------------------------------------- /geps/gep-713/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-713/index.md -------------------------------------------------------------------------------- /geps/gep-713/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-713/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-718/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-718/index.md -------------------------------------------------------------------------------- /geps/gep-718/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-718/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-724/images/724-alt1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-724/images/724-alt1.png -------------------------------------------------------------------------------- /geps/gep-724/images/724-alt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-724/images/724-alt2.png -------------------------------------------------------------------------------- /geps/gep-724/images/724-proposal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-724/images/724-proposal.png -------------------------------------------------------------------------------- /geps/gep-724/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-724/index.md -------------------------------------------------------------------------------- /geps/gep-724/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-724/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-726/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-726/index.md -------------------------------------------------------------------------------- /geps/gep-726/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-726/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-735/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-735/index.md -------------------------------------------------------------------------------- /geps/gep-735/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-735/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-746/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-746/index.md -------------------------------------------------------------------------------- /geps/gep-746/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-746/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-820/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-820/index.md -------------------------------------------------------------------------------- /geps/gep-820/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-820/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-851/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-851/index.md -------------------------------------------------------------------------------- /geps/gep-851/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-851/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-91/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-91/index.md -------------------------------------------------------------------------------- /geps/gep-91/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-91/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-917/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-917/index.md -------------------------------------------------------------------------------- /geps/gep-917/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-917/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-922/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-922/index.md -------------------------------------------------------------------------------- /geps/gep-922/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-922/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-957/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-957/index.md -------------------------------------------------------------------------------- /geps/gep-957/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-957/metadata.yaml -------------------------------------------------------------------------------- /geps/gep-995/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-995/index.md -------------------------------------------------------------------------------- /geps/gep-995/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/gep-995/metadata.yaml -------------------------------------------------------------------------------- /geps/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/geps/overview.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/go.sum -------------------------------------------------------------------------------- /go.work: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/go.work -------------------------------------------------------------------------------- /gwctl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/gwctl/README.md -------------------------------------------------------------------------------- /hack/boilerplate/boilerplate.generatego.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/hack/boilerplate/boilerplate.generatego.txt -------------------------------------------------------------------------------- /hack/boilerplate/boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/hack/boilerplate/boilerplate.go.txt -------------------------------------------------------------------------------- /hack/boilerplate/boilerplate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/hack/boilerplate/boilerplate.py -------------------------------------------------------------------------------- /hack/boilerplate/boilerplate.py.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/hack/boilerplate/boilerplate.py.txt -------------------------------------------------------------------------------- /hack/boilerplate/boilerplate.sh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/hack/boilerplate/boilerplate.sh.txt -------------------------------------------------------------------------------- /hack/build-and-push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/hack/build-and-push.sh -------------------------------------------------------------------------------- /hack/build-install-yaml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/hack/build-install-yaml.sh -------------------------------------------------------------------------------- /hack/build-monthly-yaml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/hack/build-monthly-yaml.sh -------------------------------------------------------------------------------- /hack/crd-ref-templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/hack/crd-ref-templates/README.md -------------------------------------------------------------------------------- /hack/crd-ref-templates/gv_details.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/hack/crd-ref-templates/gv_details.tpl -------------------------------------------------------------------------------- /hack/crd-ref-templates/gv_list.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/hack/crd-ref-templates/gv_list.tpl -------------------------------------------------------------------------------- /hack/crd-ref-templates/type.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/hack/crd-ref-templates/type.tpl -------------------------------------------------------------------------------- /hack/crd-ref-templates/type_members.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/hack/crd-ref-templates/type_members.tpl -------------------------------------------------------------------------------- /hack/delete-crds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/hack/delete-crds.sh -------------------------------------------------------------------------------- /hack/implementations/common/create-cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/hack/implementations/common/create-cluster.sh -------------------------------------------------------------------------------- /hack/implementations/envoy-gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/hack/implementations/envoy-gateway/README.md -------------------------------------------------------------------------------- /hack/install-examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/hack/install-examples.sh -------------------------------------------------------------------------------- /hack/kube-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/hack/kube-env.sh -------------------------------------------------------------------------------- /hack/make-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/hack/make-docs.sh -------------------------------------------------------------------------------- /hack/mkdocs-copy-geps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/hack/mkdocs-copy-geps.py -------------------------------------------------------------------------------- /hack/mkdocs-generate-conformance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/hack/mkdocs-generate-conformance.py -------------------------------------------------------------------------------- /hack/mkdocs/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/hack/mkdocs/OWNERS -------------------------------------------------------------------------------- /hack/mkdocs/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/hack/mkdocs/generate.sh -------------------------------------------------------------------------------- /hack/mkdocs/image/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/hack/mkdocs/image/Dockerfile -------------------------------------------------------------------------------- /hack/mkdocs/image/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/hack/mkdocs/image/entrypoint.sh -------------------------------------------------------------------------------- /hack/mkdocs/image/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/hack/mkdocs/image/requirements.txt -------------------------------------------------------------------------------- /hack/supportedfeatures/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/hack/supportedfeatures/main.go -------------------------------------------------------------------------------- /hack/update-clientset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/hack/update-clientset.sh -------------------------------------------------------------------------------- /hack/update-codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/hack/update-codegen.sh -------------------------------------------------------------------------------- /hack/update-conformance-image-refs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/hack/update-conformance-image-refs.sh -------------------------------------------------------------------------------- /hack/update-mkdocs-nav.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/hack/update-mkdocs-nav.sh -------------------------------------------------------------------------------- /hack/update-protos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/hack/update-protos.sh -------------------------------------------------------------------------------- /hack/verify-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/hack/verify-all.sh -------------------------------------------------------------------------------- /hack/verify-boilerplate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/hack/verify-boilerplate.sh -------------------------------------------------------------------------------- /hack/verify-codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/hack/verify-codegen.sh -------------------------------------------------------------------------------- /hack/verify-docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/hack/verify-docker-build.sh -------------------------------------------------------------------------------- /hack/verify-golint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/hack/verify-golint.sh -------------------------------------------------------------------------------- /hack/verify-mkdocs-nav.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/hack/verify-mkdocs-nav.sh -------------------------------------------------------------------------------- /hack/verify-reports.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/hack/verify-reports.sh -------------------------------------------------------------------------------- /hack/verify-yamllint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/hack/verify-yamllint.sh -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /nav.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/nav.yml -------------------------------------------------------------------------------- /nav.yml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/nav.yml.tmpl -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/netlify.toml -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/clientset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/pkg/client/clientset/versioned/clientset.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/fake/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/pkg/client/clientset/versioned/fake/doc.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/fake/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/pkg/client/clientset/versioned/fake/register.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/scheme/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/pkg/client/clientset/versioned/scheme/doc.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/scheme/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/pkg/client/clientset/versioned/scheme/register.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/typed/apis/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/pkg/client/clientset/versioned/typed/apis/v1/doc.go -------------------------------------------------------------------------------- /pkg/client/informers/externalversions/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/pkg/client/informers/externalversions/factory.go -------------------------------------------------------------------------------- /pkg/client/informers/externalversions/generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/pkg/client/informers/externalversions/generic.go -------------------------------------------------------------------------------- /pkg/client/listers/apis/v1/backendtlspolicy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/pkg/client/listers/apis/v1/backendtlspolicy.go -------------------------------------------------------------------------------- /pkg/client/listers/apis/v1/expansion_generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/pkg/client/listers/apis/v1/expansion_generated.go -------------------------------------------------------------------------------- /pkg/client/listers/apis/v1/gateway.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/pkg/client/listers/apis/v1/gateway.go -------------------------------------------------------------------------------- /pkg/client/listers/apis/v1/gatewayclass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/pkg/client/listers/apis/v1/gatewayclass.go -------------------------------------------------------------------------------- /pkg/client/listers/apis/v1/grpcroute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/pkg/client/listers/apis/v1/grpcroute.go -------------------------------------------------------------------------------- /pkg/client/listers/apis/v1/httproute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/pkg/client/listers/apis/v1/httproute.go -------------------------------------------------------------------------------- /pkg/client/listers/apis/v1alpha2/grpcroute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/pkg/client/listers/apis/v1alpha2/grpcroute.go -------------------------------------------------------------------------------- /pkg/client/listers/apis/v1alpha2/referencegrant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/pkg/client/listers/apis/v1alpha2/referencegrant.go -------------------------------------------------------------------------------- /pkg/client/listers/apis/v1alpha2/tcproute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/pkg/client/listers/apis/v1alpha2/tcproute.go -------------------------------------------------------------------------------- /pkg/client/listers/apis/v1alpha2/tlsroute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/pkg/client/listers/apis/v1alpha2/tlsroute.go -------------------------------------------------------------------------------- /pkg/client/listers/apis/v1alpha2/udproute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/pkg/client/listers/apis/v1alpha2/udproute.go -------------------------------------------------------------------------------- /pkg/client/listers/apis/v1alpha3/backendtlspolicy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/pkg/client/listers/apis/v1alpha3/backendtlspolicy.go -------------------------------------------------------------------------------- /pkg/client/listers/apis/v1alpha3/tlsroute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/pkg/client/listers/apis/v1alpha3/tlsroute.go -------------------------------------------------------------------------------- /pkg/client/listers/apis/v1beta1/gateway.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/pkg/client/listers/apis/v1beta1/gateway.go -------------------------------------------------------------------------------- /pkg/client/listers/apis/v1beta1/gatewayclass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/pkg/client/listers/apis/v1beta1/gatewayclass.go -------------------------------------------------------------------------------- /pkg/client/listers/apis/v1beta1/httproute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/pkg/client/listers/apis/v1beta1/httproute.go -------------------------------------------------------------------------------- /pkg/client/listers/apis/v1beta1/referencegrant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/pkg/client/listers/apis/v1beta1/referencegrant.go -------------------------------------------------------------------------------- /pkg/client/listers/apisx/v1alpha1/xlistenerset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/pkg/client/listers/apisx/v1alpha1/xlistenerset.go -------------------------------------------------------------------------------- /pkg/client/listers/apisx/v1alpha1/xmesh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/pkg/client/listers/apisx/v1alpha1/xmesh.go -------------------------------------------------------------------------------- /pkg/consts/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/pkg/consts/consts.go -------------------------------------------------------------------------------- /pkg/features/backendtlspolicy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/pkg/features/backendtlspolicy.go -------------------------------------------------------------------------------- /pkg/features/features.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/pkg/features/features.go -------------------------------------------------------------------------------- /pkg/features/gateway.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/pkg/features/gateway.go -------------------------------------------------------------------------------- /pkg/features/grpcroute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/pkg/features/grpcroute.go -------------------------------------------------------------------------------- /pkg/features/httproute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/pkg/features/httproute.go -------------------------------------------------------------------------------- /pkg/features/mesh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/pkg/features/mesh.go -------------------------------------------------------------------------------- /pkg/features/referencegrant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/pkg/features/referencegrant.go -------------------------------------------------------------------------------- /pkg/features/tlsroute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/pkg/features/tlsroute.go -------------------------------------------------------------------------------- /pkg/features/udproute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/pkg/features/udproute.go -------------------------------------------------------------------------------- /pkg/generated/openapi/zz_generated.openapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/pkg/generated/openapi/zz_generated.openapi.go -------------------------------------------------------------------------------- /pkg/gep/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/pkg/gep/doc.go -------------------------------------------------------------------------------- /pkg/gep/gepdetail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/pkg/gep/gepdetail.go -------------------------------------------------------------------------------- /pkg/utils/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/pkg/utils/duration.go -------------------------------------------------------------------------------- /pkg/utils/duration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/pkg/utils/duration_test.go -------------------------------------------------------------------------------- /roles/RELEASE_MANAGER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/roles/RELEASE_MANAGER.md -------------------------------------------------------------------------------- /site-src/.mkdocs-exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/.mkdocs-exclude -------------------------------------------------------------------------------- /site-src/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/OWNERS -------------------------------------------------------------------------------- /site-src/api-types/backendtlspolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/api-types/backendtlspolicy.md -------------------------------------------------------------------------------- /site-src/api-types/backendtrafficpolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/api-types/backendtrafficpolicy.md -------------------------------------------------------------------------------- /site-src/api-types/gateway.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/api-types/gateway.md -------------------------------------------------------------------------------- /site-src/api-types/gatewayclass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/api-types/gatewayclass.md -------------------------------------------------------------------------------- /site-src/api-types/grpcroute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/api-types/grpcroute.md -------------------------------------------------------------------------------- /site-src/api-types/httproute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/api-types/httproute.md -------------------------------------------------------------------------------- /site-src/api-types/referencegrant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/api-types/referencegrant.md -------------------------------------------------------------------------------- /site-src/blog/2021/introducing-v1alpha2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/blog/2021/introducing-v1alpha2.md -------------------------------------------------------------------------------- /site-src/blog/2022/graduating-to-beta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/blog/2022/graduating-to-beta.md -------------------------------------------------------------------------------- /site-src/blog/2023/0829-mesh-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/blog/2023/0829-mesh-support.md -------------------------------------------------------------------------------- /site-src/blog/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/blog/index.md -------------------------------------------------------------------------------- /site-src/concepts/api-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/concepts/api-overview.md -------------------------------------------------------------------------------- /site-src/concepts/conformance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/concepts/conformance.md -------------------------------------------------------------------------------- /site-src/concepts/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/concepts/glossary.md -------------------------------------------------------------------------------- /site-src/concepts/roles-and-personas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/concepts/roles-and-personas.md -------------------------------------------------------------------------------- /site-src/concepts/security-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/concepts/security-model.md -------------------------------------------------------------------------------- /site-src/concepts/tooling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/concepts/tooling.md -------------------------------------------------------------------------------- /site-src/concepts/use-cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/concepts/use-cases.md -------------------------------------------------------------------------------- /site-src/concepts/versioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/concepts/versioning.md -------------------------------------------------------------------------------- /site-src/contributing/contributor-ladder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/contributing/contributor-ladder.md -------------------------------------------------------------------------------- /site-src/contributing/devguide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/contributing/devguide.md -------------------------------------------------------------------------------- /site-src/contributing/enhancement-requests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/contributing/enhancement-requests.md -------------------------------------------------------------------------------- /site-src/contributing/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/contributing/index.md -------------------------------------------------------------------------------- /site-src/contributing/release-cycle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/contributing/release-cycle.md -------------------------------------------------------------------------------- /site-src/contributing/style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/contributing/style-guide.md -------------------------------------------------------------------------------- /site-src/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/faq.md -------------------------------------------------------------------------------- /site-src/guides/api-design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/guides/api-design.md -------------------------------------------------------------------------------- /site-src/guides/backend-protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/guides/backend-protocol.md -------------------------------------------------------------------------------- /site-src/guides/crd-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/guides/crd-management.md -------------------------------------------------------------------------------- /site-src/guides/grpc-routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/guides/grpc-routing.md -------------------------------------------------------------------------------- /site-src/guides/http-header-modifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/guides/http-header-modifier.md -------------------------------------------------------------------------------- /site-src/guides/http-redirect-rewrite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/guides/http-redirect-rewrite.md -------------------------------------------------------------------------------- /site-src/guides/http-request-mirroring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/guides/http-request-mirroring.md -------------------------------------------------------------------------------- /site-src/guides/http-routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/guides/http-routing.md -------------------------------------------------------------------------------- /site-src/guides/implementers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/guides/implementers.md -------------------------------------------------------------------------------- /site-src/guides/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/guides/index.md -------------------------------------------------------------------------------- /site-src/guides/infrastructure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/guides/infrastructure.md -------------------------------------------------------------------------------- /site-src/guides/migrating-from-ingress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/guides/migrating-from-ingress.md -------------------------------------------------------------------------------- /site-src/guides/multiple-ns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/guides/multiple-ns.md -------------------------------------------------------------------------------- /site-src/guides/simple-gateway.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/guides/simple-gateway.md -------------------------------------------------------------------------------- /site-src/guides/tcp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/guides/tcp.md -------------------------------------------------------------------------------- /site-src/guides/tls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/guides/tls.md -------------------------------------------------------------------------------- /site-src/guides/traffic-splitting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/guides/traffic-splitting.md -------------------------------------------------------------------------------- /site-src/images/api-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/images/api-model.png -------------------------------------------------------------------------------- /site-src/images/backendtlspolicy-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/images/backendtlspolicy-api.png -------------------------------------------------------------------------------- /site-src/images/cross-namespace-routing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/images/cross-namespace-routing.svg -------------------------------------------------------------------------------- /site-src/images/gateway-roles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/images/gateway-roles.png -------------------------------------------------------------------------------- /site-src/images/gateway-route-binding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/images/gateway-route-binding.png -------------------------------------------------------------------------------- /site-src/images/grpc-routing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/images/grpc-routing.png -------------------------------------------------------------------------------- /site-src/images/grpc-routing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/images/grpc-routing.svg -------------------------------------------------------------------------------- /site-src/images/grpcroute-basic-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/images/grpcroute-basic-example.png -------------------------------------------------------------------------------- /site-src/images/grpcroute-basic-example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/images/grpcroute-basic-example.svg -------------------------------------------------------------------------------- /site-src/images/http-routing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/images/http-routing.png -------------------------------------------------------------------------------- /site-src/images/httproute-basic-example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/images/httproute-basic-example.svg -------------------------------------------------------------------------------- /site-src/images/k8s-favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/images/k8s-favicon.png -------------------------------------------------------------------------------- /site-src/images/lifecycle-new-fields.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/images/lifecycle-new-fields.svg -------------------------------------------------------------------------------- /site-src/images/lifecycle-new-resources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/images/lifecycle-new-resources.png -------------------------------------------------------------------------------- /site-src/images/logo/logo-text-horizontal-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/images/logo/logo-text-horizontal-white.png -------------------------------------------------------------------------------- /site-src/images/logo/logo-text-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/images/logo/logo-text-horizontal.png -------------------------------------------------------------------------------- /site-src/images/logo/logo-text-horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/images/logo/logo-text-horizontal.svg -------------------------------------------------------------------------------- /site-src/images/logo/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/images/logo/logo.svg -------------------------------------------------------------------------------- /site-src/images/policy/hierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/images/policy/hierarchy.png -------------------------------------------------------------------------------- /site-src/images/policy/ingress-attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/images/policy/ingress-attachment.png -------------------------------------------------------------------------------- /site-src/images/policy/ingress-complex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/images/policy/ingress-complex.png -------------------------------------------------------------------------------- /site-src/images/policy/ingress-simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/images/policy/ingress-simple.png -------------------------------------------------------------------------------- /site-src/images/policy/mesh-complex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/images/policy/mesh-complex.png -------------------------------------------------------------------------------- /site-src/images/policy/mesh-simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/images/policy/mesh-simple.png -------------------------------------------------------------------------------- /site-src/images/referencegrant-simple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/images/referencegrant-simple.svg -------------------------------------------------------------------------------- /site-src/images/release-channel-overlap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/images/release-channel-overlap.svg -------------------------------------------------------------------------------- /site-src/images/resource-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/images/resource-model.png -------------------------------------------------------------------------------- /site-src/images/schema-uml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/images/schema-uml.svg -------------------------------------------------------------------------------- /site-src/images/simple-split.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/images/simple-split.png -------------------------------------------------------------------------------- /site-src/images/single-service-gateway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/images/single-service-gateway.png -------------------------------------------------------------------------------- /site-src/images/tls-overview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/images/tls-overview.svg -------------------------------------------------------------------------------- /site-src/images/tls-termination-types.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/images/tls-termination-types.png -------------------------------------------------------------------------------- /site-src/images/traffic-splitting-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/images/traffic-splitting-1.png -------------------------------------------------------------------------------- /site-src/images/traffic-splitting-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/images/traffic-splitting-2.png -------------------------------------------------------------------------------- /site-src/images/traffic-splitting-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/images/traffic-splitting-3.png -------------------------------------------------------------------------------- /site-src/images/v1alpha2-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/images/v1alpha2-group.png -------------------------------------------------------------------------------- /site-src/implementations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/implementations.md -------------------------------------------------------------------------------- /site-src/implementations/.gitignore: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /site-src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/index.md -------------------------------------------------------------------------------- /site-src/js/implementations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/js/implementations.js -------------------------------------------------------------------------------- /site-src/mesh/gamma.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/mesh/gamma.md -------------------------------------------------------------------------------- /site-src/mesh/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/mesh/index.md -------------------------------------------------------------------------------- /site-src/mesh/service-facets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/mesh/service-facets.md -------------------------------------------------------------------------------- /site-src/overrides/partials/copyright.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/overrides/partials/copyright.html -------------------------------------------------------------------------------- /site-src/overrides/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/overrides/partials/header.html -------------------------------------------------------------------------------- /site-src/reference/images/policy-hierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/reference/images/policy-hierarchy.png -------------------------------------------------------------------------------- /site-src/reference/images/referencepolicy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/reference/images/referencepolicy.png -------------------------------------------------------------------------------- /site-src/reference/policy-attachment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/reference/policy-attachment.md -------------------------------------------------------------------------------- /site-src/stylesheets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/site-src/stylesheets/extra.css -------------------------------------------------------------------------------- /tests/cel/backendtlspolicy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/tests/cel/backendtlspolicy_test.go -------------------------------------------------------------------------------- /tests/cel/backendtrafficpolicy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/tests/cel/backendtrafficpolicy_test.go -------------------------------------------------------------------------------- /tests/cel/gateway_experimental_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/tests/cel/gateway_experimental_test.go -------------------------------------------------------------------------------- /tests/cel/gateway_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/tests/cel/gateway_test.go -------------------------------------------------------------------------------- /tests/cel/gatewayclass_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/tests/cel/gatewayclass_test.go -------------------------------------------------------------------------------- /tests/cel/grpcroute_experimental_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/tests/cel/grpcroute_experimental_test.go -------------------------------------------------------------------------------- /tests/cel/grpcroute_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/tests/cel/grpcroute_test.go -------------------------------------------------------------------------------- /tests/cel/httproute_experimental_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/tests/cel/httproute_experimental_test.go -------------------------------------------------------------------------------- /tests/cel/httproute_standard_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/tests/cel/httproute_standard_test.go -------------------------------------------------------------------------------- /tests/cel/httproute_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/tests/cel/httproute_test.go -------------------------------------------------------------------------------- /tests/cel/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/tests/cel/main_test.go -------------------------------------------------------------------------------- /tests/crd/crd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/tests/crd/crd_test.go -------------------------------------------------------------------------------- /tests/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/tests/go.mod -------------------------------------------------------------------------------- /tests/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/tests/go.sum -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/tools/README.md -------------------------------------------------------------------------------- /tools/generator/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/tools/generator/main.go -------------------------------------------------------------------------------- /tools/generator/markers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/tools/generator/markers.go -------------------------------------------------------------------------------- /tools/gepstoc/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/tools/gepstoc/main.go -------------------------------------------------------------------------------- /tools/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/tools/go.mod -------------------------------------------------------------------------------- /tools/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/tools/go.sum -------------------------------------------------------------------------------- /tools/modelschema/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-sigs/gateway-api/HEAD/tools/modelschema/main.go --------------------------------------------------------------------------------