Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for MatchAll (0.18 sec)

  1. pkg/proxy/nftables/proxier.go

    	tx.Add(&knftables.Set{
    		Name:    nodePortIPsSet,
    		Type:    ipvX_addr,
    		Comment: ptr.To("IPs that accept NodePort traffic"),
    	})
    	if proxier.nodePortAddresses.MatchAll() {
    		tx.Delete(&knftables.Set{
    			Name: nodePortIPsSet,
    		})
    	} else {
    		tx.Flush(&knftables.Set{
    			Name: nodePortIPsSet,
    		})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_waypoint.go

    	}
    
    	out := make([]*route.Route, 0, len(vs.Http))
    
    	catchall := false
    	for _, http := range vs.Http {
    		if len(http.Match) == 0 {
    			if r := lb.translateRoute(virtualService, http, nil, listenPort); r != nil {
    				out = append(out, r)
    			}
    			// This is a catchall route, so we can stop processing the rest of the routes.
    			break
    		}
    		for _, match := range http.Match {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_builder_test.go

    	}
    	listenertest.VerifyListener(t, l, listenertest.ListenerTest{
    		FilterChains: []listenertest.FilterChainTest{
    			{Name: "virtualInbound-blackhole"},
    			{Name: "virtualInbound-catchall-http", Type: listenertest.MTLSHTTP},
    			{Name: "virtualInbound-catchall-http", Type: listenertest.PlainHTTP},
    			{Name: "virtualInbound", Type: listenertest.MTLSTCP},
    			{Name: "virtualInbound", Type: listenertest.PlainTCP},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/sidecar_simulation_test.go

    			},
    			Disabled: simulation.Result{
    				ClusterMatched:     "InboundPassthroughCluster",
    				FilterChainMatched: "virtualInbound-catchall-http",
    			},
    			Permissive: simulation.Result{
    				ClusterMatched:     "InboundPassthroughCluster",
    				FilterChainMatched: "virtualInbound-catchall-http",
    			},
    			Strict: simulation.Result{
    				// Plaintext to strict fails
    				Error: simulation.ErrNoFilterChain,
    			},
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_test.go

    	t.Helper()
    	if l == nil {
    		t.Fatalf("nil listener")
    	}
    
    	fc := &tcp.TcpProxy{}
    	if err := getFilterConfig(xdstest.ExtractFilterChain("virtualOutbound-catchall-tcp", l).Filters[0], fc); err != nil {
    		t.Fatalf("failed to get TCP Proxy config: %s", err)
    	}
    	if fc.AccessLog == nil {
    		t.Fatal("expected access log configuration")
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
Back to top