Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 93 for localisty (0.2 sec)

  1. pkg/config/validation/agent/validation.go

    				return fmt.Errorf("locality %s wildcard '*' number can not exceed 1 and must be in the end", locality)
    			}
    		}
    		if _, exist := regionZoneSubZoneMap["*"]; exist {
    			return fmt.Errorf("locality %s overlap with previous specified ones", locality)
    		}
    
    		region, zone, subZone, localityIndex, err := getLocalityParam(locality)
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/serviceentry/conversion.go

    	}
    	networkID := s.workloadEntryNetwork(wle)
    	locality := wle.Locality
    	if locality == "" && len(wle.Labels[model.LocalityLabel]) > 0 {
    		locality = model.GetLocalityLabel(wle.Labels[model.LocalityLabel])
    	}
    	labels := labelutil.AugmentLabels(wle.Labels, clusterID, locality, "", networkID)
    	return &model.ServiceInstance{
    		Endpoint: &model.IstioEndpoint{
    			Address:         addr,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginValidationManager.java

            pluginIssues.reportPluginIssue(locality, null, issue);
            mayReportInline(session, locality, issue);
        }
    
        @Override
        public void reportPluginValidationIssue(
                IssueLocality locality, MavenSession mavenSession, MojoDescriptor mojoDescriptor, String issue) {
            String pluginKey = pluginKey(mojoDescriptor);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 23 12:25:04 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  4. pilot/pkg/xds/ads.go

    		proxy.Locality = &core.Locality{
    			Region:  proxy.XdsNode.Locality.GetRegion(),
    			Zone:    proxy.XdsNode.Locality.GetZone(),
    			SubZone: proxy.XdsNode.Locality.GetSubZone(),
    		}
    	}
    	// add topology labels to proxy labels
    	proxy.Labels = labelutil.AugmentLabels(
    		proxy.Labels,
    		proxy.Metadata.ClusterID,
    		util.LocalityToString(proxy.Locality),
    		proxy.GetNodeName(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  5. pkg/bootstrap/testdata/running_golden.json

      },
      "layered_runtime": {
          "layers": [
              {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. pkg/bootstrap/testdata/runningsds_golden.json

      },
      "layered_runtime": {
          "layers": [
              {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 14K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/serviceentry/conversion_test.go

    			sortServiceInstances(instances)
    			sortServiceInstances(tt.out)
    
    			if tt.wle.Locality != "" || tt.clusterID != "" || tt.wle.Network != "" {
    				for _, serviceInstance := range tt.out {
    					serviceInstance.Endpoint.Locality = model.Locality{
    						Label:     tt.wle.Locality,
    						ClusterID: tt.clusterID,
    					}
    					serviceInstance.Endpoint.Network = network.ID(tt.wle.Network)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 39K bytes
    - Viewed (0)
  8. pilot/pkg/xds/endpoints/endpoint_builder.go

    		if eep == nil {
    			continue
    		}
    		locLbEps, found := localityEpMap[ep.Locality.Label]
    		if !found {
    			locLbEps = &LocalityEndpoints{
    				llbEndpoints: endpoint.LocalityLbEndpoints{
    					Locality:    util.ConvertLocality(ep.Locality.Label),
    					LbEndpoints: make([]*endpoint.LbEndpoint, 0, len(eps)),
    				},
    			}
    			localityEpMap[ep.Locality.Label] = locLbEps
    		}
    		locLbEps.append(ep, eep)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 02:18:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  9. pkg/bootstrap/config.go

    		} else {
    			log.Warnf("failed to read pod annotations: %v", err)
    		}
    	}
    
    	var l *core.Locality
    	if meta.Labels[model.LocalityLabel] == "" && options.Platform != nil {
    		// The locality string was not set, try to get locality from platform
    		l = options.Platform.Locality()
    	} else {
    		// replace "." with "/"
    		localityString := model.GetLocalityLabel(meta.Labels[model.LocalityLabel])
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  10. pilot/pkg/model/service_test.go

    			Labels:          labels.Instance{"app": "prod-app"},
    			Address:         "an-address",
    			ServicePortName: "service-port-name",
    			ServiceAccount:  "service-account",
    			Network:         "Network",
    			Locality: Locality{
    				ClusterID: "cluster-id",
    				Label:     "region1/zone1/subzone1",
    			},
    			EndpointPort: 22,
    			LbWeight:     100,
    			TLSMode:      "mutual",
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top