Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 33 for outboundTrafficPolicy (0.3 sec)

  1. pilot/pkg/xds/xds_test.go

      endpoints:
      - address: 10.10.10.20
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: sidecar-with-egressproxy
      namespace: app
    spec:
      outboundTrafficPolicy:
        mode: ALLOW_ANY
        egressProxy:
          host: foo.bar
          subset: shiny
          port:
            number: 5000
      egress:
      - hosts:
        - "*/*"
    `,
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. tests/integration/telemetry/policy/helper_test.go

    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: restrict-to-service-entry-namespace
    spec:
      egress:
      - hosts:
        - "{{.ImportNamespace}}/*"
        - "istio-system/*"
      outboundTrafficPolicy:
        mode: "{{.TrafficPolicyMode}}"
    `
    
    	Gateway = `
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: istio-egressgateway
    spec:
      selector:
        istio: egressgateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. tests/integration/pilot/common/routing.go

    	// Let us enable outboundTrafficPolicy REGISTRY_ONLY
    	// on one of the workloads, to verify selective external connectivity
    	SidecarScope := fmt.Sprintf(`apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: restrict-external-service
      namespace: %s
    spec:
      workloadSelector:
        labels:
          app: a
      outboundTrafficPolicy:
        mode: "REGISTRY_ONLY"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/httproute.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)
    		}
    
    		routeAction := &route.RouteAction{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-with-revision-canary.yaml

    e},"meshNetworks":{},"mtls":{"auto":false,"enabled":false},"multiCluster":{"clusterName":"","enabled":false},"namespace":"istio-system","network":"","omitSidecarInjectorConfigMap":false,"oneNamespace":false,"operatorManageWebhooks":false,"outboundTrafficPolicy":{"mode":"ALLOW_ANY"},"policyCheckFailOpen":false,"policyNamespace":"istio-system","priorityClassName":"","prometheusNamespace":"istio-system","proxy":{"accessLogEncoding":"TEXT","accessLogFile":"","accessLogFormat":"","autoInject":"enable...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-configmap.yaml

    e},"meshNetworks":{},"mtls":{"auto":false,"enabled":false},"multiCluster":{"clusterName":"","enabled":false},"namespace":"istio-system","network":"","omitSidecarInjectorConfigMap":false,"oneNamespace":false,"operatorManageWebhooks":false,"outboundTrafficPolicy":{"mode":"ALLOW_ANY"},"policyCheckFailOpen":false,"policyNamespace":"istio-system","priorityClassName":"","prometheusNamespace":"istio-system","proxy":{"accessLogEncoding":"TEXT","accessLogFile":"","accessLogFormat":"","autoInject":"enable...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-enabled-nsbydefault.yaml

    e},"meshNetworks":{},"mtls":{"auto":false,"enabled":false},"multiCluster":{"clusterName":"","enabled":false},"namespace":"istio-system","network":"","omitSidecarInjectorConfigMap":false,"oneNamespace":false,"operatorManageWebhooks":false,"outboundTrafficPolicy":{"mode":"ALLOW_ANY"},"policyCheckFailOpen":false,"policyNamespace":"istio-system","priorityClassName":"","prometheusNamespace":"istio-system","proxy":{"accessLogEncoding":"TEXT","accessLogFile":"","accessLogFormat":"","autoInject":"enable...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-absolute-override.yaml

    e},"meshNetworks":{},"mtls":{"auto":false,"enabled":false},"multiCluster":{"clusterName":"","enabled":false},"namespace":"istio-system","network":"","omitSidecarInjectorConfigMap":false,"oneNamespace":false,"operatorManageWebhooks":false,"outboundTrafficPolicy":{"mode":"ALLOW_ANY"},"policyCheckFailOpen":false,"policyNamespace":"istio-system","priorityClassName":"","prometheusNamespace":"istio-system","proxy":{"accessLogEncoding":"TEXT","accessLogFile":"","accessLogFormat":"","autoInject":"enable...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  9. pkg/config/validation/validation.go

    				}
    			}
    		}
    
    		errs = AppendValidation(errs, validateSidecarOutboundTrafficPolicy(rule.OutboundTrafficPolicy))
    
    		return errs.Unwrap()
    	})
    
    func validateSidecarOutboundTrafficPolicy(tp *networking.OutboundTrafficPolicy) (errs error) {
    	if tp == nil {
    		return
    	}
    	mode := tp.GetMode()
    	if tp.EgressProxy != 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)
  10. pilot/pkg/networking/core/sidecar_simulation_test.go

    	} {
    		t.Run(tp.String(), func(t *testing.T) {
    			o := xds.FakeOptions{
    				MeshConfig: func() *meshconfig.MeshConfig {
    					m := mesh.DefaultMeshConfig()
    					m.OutboundTrafficPolicy.Mode = tp
    					return m
    				}(),
    			}
    			expectedCluster := map[meshconfig.MeshConfig_OutboundTrafficPolicy_Mode]string{
    				meshconfig.MeshConfig_OutboundTrafficPolicy_REGISTRY_ONLY: util.BlackHoleCluster,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top