Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 165 for localisty (0.76 sec)

  1. pilot/pkg/networking/grpcgen/testdata/xds_bootstrap.json

        "metadata": {
          "INSTANCE_IPS": "127.0.1.1",
          "PILOT_SAN": [
            "istiod.istio-system.svc"
          ],
          "GENERATOR": "grpc",
          "NAMESPACE": "test"
        },
        "localisty": {},
        "UserAgentVersionType": "istiov1"
      },
      "certificate_providers": {
        "default": {
          "plugin_name": "file_watcher",
          "config": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 08 18:48:42 UTC 2022
    - 961 bytes
    - Viewed (0)
  2. pkg/test/loadbalancersim/locality/locality.go

    //  limitations under the License.
    
    package locality
    
    import (
    	"fmt"
    	"strings"
    )
    
    type Instance struct {
    	Zone   string
    	Region string
    }
    
    func (l Instance) String() string {
    	return fmt.Sprintf("%s/%s", l.Region, l.Zone)
    }
    
    func Parse(s string) Instance {
    	parts := strings.Split(s, "/")
    	if len(parts) != 2 {
    		panic("invalid locality string: " + s)
    	}
    	return Instance{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 27 20:55:37 UTC 2022
    - 979 bytes
    - Viewed (0)
  3. releasenotes/notes/locality-service.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 21:53:05 UTC 2023
    - 218 bytes
    - Viewed (0)
  4. releasenotes/notes/autoregistered-workload-entry-locality.yaml

    kind: feature
    
    area: traffic-management
    
    issue:
    - https://github.com/istio/istio/pull/33426
    - 33426
    
    releaseNotes:
    - |
      **Added** support for overriding the locality of the WorkloadGroup template in
      auto registered WorkloadEntries. Locality overrides can be passed in through
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 22 18:59:18 UTC 2021
    - 342 bytes
    - Viewed (0)
  5. 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)
  6. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/emptyfilter_output.yaml

        loadBalancingWeight: 3
        locality: {}
      policy:
        overprovisioningFactor: 140
    - clusterName: sds-grpc
      endpoints:
      - lbEndpoints:
        - endpoint:
            address:
              pipe:
                path: ./var/run/secrets/workload-spiffe-uds/socket
            healthCheckConfig: {}
          healthStatus: HEALTHY
          loadBalancingWeight: 1
        locality: {}
      policy:
        overprovisioningFactor: 140
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 12 02:25:59 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/loadbalancer/loadbalancer_test.go

    		cluster := buildFakeCluster()
    		ApplyLocalityLoadBalancer(cluster.LoadAssignment, nil, locality, nil, env.Mesh().LocalityLbSetting, true)
    		for _, localityEndpoint := range cluster.LoadAssignment.Endpoints {
    			if localityEndpoint.Locality.Region == locality.Region {
    				if localityEndpoint.Locality.Zone == locality.Zone {
    					if localityEndpoint.Locality.SubZone == locality.SubZone {
    						g.Expect(localityEndpoint.Priority).To(Equal(uint32(0)))
    						continue
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/loadbalancer/loadbalancer.go

    				applyLocalityFailover(locality, loadAssignment, localityLB.Failover)
    			}
    		} else {
    			// Apply default failover settings or user defined region failover settings.
    			applyLocalityFailover(locality, loadAssignment, localityLB.Failover)
    		}
    	}
    }
    
    // set locality loadbalancing weight based on user defined weights.
    func applyLocalityWeights(
    	locality *core.Locality,
    	loadAssignment *endpoint.ClusterLoadAssignment,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. pkg/test/loadbalancersim/mesh/node.go

    		n.q.Schedule(wrappedOnDone, deadline)
    	}, onDone)
    }
    
    func (n *Node) Locality() locality.Instance {
    	return n.locality
    }
    
    func (n *Node) ShutDown() {
    	n.q.ShutDown()
    }
    
    type Nodes []*Node
    
    func (nodes Nodes) Select(match locality.Match) Nodes {
    	var out Nodes
    	for _, n := range nodes {
    		if match(n.locality) {
    			out = append(out, n)
    		}
    	}
    	return out
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 03 18:19:25 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/endpoint_builder.go

    	return out
    }
    
    func (c *Controller) NewEndpointBuilderFromMetadata(proxy *model.Proxy) *EndpointBuilder {
    	locality := util.LocalityToString(proxy.Locality)
    	out := &EndpointBuilder{
    		controller:     c,
    		metaNetwork:    proxy.Metadata.Network,
    		serviceAccount: proxy.Metadata.ServiceAccount,
    		locality: model.Locality{
    			Label:     locality,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top