Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for PathSpecifier (0.16 sec)

  1. pilot/pkg/xds/testdata/none_rds.json

              "name": "s1http.none:2001",
              "domains": [
                "s1http.none",
                "s1http.none:2001"
              ],
              "routes": [
                {
                  "match": {
                    "PathSpecifier": {
                      "Prefix": "/"
                    }
                  },
                  "Action": {
                    "Route": {
                      "ClusterSpecifier": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 22 21:13:54 UTC 2020
    - 3.2K bytes
    - Viewed (0)
  2. pilot/pkg/security/authn/policy_applier_test.go

    					TypedConfig: protoconv.MessageToAny(
    						&envoy_jwt.JwtAuthentication{
    							Rules: []*envoy_jwt.RequirementRule{
    								{
    									Match: &route.RouteMatch{
    										PathSpecifier: &route.RouteMatch_Prefix{
    											Prefix: "/",
    										},
    									},
    									RequirementType: &envoy_jwt.RequirementRule_Requires{
    										Requires: &envoy_jwt.JwtRequirement{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 07:32:22 UTC 2023
    - 60.2K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/route/route_test.go

    	first := []*envoyroute.Route{
    		{Match: &envoyroute.RouteMatch{PathSpecifier: &envoyroute.RouteMatch_Prefix{Prefix: "/"}}},
    		{Match: &envoyroute.RouteMatch{PathSpecifier: &envoyroute.RouteMatch_Path{Path: "/path1"}}},
    		{Match: &envoyroute.RouteMatch{PathSpecifier: &envoyroute.RouteMatch_Prefix{Prefix: "/prefix1"}}},
    		{Match: &envoyroute.RouteMatch{PathSpecifier: &envoyroute.RouteMatch_SafeRegex{
    			SafeRegex: &matcher.RegexMatcher{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/route/route_internal_test.go

    			route: &route.Route{
    				Name: "catch-all",
    				Match: &route.RouteMatch{
    					PathSpecifier: &route.RouteMatch_Prefix{
    						Prefix: "/",
    					},
    				},
    			},
    			want: true,
    		},
    		{
    			name: "catch all prefix >= 1.14",
    			route: &route.Route{
    				Name: "catch-all",
    				Match: &route.RouteMatch{
    					PathSpecifier: &route.RouteMatch_PathSeparatedPrefix{
    						PathSeparatedPrefix: "/",
    					},
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 11 02:47:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. tests/integration/pilot/forwardproxy/envoy_config_generator.go

    												ConnectConfig: &envoy_route.RouteAction_UpgradeConfig_ConnectConfig{},
    											},
    										},
    									},
    								},
    								Match: &envoy_route.RouteMatch{
    									PathSpecifier: &envoy_route.RouteMatch_ConnectMatcher_{},
    								},
    							},
    						},
    					},
    				},
    			},
    		},
    		StatPrefix: "http_forward_proxy",
    	}
    	if httpVersion == HTTP1 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 27 19:22:30 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/route/route.go

    		case *networking.StringMatch_Exact:
    			out.PathSpecifier = &route.RouteMatch_Path{Path: m.Exact}
    		case *networking.StringMatch_Prefix:
    			if (model.UseIngressSemantics(vs) || model.UseGatewaySemantics(vs)) && m.Prefix != "/" {
    				path := strings.TrimSuffix(m.Prefix, "/")
    				out.PathSpecifier = &route.RouteMatch_PathSeparatedPrefix{PathSeparatedPrefix: path}
    			} else {
    				out.PathSpecifier = &route.RouteMatch_Prefix{Prefix: m.Prefix}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  7. pilot/pkg/security/authn/policy_applier.go

    	if len(innerAndList) == 1 {
    		return &envoy_jwt.JwtAuthentication{
    			Rules: []*envoy_jwt.RequirementRule{
    				{
    					Match: &route.RouteMatch{
    						PathSpecifier: &route.RouteMatch_Prefix{
    							Prefix: "/",
    						},
    					},
    					RequirementType: &envoy_jwt.RequirementRule_Requires{
    						Requires: innerAndList[0],
    					},
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  8. pkg/adsc/delta_test.go

    	// Define the route entries here
    	VirtualHosts: []*route.VirtualHost{
    		{
    			Name:    "test-vhost",
    			Domains: []string{"*"},
    			Routes: []*route.Route{
    				{
    					Match: &route.RouteMatch{
    						PathSpecifier: &route.RouteMatch_Prefix{Prefix: "/"},
    					},
    					Action: &route.Route_Route{
    						Route: &route.RouteAction{
    							ClusterSpecifier: &route.RouteAction_Cluster{Cluster: "test-cluster"},
    						},
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 09:32:41 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/httproute.go

    		}
    
    		return &route.VirtualHost{
    			Name:    util.Passthrough,
    			Domains: []string{"*"},
    			Routes: []*route.Route{
    				{
    					Name: util.Passthrough,
    					Match: &route.RouteMatch{
    						PathSpecifier: &route.RouteMatch_Prefix{Prefix: "/"},
    					},
    					Action: &route.Route_Route{
    						Route: routeAction,
    					},
    				},
    			},
    			IncludeRequestAttemptCount: includeRequestAttemptCount,
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (1)
  10. pilot/pkg/networking/grpcgen/lds.go

    							Name: "inbound",
    							VirtualHosts: []*route.VirtualHost{{
    								Domains: []string{"*"},
    								Routes: []*route.Route{{
    									Match: &route.RouteMatch{
    										PathSpecifier: &route.RouteMatch_Prefix{Prefix: "/"},
    									},
    									Action: &route.Route_NonForwardingAction{},
    								}},
    							}},
    						},
    					},
    					HttpFilters: fc,
    				}),
    			},
    		}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 14.6K bytes
    - Viewed (0)
Back to top