Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of about 10,000 for egress (0.34 sec)

  1. pkg/config/protocol/instance.go

    	// Note that HTTP/1.0 or earlier may not be supported by the proxy.
    	HTTP Instance = "HTTP"
    	// HTTP_PROXY declares that the port is a generic outbound proxy port.
    	// Note that this is currently applicable only for defining sidecar egress listeners.
    	// nolint
    	HTTP_PROXY Instance = "HTTP_PROXY"
    	// HTTP2 declares that the port carries HTTP/2 traffic.
    	HTTP2 Instance = "HTTP2"
    	// HTTPS declares that the port carries HTTPS traffic.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 01 02:46:15 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. 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)
  3. operator/pkg/name/name.go

    		PilotComponentName:              "Istiod",
    		CNIComponentName:                "CNI",
    		ZtunnelComponentName:            "Ztunnel",
    		IngressComponentName:            "Ingress gateways",
    		EgressComponentName:             "Egress gateways",
    		IstioOperatorComponentName:      "Istio operator",
    		IstioOperatorCustomResourceName: "Istio operator CRDs",
    		IstiodRemoteComponentName:       "Istiod remote",
    	}
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/recommended.go

    	// admission plugin initializers to Admission.ApplyTo.
    	ExtraAdmissionInitializers func(c *server.RecommendedConfig) ([]admission.PluginInitializer, error)
    	Admission                  *AdmissionOptions
    	// API Server Egress Selector is used to control outbound traffic from the API Server
    	EgressSelector *EgressSelectorOptions
    	// Traces contains options to control distributed request tracing.
    	Traces *TracingOptions
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 18:51:27 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. README.md

    layer over the underlying cluster management platform, such as Kubernetes.
    
    Istio is composed of these components:
    
    - **Envoy** - Sidecar proxies per microservice to handle ingress/egress traffic
       between services in the cluster and from a service to external
       services. The proxies form a _secure microservice mesh_ providing a rich
       set of functions like discovery, rich layer-7 routing, circuit breakers,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 15:28:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. tests/testdata/config/none.yaml

    kind: Sidecar
    metadata:
      name: default
      namespace: none
    spec:
      egress:
        - hosts:
            - none/*
            - default/test.default # TODO: without namespace it  fails validation !
          # TODO: if we include the namespace, why do we need full name ? Importing regular services should work.
    
      # Label selection seems to confuse the new code.
      ingress:
        - port:
            number: 7071
            protocol: HTTP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 22 21:13:54 UTC 2020
    - 8.8K bytes
    - Viewed (0)
  7. tests/integration/security/util/framework.go

    		return vmCfg
    	}()
    
    	externalSvc := echo.Config{
    		Service: ExternalSvc,
    		// Namespace: appsNamespace,
    		Ports: []echo.Port{
    			{
    				// Plain HTTP port only used to route request to egress gateway
    				Name:         "http",
    				Protocol:     protocol.HTTP,
    				ServicePort:  80,
    				WorkloadPort: 8080,
    			},
    			{
    				// HTTPS port
    				Name:         "https",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  8. samples/ambient-argo/README.md

    set.yaml:9](./istio/control-plane-appset.yaml), at .spec.generators[0].list.elements[*].revision).
    
    Tags also identify control planes, but unlike revisions, tags are mutable references to revisions.  When an Istio Gateway (waypoint, ingress, or egress) references a particular tag, a dataplane is created using the version of the tag reference, and connects to the control plane indicated by the tag.  In this way, gateways can be organized into channels, or distinct groups which will be upgraded...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  9. pkg/test/framework/components/istio/ingress.go

    	getAddressDelay   = retry.BackoffDelay(500 * time.Millisecond)
    
    	_ ingress.Instance = &ingressImpl{}
    	_ io.Closer        = &ingressImpl{}
    )
    
    type ingressConfig struct {
    	// Service is the kubernetes Service name for the cluster
    	Service types.NamespacedName
    	// LabelSelector is the value for the label on the ingress kubernetes objects
    	LabelSelector string
    
    	// Cluster to be used in a multicluster environment
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 17:13:34 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. helm/minio/templates/ingress.yaml

          {{- toYaml . | nindent 4 }}
        {{- end }}
      {{- with .Values.ingress.annotations }}
      annotations: {{- toYaml . | nindent 4 }}
      {{- end }}
    spec:
      {{- if .Values.ingress.ingressClassName }}
      ingressClassName: {{ .Values.ingress.ingressClassName }}
      {{- end }}
      {{- if .Values.ingress.tls }}
      tls:
        {{- range .Values.ingress.tls }}
        - hosts:
          {{- range .hosts }}
            - {{ . | quote }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 03 06:27:17 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top