Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 95 for balancing (0.26 sec)

  1. pilot/cmd/pilot-agent/options/options.go

    		"Envoy prometheus redirection port value").Get()
    
    	// Defined by https://github.com/grpc/proposal/blob/c5722a35e71f83f07535c6c7c890cf0c58ec90c0/A27-xds-global-load-balancing.md#xdsclient-and-bootstrap-file
    	grpcBootstrapEnv = env.Register("GRPC_XDS_BOOTSTRAP", filepath.Join(constants.ConfigPathDir, "grpc-bootstrap.json"),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 19:21:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/webhook/client.go

    		if err != nil {
    			return nil, err
    		}
    		cfg := rest.CopyConfig(restConfig)
    
    		// Use http/1.1 instead of http/2.
    		// This is a workaround for http/2-enabled clients not load-balancing concurrent requests to multiple backends.
    		// See https://issue.k8s.io/75791 for details.
    		cfg.NextProtos = []string{"http/1.1"}
    
    		serverName := cc.Service.Name + "." + cc.Service.Namespace + ".svc"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 04 09:09:10 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. README.md

    Istio is an open source service mesh that layers transparently onto existing distributed applications. Istio’s powerful features provide a uniform and more efficient way to secure, connect, and monitor services. Istio is the path to load balancing, service-to-service authentication, and monitoring – with few or no service code changes.
    
    - For in-depth information about how to use Istio, visit [istio.io](https://istio.io)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 15:28:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_waypoint.go

    	// Creates "main_internal" cluster to route to the main internal listener.
    	// Creates "encap" cluster to route to the encap listener.
    	clusters = append(clusters, MainInternalCluster, EncapCluster)
    	// Creates per-VIP load balancing upstreams.
    	clusters = append(clusters, cb.buildWaypointInboundVIP(proxy, svcs)...)
    	// Upstream of the "encap" listener.
    	clusters = append(clusters, cb.buildWaypointConnectOriginate(proxy, push))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    integer interval: description: Time interval between ejection sweep analysis. type: string maxEjectionPercent: description: Maximum % of hosts in the load balancing pool for the upstream service that can be ejected. format: int32 type: integer minHealthPercent: description: Outlier detection will be enabled as long as the associated load balancing pool has at least min_health_percent hosts in healthy mode. format: int32 type: integer splitExternalLocalOr: description: Determines whether to distinguish...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  6. docs/features/https.md

     * `CLEARTEXT` is an insecure configuration that is used for `http://` URLs.
    
    These loosely follow the model set in [Google Cloud Policies](https://cloud.google.com/load-balancing/docs/ssl-policies-concepts). We [track changes](../security/tls_configuration_history.md) to this policy.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Dec 24 00:16:30 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  7. pkg/proxy/ipvs/README.md

    - what is IPVS
    - difference between IPVS and IPTABLES
    - how to run kube-proxy in IPVS mode and info on debugging
    
    ## What is IPVS
    
    **IPVS (IP Virtual Server)** implements transport-layer load balancing, usually called Layer 4 LAN switching, as part of
    Linux kernel.
    
    IPVS runs on a host and acts as a load balancer in front of a cluster of real servers. IPVS can direct requests for TCP
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 02:32:29 UTC 2021
    - 18.8K bytes
    - Viewed (0)
  8. pilot/pkg/xds/endpoints/ep_filters.go

    			// If the proxy can't view the network for this endpoint, exclude it entirely.
    			if !b.proxyView.IsVisible(istioEndpoint) {
    				continue
    			}
    
    			// Copy the endpoint in order to expand the load balancing weight.
    			// When multiplying, be careful to avoid overflow - clipping the
    			// result at the maximum value for uint32.
    			weight := b.scaleEndpointLBWeight(lbEp, scaleFactor)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. pkg/proxy/healthcheck/service_health.go

    	h.hcs.lock.RUnlock()
    	kubeProxyHealthy := h.hcs.healthzServer.IsHealthy()
    
    	resp.Header().Set("Content-Type", "application/json")
    	resp.Header().Set("X-Content-Type-Options", "nosniff")
    	resp.Header().Set("X-Load-Balancing-Endpoint-Weight", strconv.Itoa(count))
    
    	if count != 0 && kubeProxyHealthy {
    		resp.WriteHeader(http.StatusOK)
    	} else {
    		resp.WriteHeader(http.StatusServiceUnavailable)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 30 09:25:48 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  10. pilot/pkg/features/experimental.go

    	SendUnhealthyEndpoints = atomic.NewBool(env.Register(
    		"PILOT_SEND_UNHEALTHY_ENDPOINTS",
    		false,
    		"If enabled, Pilot will include unhealthy endpoints in EDS pushes and even if they are sent Envoy does not use them for load balancing."+
    			"  To avoid, sending traffic to non ready endpoints, enabling this flag, disables panic threshold in Envoy i.e. Envoy does not load balance requests"+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top