Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for TrafficInterceptionMode (0.27 sec)

  1. pkg/model/proxy.go

    }
    
    // TrafficInterceptionMode indicates how traffic to/from the workload is captured and
    // sent to Envoy. This should not be confused with the CaptureMode in the API that indicates
    // how the user wants traffic to be intercepted for the listener. TrafficInterceptionMode is
    // always derived from the Proxy metadata
    type TrafficInterceptionMode string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  2. pilot/pkg/model/context.go

    	InterceptionNone TrafficInterceptionMode = "NONE"
    
    	// InterceptionTproxy implies traffic intercepted by IPtables with TPROXY mode
    	InterceptionTproxy TrafficInterceptionMode = "TPROXY"
    
    	// InterceptionRedirect implies traffic intercepted by IPtables with REDIRECT mode
    	// This is our default mode
    	InterceptionRedirect TrafficInterceptionMode = "REDIRECT"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_test.go

    }
    
    func TestVirtualListeners_TrafficRedirectionEnabled(t *testing.T) {
    	cases := []struct {
    		name string
    		mode model.TrafficInterceptionMode
    	}{
    		{
    			name: "empty value",
    			mode: "",
    		},
    		{
    			name: "unknown value",
    			mode: model.TrafficInterceptionMode("UNKNOWN_VALUE"),
    		},
    		{
    			name: string(model.InterceptionTproxy),
    			mode: model.InterceptionTproxy,
    		},
    		{
    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