Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,175 for egress (0.2 sec)

  1. pilot/pkg/model/sidecar.go

    	// Version this sidecar was computed for
    	Version string
    
    	// Set of egress listeners, and their associated services.  A sidecar
    	// scope should have either ingress/egress listeners or both.  For
    	// every proxy workload that maps to a sidecar API object (or the
    	// default object), we will go through every egress listener in the
    	// object and process the Envoy listener or RDS based on the imported
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  2. pkg/controlplane/apiserver/options/options_test.go

    		"--bind-address=192.168.10.20",
    		"--client-ca-file=/client-ca",
    		"--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",
    		"--etcd-keyfile=/var/run/kubernetes/etcd.key",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  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. 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)
  9. pilot/pkg/networking/core/peer_authentication_simulation_test.go

    kind: Sidecar
    metadata:
      labels:
        app: foo
      name: sidecar
    spec:
      ingress:
      - defaultEndpoint: 127.0.0.1:8080
        port:
          name: tls
          number: 8080
          protocol: TCP
      - defaultEndpoint: 127.0.0.1:9090
        port:
          name: plaintext
          number: 9090
          protocol: TCP
      egress:
      - hosts:
        - "*/*"
      workloadSelector:
        labels:
          app: foo
    ---`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/config.go

    	// ServerList is the list of storage servers to connect with.
    	ServerList []string
    	// TLS credentials
    	KeyFile       string
    	CertFile      string
    	TrustedCAFile string
    	// function to determine the egress dialer. (i.e. konnectivity server dialer)
    	EgressLookup egressselector.Lookup
    	// The TracerProvider can add tracing the connection
    	TracerProvider oteltrace.TracerProvider
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top