Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for allow_any (0.16 sec)

  1. pilot/pkg/networking/core/envoyfilter/rc_patch_test.go

    					RouteConfiguration: &networking.EnvoyFilter_RouteConfigurationMatch{
    						Vhost: &networking.EnvoyFilter_RouteConfigurationMatch_VirtualHostMatch{
    							Name: "allow_any",
    						},
    					},
    				},
    			},
    			Patch: &networking.EnvoyFilter_Patch{
    				Operation: networking.EnvoyFilter_Patch_REMOVE,
    			},
    		},
    		{
    			ApplyTo: networking.EnvoyFilter_VIRTUAL_HOST,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  2. pkg/config/validation/validation_test.go

    					},
    					DefaultEndpoint: "[::1]:9999",
    				},
    			},
    			Egress: []*networking.IstioEgressListener{
    				{
    					Hosts: []string{"*/*"},
    				},
    			},
    		}, true, false},
    		{"ALLOW_ANY sidecar egress policy with no egress proxy ", &networking.Sidecar{
    			OutboundTrafficPolicy: &networking.OutboundTrafficPolicy{
    				Mode: networking.OutboundTrafficPolicy_ALLOW_ANY,
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  3. pilot/pkg/model/sidecar.go

    	destinationRulesByNames map[types.NamespacedName]*config.Config
    
    	// OutboundTrafficPolicy defines the outbound traffic policy for this sidecar.
    	// If OutboundTrafficPolicy is ALLOW_ANY traffic to unknown destinations will
    	// be forwarded.
    	OutboundTrafficPolicy *networking.OutboundTrafficPolicy
    
    	// Set of known configs this sidecar depends on.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  4. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                        type: object
                      mode:
                        description: |2-
    
    
                          Valid Options: REGISTRY_ONLY, ALLOW_ANY
                        enum:
                        - REGISTRY_ONLY
                        - ALLOW_ANY
                        type: string
                    type: object
                  workloadSelector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  5. manifests/charts/base/crds/crd-all.gen.yaml

                        type: object
                      mode:
                        description: |2-
    
    
                          Valid Options: REGISTRY_ONLY, ALLOW_ANY
                        enum:
                        - REGISTRY_ONLY
                        - ALLOW_ANY
                        type: string
                    type: object
                  workloadSelector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/values_types.proto

      enum Mode {
        // Outbound traffic to unknown destinations will be allowed, in case there are no services or ServiceEntries for the destination port
        ALLOW_ANY = 0;
        // Restrict outbound traffic to services defined in the service registry as well as those defined through ServiceEntries
        REGISTRY_ONLY = 1;
      }
      Mode mode = 2;
    }
    
    // Configuration for Pilot.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  7. tests/integration/ambient/baseline_test.go

    		Run(func(t framework.TestContext) {
    			svcs := apps.All
    			for _, svc := range svcs {
    				if svc.Config().IsUncaptured() || svc.Config().HasSidecar() {
    					continue
    				}
    				t.NewSubTestf("ALLOW_ANY %v to external service", svc.Config().Service).Run(func(t framework.TestContext) {
    					svc.CallOrFail(t, echo.CallOptions{
    						Address: apps.MockExternal.ClusterLocalFQDN(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  8. pkg/config/validation/validation.go

    		return
    	}
    	mode := tp.GetMode()
    	if tp.EgressProxy != nil {
    		if mode != networking.OutboundTrafficPolicy_ALLOW_ANY {
    			errs = appendErrors(errs, fmt.Errorf("sidecar: egress_proxy must be set only with ALLOW_ANY outbound_traffic_policy mode"))
    			return
    		}
    
    		errs = appendErrors(errs, agent.ValidateFQDN(tp.EgressProxy.GetHost()))
    
    		if tp.EgressProxy.Port == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/route/route_cache.go

    	// This allows resolving ServiceEntries, which is especially useful for distinguishing TCP traffic
    	// This depends on DNSCapture.
    	DNSAutoAllocate bool
    	// AllowAny indicates if the proxy should allow all outbound traffic or only known registries
    	AllowAny bool
    
    	ListenerPort            int
    	Services                []*model.Service
    	VirtualServices         []config.Config
    	DelegateVirtualServices []model.ConfigHash
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                        required:
                        - host
                        type: object
                      mode:
                        enum:
                        - REGISTRY_ONLY
                        - ALLOW_ANY
                        type: string
                    type: object
                  workloadSelector:
                    description: Criteria used to select the specific set of pods/VMs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
Back to top