Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for virtualInbound (0.34 sec)

  1. pilot/pkg/networking/core/listener_builder_test.go

    		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},
    			{Name: "virtualInbound", Type: listenertest.StandardTLS},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  2. pilot/pkg/xds/lds_test.go

    	}, nil, watchAll)
    
    	// Expect 2 HTTP listeners for outbound 8081 and one virtualInbound which has the same inbound 9080
    	// as a filter chain. Since the adsclient code treats any listener with a HTTP connection manager filter in ANY
    	// filter chain,  as a HTTP listener, we end up getting both 9080 and virtualInbound.
    	if len(adsc.GetHTTPListeners()) != 2 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. pilot/pkg/xds/xds_test.go

    			t.Fatalf("expected 1.1.1.1, got %v", endpoints["outbound|80||app.com"])
    		}
    
    		assertListEqual(t, xdstest.ExtractListenerNames(s.Listeners(proxy)), []string{
    			"0.0.0.0_80",
    			"5.5.5.5_443",
    			"virtualInbound",
    			"virtualOutbound",
    		})
    	})
    
    	t.Run("Ingress Listener", func(t *testing.T) {
    		s := xds.NewFakeDiscoveryServer(t, xds.FakeOptions{
    			ConfigString: scopeConfig,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. pkg/model/proxy.go

    	ExitOnZeroActiveConnections StringBool `json:"EXIT_ON_ZERO_ACTIVE_CONNECTIONS,omitempty"`
    
    	// InboundListenerExactBalance sets connection balance config to use exact_balance for virtualInbound,
    	// as long as QUIC, since it uses UDP, isn't also used.
    	InboundListenerExactBalance StringBool `json:"INBOUND_LISTENER_EXACT_BALANCE,omitempty"`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
Back to top