Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 6,873 for egress (0.13 sec)

  1. Makefile.core.mk

    CHARTS = gateway default ztunnel istio-operator base "gateways/istio-ingress" "gateways/istio-egress" "istio-control/istio-discovery" istiod-remote istio-cni
    copy-templates:
    	rm manifests/charts/istiod-remote/templates/*
    	rm manifests/charts/gateways/istio-egress/templates/*
    
    	# gateway charts
    	cp -r manifests/charts/gateways/istio-ingress/templates/* manifests/charts/gateways/istio-egress/templates
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  2. cmd/kube-apiserver/app/options/options_test.go

    		"--client-ca-file=/client-ca",
    		"--cloud-config=/cloud-config",
    		"--cloud-provider=azure",
    		"--cors-allowed-origins=10.10.10.100,10.10.10.200",
    		"--contention-profiling=true",
    		"--egress-selector-config-file=/var/run/kubernetes/egress-selector/connectivity.yaml",
    		"--enable-aggregator-routing=true",
    		"--enable-priority-and-fairness=false",
    		"--enable-logs-handler=false",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_test.go

    	// Verify that an implicit catch all egress listener will not bind to privileged ports
    	// if proxy is not using Iptables and cannot bind to privileged ports (1-1023).
    	//
    	// It is very common for the catch all egress listener to match services on ports 80 and 443.
    	// Therefore, the default behavior should not force users to start from looking for a workaround.
    	t.Run("implicit catch all egress listener", func(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  4. tests/integration/pilot/cross_revision_test.go

    			t.ConfigIstio().YAML(apps.Namespace.Name(), `apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: allow-cross-namespaces
    spec:
      workloadSelector:
        labels:
          app: a
      egress:
      - hosts:
        - "*/*"`).ApplyOrFail(t)
    			// create an echo instance in each revisioned namespace, all these echo
    			// instances will be injected with proxies from their respective versions
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. pkg/config/validation/validation.go

    		for index, egress := range rule.Egress {
    			if egress == nil {
    				errs = AppendValidation(errs, errors.New("egress listener may not be null"))
    				continue
    			}
    			// there can be only one catch all egress listener with empty port, and it should be the last listener.
    			if egress.Port == nil {
    				if !catchAllEgressListenerFound {
    					if index == len(rule.Egress)-1 {
    						catchAllEgressListenerFound = true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  6. pkg/test/framework/components/istio/config.go

    	imagePullPolicyValuesKey = "global.imagePullPolicy"
    
    	// DefaultEgressGatewayLabel is the default Istio label for the egress gateway.
    	DefaultEgressGatewayIstioLabel = "egressgateway"
    
    	// DefaultEgressGatewayServiceName is the default service name for the egress gateway.
    	DefaultEgressGatewayServiceName = "istio-egressgateway"
    )
    
    var (
    	helmValues      string
    	operatorOptions string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/sidecar_simulation_test.go

    }
    
    type scArgs struct {
    	Namespace string
    	Egress    []string
    }
    
    func (args scArgs) Config(t *testing.T, variant string) string {
    	return tmpl.MustEvaluate(`apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: "{{.Namespace}}"
      namespace: "{{.Namespace}}"
    spec:
      egress:
      - hosts:
    {{- range $val := .Egress }}
        - "{{$val}}"
    {{- end }}
    `, args)
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  8. tests/integration/security/main_test.go

          numTrustedProxies: 1 # Needed for X-Forwarded-For (See https://istio.io/latest/docs/ops/configuration/traffic-management/network-topologies/)
    `
    		})).
    		// Create namespaces first. This way, echo can correctly configure egress to all namespaces.
    		SetupParallel(
    			namespace.Setup(&echo1NS, namespace.Config{Prefix: "echo1", Inject: true}),
    			namespace.Setup(&echo2NS, namespace.Config{Prefix: "echo2", Inject: true}),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. tests/integration/telemetry/api/stats_test.go

    			// Following resources are being deployed to test sidecar->gateway communication. With following resources,
    			// routing is being setup from sidecar to external site, via egress gateway.
    			// clt(https:443) -> sidecar(tls:443) -> istio-mtls -> (TLS:443)egress-gateway-> vs(tcp:443) -> cnn.com
    			t.ConfigIstio().File(apps.Namespace.Name(), filepath.Join(base, "istio-mtls-dest-rule.yaml")).ApplyOrFail(t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  10. operator/pkg/apis/istio/v1alpha1/values_types.proto

      string ingressClass = 3;
    }
    
    // Mode for the ingress controller.
    enum ingressControllerMode {
      // Unspecified Istio ingress controller.
      UNSPECIFIED = 0;
      // Selects all Ingress resources, with or without Istio annotation.
      DEFAULT = 1;
      // Selects only resources with istio annotation.
      STRICT = 2;
      // No ingress or sync.
      OFF = 3;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
Back to top