Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for virtualInbound (0.17 sec)

  1. pilot/pkg/model/listener.go

    	VirtualInboundBlackholeFilterChainName = "virtualInbound-blackhole"
    
    	// VirtualInboundListenerName is the name for traffic capture listener
    	VirtualInboundListenerName = "virtualInbound"
    
    	// VirtualInboundCatchAllHTTPFilterChainName is the name of the catch all http filter chain
    	VirtualInboundCatchAllHTTPFilterChainName = "virtualInbound-catchall-http"
    )
    
    const (
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 10 17:24:55 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. pilot/pkg/networking/core/sidecar_simulation_test.go

    				CallMode: simulation.CallModeInbound,
    			},
    			Disabled: simulation.Result{
    				ListenerMatched:    "virtualInbound",
    				FilterChainMatched: "0.0.0.0_81",
    				ClusterMatched:     "inbound|81||",
    				StrictMatch:        true,
    			},
    			Permissive: simulation.Result{
    				ListenerMatched:    "virtualInbound",
    				FilterChainMatched: "0.0.0.0_81",
    				ClusterMatched:     "inbound|81||",
    				StrictMatch:        true,
    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/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)
  6. istioctl/pkg/authz/testdata/configdump.yaml

          },
          "last_updated": "2023-06-20T09:07:41.992Z"
         }
        },
        {
         "name": "virtualInbound",
         "active_state": {
          "version_info": "2023-06-20T09:07:41Z/3",
          "listener": {
           "@type": "type.googleapis.com/envoy.config.listener.v3.Listener",
           "name": "virtualInbound",
           "address": {
            "socket_address": {
             "address": "0.0.0.0",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 14:20:23 UTC 2023
    - 206.7K bytes
    - Viewed (0)
  7. pilot/test/xdstest/validate.go

    		// This hack skips these ones, as they will be processed later
    		if hcm := ExtractHTTPConnectionManager(t, l1); strings.HasPrefix(hcm.GetStatPrefix(), "inbound_") && l.Name != "virtualInbound" {
    			continue
    		}
    
    		s := Dump(t, l1.FilterChainMatch)
    		if i2, ok := check[s]; ok {
    			var fcms []string
    			for _, fc := range l.FilterChains {
    				fcms = append(fcms, Dump(t, fc.GetFilterChainMatch()))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

    						PortSpecifier: &core.SocketAddress_PortValue{
    							PortValue: 15006,
    						},
    					},
    				},
    			},
    			FilterChains: []*listener.FilterChain{
    				{
    					Name: "virtualInbound-blackhole",
    					FilterChainMatch: &listener.FilterChainMatch{
    						DestinationPort: &wrapperspb.UInt32Value{
    							Value: 15006,
    						},
    					},
    					Filters: []*listener.Filter{
    						{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  9. 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