Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for outboundTrafficPolicy (0.36 sec)

  1. pkg/config/analysis/analyzers/deprecation/deprecation.go

    func (*FieldAnalyzer) analyzeSidecar(r *resource.Instance, ctx analysis.Context) {
    	sc := r.Message.(*v1alpha3.Sidecar)
    
    	if sc.OutboundTrafficPolicy != nil {
    		if sc.OutboundTrafficPolicy.EgressProxy != nil {
    			ctx.Report(gvk.VirtualService,
    				msg.NewDeprecated(r, ignoredMessage("OutboundTrafficPolicy.EgressProxy")))
    		}
    	}
    }
    
    func (*FieldAnalyzer) analyzeVirtualService(r *resource.Instance, ctx analysis.Context) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 02 20:50:14 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. releasenotes/notes/rds-cache-allow-any.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
    - 39794
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 21 03:12:49 UTC 2022
    - 201 bytes
    - Viewed (0)
  3. pilot/pkg/model/sidecar_test.go

    		},
    		Spec: &networking.Sidecar{
    			OutboundTrafficPolicy: &networking.OutboundTrafficPolicy{
    				Mode: networking.OutboundTrafficPolicy_REGISTRY_ONLY,
    			},
    		},
    	}
    	configAllowAny := &config.Config{
    		Meta: config.Meta{
    			Name:      "foo",
    			Namespace: "not-default",
    		},
    		Spec: &networking.Sidecar{
    			OutboundTrafficPolicy: &networking.OutboundTrafficPolicy{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/output/pilot_merge_meshconfig.golden.yaml

          drainDuration: 12s
          tracing:
            zipkin:
              address: zipkin.istio-system:9411
        defaultProviders:
          metrics:
          - prometheus
        enablePrometheusMerge: true
        outboundTrafficPolicy:
          mode: REGISTRY_ONLY
        rootNamespace: istio-control
        trustDomain: cluster.local
      meshNetworks: 'networks: {}'
    kind: ConfigMap
    metadata:
      labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 743 bytes
    - Viewed (0)
  5. pilot/pkg/model/sidecar.go

    	out.selectDestinationRules(ps, configNamespace)
    
    	if sidecar.OutboundTrafficPolicy == nil {
    		if ps.Mesh.OutboundTrafficPolicy != nil {
    			out.OutboundTrafficPolicy = &networking.OutboundTrafficPolicy{
    				Mode: networking.OutboundTrafficPolicy_Mode(ps.Mesh.OutboundTrafficPolicy.Mode),
    			}
    		}
    	} else {
    		out.OutboundTrafficPolicy = sidecar.OutboundTrafficPolicy
    	}
    
    	return out
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  6. manifests/charts/istio-control/istio-discovery/templates/NOTES.txt

        * https://istio.io/latest/docs/ops/best-practices/security/
    
    For further documentation see https://istio.io website
    
    {{-
      $deps := dict
        "global.outboundTrafficPolicy" "meshConfig.outboundTrafficPolicy"
        "global.certificates" "meshConfig.certificates"
        "global.localityLbSetting" "meshConfig.localityLbSetting"
        "global.policyCheckFailOpen" "meshConfig.policyCheckFailOpen"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. operator/pkg/apis/istio/v1alpha1/validation/validation.go

    	var errs util.Errors
    	messages := []string{}
    	warningSettings := []deprecatedSettings{
    		{"Values.global.certificates", "meshConfig.certificates", nil},
    		{"Values.global.outboundTrafficPolicy", "meshConfig.outboundTrafficPolicy", nil},
    		{"Values.global.localityLbSetting", "meshConfig.localityLbSetting", nil},
    		{"Values.global.policyCheckFailOpen", "meshConfig.policyCheckFailOpen", false},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top