Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for inboundTrafficPolicy (0.39 sec)

  1. releasenotes/notes/50700.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 50700
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 26 16:51:17 UTC 2024
    - 217 bytes
    - Viewed (0)
  2. operator/pkg/util/merge_iop.go

    	OutboundTrafficPolicy          *v1alpha13.MeshConfig_OutboundTrafficPolicy               `json:"outboundTrafficPolicy" patchStrategy:"merge"`
    	InboundTrafficPolicy           *v1alpha13.MeshConfig_InboundTrafficPolicy                `json:"inboundTrafficPolicy" patchStrategy:"merge"`
    	TCPKeepalive                   *v1alpha3.ConnectionPoolSettings_TCPSettings_TcpKeepalive `json:"tcpKeepalive" patchStrategy:"merge"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 18:21:41 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  3. pkg/config/mesh/mesh.go

    		EnableAutoMtls:              wrappers.Bool(true),
    		OutboundTrafficPolicy:       &meshconfig.MeshConfig_OutboundTrafficPolicy{Mode: meshconfig.MeshConfig_OutboundTrafficPolicy_ALLOW_ANY},
    		InboundTrafficPolicy:        &meshconfig.MeshConfig_InboundTrafficPolicy{Mode: meshconfig.MeshConfig_InboundTrafficPolicy_PASSTHROUGH},
    		LocalityLbSetting: &v1alpha3.LocalityLoadBalancerSetting{
    			Enabled: wrappers.Bool(true),
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_test.go

    	return &meshconfig.MeshConfig{
    		ConnectTimeout: &durationpb.Duration{
    			Seconds: 10,
    			Nanos:   1,
    		},
    		EnableAutoMtls: &wrappers.BoolValue{
    			Value: false,
    		},
    		InboundTrafficPolicy: &meshconfig.MeshConfig_InboundTrafficPolicy{},
    	}
    }
    
    func TestConnectionPoolSettings(t *testing.T) {
    	basicSettings := &networking.ConnectionPoolSettings{
    		Http: &networking.ConnectionPoolSettings_HTTPSettings{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  5. pkg/kube/inject/inject_test.go

    			},
    		},
    		{
    			// Validates localhost probes get injected correctly
    			in:   "hello-probes-localhost.yaml",
    			want: "hello-probes-localhost.yaml.injected",
    			mesh: func(m *meshapi.MeshConfig) {
    				m.InboundTrafficPolicy = &meshapi.MeshConfig_InboundTrafficPolicy{
    					Mode: meshapi.MeshConfig_InboundTrafficPolicy_LOCALHOST,
    				}
    			},
    		},
    	}
    	// Keep track of tests we add options above
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/sidecar_simulation_test.go

    				Instances: tt.instances,
    				Configs:   tt.configs,
    				MeshConfig: func() *meshconfig.MeshConfig {
    					m := mesh.DefaultMeshConfig()
    					if tt.disableInboundPassthrough {
    						m.InboundTrafficPolicy.Mode = meshconfig.MeshConfig_InboundTrafficPolicy_LOCALHOST
    					}
    					return m
    				}(),
    			})
    			sim := simulation.NewSimulationFromConfigGen(t, s, s.SetupProxy(tt.proxy))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_builder_test.go

    								},
    							},
    						},
    					},
    				},
    			},
    			meshConfig: &meshconfig.MeshConfig{
    				OutboundClusterStatName: "%SERVICE%_%SUBSET_NAME%_%SERVICE_PORT_NAME%_%SERVICE_PORT%",
    				InboundTrafficPolicy:    &meshconfig.MeshConfig_InboundTrafficPolicy{},
    				EnableAutoMtls: &wrappers.BoolValue{
    					Value: false,
    				},
    			},
    			expectedSubsetClusters: []*cluster.Cluster{
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
Back to top