Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for LbEndpoints (0.14 sec)

  1. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/emptyfilter_output.json

    [
        {
            "clusterName": "agent",
            "endpoints": [
                {
                    "locality": {},
                    "lbEndpoints": [
                        {
                            "endpoint": {
                                "address": {
                                    "socketAddress": {
                                        "address": "127.0.0.1",
                                        "portValue": 15020
                                    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 12 02:25:59 UTC 2022
    - 40.4K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/emptyfilter_output.yaml

      endpoints:
      - lbEndpoints:
        - endpoint:
            address:
              socketAddress:
                address: 127.0.0.1
                portValue: 15020
            healthCheckConfig: {}
          healthStatus: HEALTHY
          loadBalancingWeight: 1
        locality: {}
      policy:
        overprovisioningFactor: 140
    - clusterName: outbound|9402||cert-manager-istio-csr-metrics.cert-manager.svc.cluster.local
      endpoints:
      - lbEndpoints:
        - endpoint:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 12 02:25:59 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/loadbalancer/loadbalancer_test.go

    					},
    					LbEndpoints: []*endpoint.LbEndpoint{
    						{
    							HostIdentifier: buildEndpoint("3.3.3.3"),
    							LoadBalancingWeight: &wrappers.UInt32Value{
    								Value: 1,
    							},
    						},
    					},
    				},
    				{
    					Locality: &core.Locality{
    						Region:  "region3",
    						Zone:    "zone3",
    						SubZone: "subzone3",
    					},
    					LbEndpoints: []*endpoint.LbEndpoint{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  4. pilot/test/xdstest/endpoints.go

    	}
    
    	sort.Slice(got, func(i, j int) bool {
    		addrI := util.GetEndpointHost(got[i].LbEndpoints[0])
    		addrJ := util.GetEndpointHost(got[j].LbEndpoints[0])
    		return addrI < addrJ
    	})
    
    	for i, ep := range got {
    		if len(ep.LbEndpoints) != len(want[i].LbEps) {
    			return fmt.Errorf("unexpected number of LB endpoints within endpoint %d: %v, want %v",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/portfilter_output.json

    [
        {
            "clusterName": "outbound|80||istio-ingressgateway.istio-system.svc.cluster.local",
            "endpoints": [
                {
                    "locality": {},
                    "lbEndpoints": [
                        {
                            "endpoint": {
                                "address": {
                                    "socketAddress": {
                                        "address": "10.244.0.176",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 12 02:25:59 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  6. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/portfilter_output.yaml

    - clusterName: outbound|80||istio-ingressgateway.istio-system.svc.cluster.local
      endpoints:
      - lbEndpoints:
        - endpoint:
            address:
              socketAddress:
                address: 10.244.0.176
                portValue: 8080
            healthCheckConfig: {}
          healthStatus: HEALTHY
          loadBalancingWeight: 1
          metadata:
            filterMetadata:
              istio:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 12 02:25:59 UTC 2022
    - 1K bytes
    - Viewed (0)
  7. pilot/pkg/xds/endpoints/ep_filters.go

    				Labels:    labels.Instance{},
    			}, gwEp.Metadata)
    			// Currently gateway endpoint does not support tunnel.
    			lbEndpoints.append(gwIstioEp, gwEp)
    		}
    
    		// Endpoint members could be stripped or aggregated by network. Adjust weight value here.
    		lbEndpoints.refreshWeight()
    		filtered = append(filtered, lbEndpoints)
    	}
    
    	return filtered
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. istioctl/pkg/writer/envoy/configdump/endpoint.go

    	for _, llb := range cla.Endpoints {
    		filtered := make([]*endpoint.LbEndpoint, 0, len(llb.LbEndpoints))
    		for _, ep := range llb.LbEndpoints {
    			if !filter.Verify(ep, cla.ClusterName) {
    				continue
    			}
    			filtered = append(filtered, ep)
    		}
    		llb.LbEndpoints = filtered
    		filteredCount += len(llb.LbEndpoints)
    	}
    
    	return cla, filteredCount
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/loadbalancer/loadbalancer.go

    		out[i] = util.CloneLocalityLbEndpoint(ep.LocalityLbEndpoints)
    		out[i].LbEndpoints = nil
    		out[i].Priority = uint32(priority)
    		var weight uint32
    		for _, index := range priorityMap[priority] {
    			out[i].LbEndpoints = append(out[i].LbEndpoints, ep.LocalityLbEndpoints.LbEndpoints[index])
    			weight += ep.LocalityLbEndpoints.LbEndpoints[index].GetLoadBalancingWeight().GetValue()
    		}
    		// reset weight
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. pilot/pkg/xds/eds_sh_test.go

    	}
    
    	lbEndpoints := eps[0].LbEndpoints
    	if len(lbEndpoints) != len(expected.weights) {
    		t.Fatalf("unexpected number of endpoints.\nWant:\n%v\nGot:\n%v", expected.getAddrs(), getLbEndpointAddrs(lbEndpoints))
    	}
    
    	for addr, weight := range expected.weights {
    		var match *endpoint.LbEndpoint
    		for _, ep := range lbEndpoints {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top