Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 33 for outboundTrafficPolicy (0.24 sec)

  1. operator/pkg/util/merge_iop.go

    	EnablePrometheusMerge          *wrappers.BoolValue                                       `json:"enablePrometheusMerge" patchStrategy:"replace"`
    	OutboundTrafficPolicy          *v1alpha13.MeshConfig_OutboundTrafficPolicy               `json:"outboundTrafficPolicy" patchStrategy:"merge"`
    	InboundTrafficPolicy           *v1alpha13.MeshConfig_InboundTrafficPolicy                `json:"inboundTrafficPolicy" 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)
  2. pilot/pkg/networking/core/httproute_test.go

    					},
    					Hosts: []string{"*/test-headless.com"},
    				},
    				{
    					// Wildcard egress importing from all namespaces
    					Hosts: []string{"*/*"},
    				},
    			},
    			OutboundTrafficPolicy: &networking.OutboundTrafficPolicy{
    				Mode: networking.OutboundTrafficPolicy_REGISTRY_ONLY,
    			},
    		},
    	}
    	sidecarConfigWithAllowAny := &config.Config{
    		Meta: config.Meta{
    			Name:             "foo",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  3. pilot/pkg/networking/util/util_test.go

    				SidecarScope: &model.SidecarScope{
    					OutboundTrafficPolicy: &networking.OutboundTrafficPolicy{
    						Mode: networking.OutboundTrafficPolicy_REGISTRY_ONLY,
    					},
    				},
    			},
    			result: false,
    		},
    		{
    			name: "OutboundTrafficPolicyAllowAny",
    			node: &model.Proxy{
    				SidecarScope: &model.SidecarScope{
    					OutboundTrafficPolicy: &networking.OutboundTrafficPolicy{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 40K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener_builder.go

    		// no need to check for nil value as the previous if check has checked
    		if node.SidecarScope.OutboundTrafficPolicy.EgressProxy != nil {
    			// user has provided an explicit destination for all the unknown traffic.
    			// build a cluster out of this destination
    			egressCluster = istio_route.GetDestinationCluster(node.SidecarScope.OutboundTrafficPolicy.EgressProxy,
    				nil, 0)
    		}
    	} else {
    		egressCluster = util.BlackHoleCluster
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  5. pilot/pkg/model/push_context_test.go

    			{
    				Hosts: []string{"default/*"},
    			},
    		},
    		OutboundTrafficPolicy: &networking.OutboundTrafficPolicy{},
    	}
    	sidecarWithoutWorkloadSelector := &networking.Sidecar{
    		Egress: []*networking.IstioEgressListener{
    			{
    				Hosts: []string{"default/*"},
    			},
    		},
    		OutboundTrafficPolicy: &networking.OutboundTrafficPolicy{},
    	}
    	configWithWorkloadSelector := config.Config{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  6. pkg/config/validation/validation_test.go

    			OutboundTrafficPolicy: &networking.OutboundTrafficPolicy{
    				Mode: networking.OutboundTrafficPolicy_ALLOW_ANY,
    			},
    			Egress: []*networking.IstioEgressListener{
    				{
    					Hosts: []string{"*/*"},
    				},
    			},
    		}, true, false},
    		{"sidecar egress proxy with RESGISTRY_ONLY(default)", &networking.Sidecar{
    			OutboundTrafficPolicy: &networking.OutboundTrafficPolicy{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  7. tests/integration/pilot/multiplecontrolplanes/main_test.go

    			cfg.ControlPlaneValues = fmt.Sprintf(`
    namespace: %s
    revision: usergroup-1
    meshConfig:
      # REGISTRY_ONLY on one control plane is used to verify custom resources scoping
      outboundTrafficPolicy:
        mode: REGISTRY_ONLY
      # CR scoping requires discoverySelectors to be configured
      discoverySelectors:
        - matchLabels:
            usergroup: usergroup-1
    values:
      global:
        istioNamespace: %s`,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 16:52:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. pkg/config/mesh/mesh_test.go

          clusterLocal: true
        host:
          - "*.myns.svc.cluster.local"
    ingressClass: foo
    enableTracing: false
    trustDomainAliases: ["default", "both"]
    defaultServiceExportTo: 
    - "foo"
    outboundTrafficPolicy:
      mode: REGISTRY_ONLY
    clusterLocalNamespaces: 
    - "foons"
    defaultProviders:
      tracing: [foo]
    extensionProviders:
    - name: sd
      stackdriver: {}
    defaultConfig:
      tracing: {}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. pilot/pkg/networking/util/util.go

    }
    
    // IsAllowAnyOutbound checks if allow_any is enabled for outbound traffic
    func IsAllowAnyOutbound(node *model.Proxy) bool {
    	return node.SidecarScope != nil &&
    		node.SidecarScope.OutboundTrafficPolicy != nil &&
    		node.SidecarScope.OutboundTrafficPolicy.Mode == networking.OutboundTrafficPolicy_ALLOW_ANY
    }
    
    func StringToExactMatch(in []string) []*matcher.StringMatcher {
    	return pm.StringToExactMatch(in)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  10. pkg/config/mesh/mesh.go

    		IngressClass:                "istio",
    		TrustDomain:                 constants.DefaultClusterLocalDomain,
    		TrustDomainAliases:          []string{},
    		EnableAutoMtls:              wrappers.Bool(true),
    		OutboundTrafficPolicy:       &meshconfig.MeshConfig_OutboundTrafficPolicy{Mode: meshconfig.MeshConfig_OutboundTrafficPolicy_ALLOW_ANY},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top