Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for sub_zone (0.14 sec)

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

    					}
    					if regionZoneSubZoneMap[region][zone][subZone] {
    						return fmt.Errorf("locality %s overlap with previous specified ones", locality)
    					}
    					regionZoneSubZoneMap[region][zone][subZone] = true
    				} else {
    					regionZoneSubZoneMap[region][zone] = map[string]bool{subZone: true}
    				}
    			} else {
    				regionZoneSubZoneMap[region] = map[string]map[string]bool{zone: {subZone: true}}
    			}
    		}
    	}
    
    	return 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/model/service_test.go

    			ServicePortName: "service-port-name",
    			ServiceAccount:  "service-account",
    			Network:         "Network",
    			Locality: Locality{
    				ClusterID: "cluster-id",
    				Label:     "region1/zone1/subzone1",
    			},
    			EndpointPort: 22,
    			LbWeight:     100,
    			TLSMode:      "mutual",
    		},
    	}
    	differingAddr := exampleInstance.DeepCopy()
    	differingAddr.Endpoint.Address = "another-address"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. pkg/model/proxy.go

    func ConvertLocality(locality string) *core.Locality {
    	if locality == "" {
    		return &core.Locality{}
    	}
    
    	region, zone, subzone := label.SplitLocalityLabel(locality)
    	return &core.Locality{
    		Region:  region,
    		Zone:    zone,
    		SubZone: subzone,
    	}
    }
    
    // ALPNH2Only advertises that Proxy is going to use HTTP/2 when talking to the cluster.
    var ALPNH2Only = []string{"h2"}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/loadbalancer/loadbalancer.go

    				if loadAssignment.Endpoints[i] != nil {
    					loadAssignment.Endpoints[i].LbEndpoints = nil
    				}
    			}
    			break
    		}
    	}
    }
    
    // set locality loadbalancing priority - This is based on Region/Zone/SubZone matching.
    func applyLocalityFailover(
    	locality *core.Locality,
    	loadAssignment *endpoint.ClusterLoadAssignment,
    	failover []*v1alpha3.LocalityLoadBalancerSetting_Failover,
    ) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. pkg/workloadapi/workload.proto

    message LoadBalancing {
      enum Scope {
        UNSPECIFIED_SCOPE = 0;
        // Prefer traffic in the same region.
        REGION = 1;
        // Prefer traffic in the same zone.
        ZONE = 2;
        // Prefer traffic in the same subzone.
        SUBZONE = 3;
        // Prefer traffic on the same node.
        NODE = 4;
        // Prefer traffic in the same cluster.
        CLUSTER = 5;
        // Prefer traffic in the same network.
        NETWORK = 6;
      }
      enum Mode {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  6. pilot/pkg/xds/ads.go

    		ls, f := proxy.Labels[model.LocalityLabel]
    		if f {
    			return util.ConvertLocality(ls)
    		}
    		return nil
    	}
    	return &core.Locality{
    		Region:  region,
    		Zone:    zone,
    		SubZone: subzone,
    	}
    }
    
    // initializeProxy completes the initialization of a proxy. It is expected to be called only after
    // initProxyMetadata.
    func (s *DiscoveryServer) initializeProxy(con *Connection) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  7. pkg/bootstrap/platform/gcp.go

    		return &l
    	}
    	r, err := zoneToRegion(loc)
    	if err != nil {
    		log.Warnf("Error fetching GCP region: %v", err)
    		return &l
    	}
    	return &core.Locality{
    		Region:  r,
    		Zone:    loc,
    		SubZone: "", // GCP has no subzone concept
    	}
    }
    
    const ComputeReadonlyScope = "https://www.googleapis.com/auth/compute.readonly"
    
    // Labels attempts to retrieve the GCE instance labels within the timeout
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 00:37:33 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  8. pkg/bootstrap/instance_test.go

    				"POD_NAMESPACE":                "test",
    				"INSTANCE_IP":                  "10.10.10.1",
    				"ISTIO_METAJSON_LABELS":        `{"version": "v1alpha1", "app": "test", "istio-locality":"regionA.zoneB.sub_zoneC"}`,
    			},
    			annotations: map[string]string{
    				"istio.io/insecurepath": "{\"paths\":[\"/metrics\",\"/live\"]}",
    			},
    			checkLocality: true,
    		},
    		{
    			base: "runningsds",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  9. pkg/config/validation/agent/validation_test.go

    			localities: []string{"a/b", "a/b/c"},
    			valid:      false,
    		},
    		{
    			name:       "explicit wildcard subzone overlap",
    			localities: []string{"a/b/*", "a/b/c"},
    			valid:      false,
    		},
    		{
    			name:       "implicit wildcard subzone overlap",
    			localities: []string{"a/b", "a/b/c"},
    			valid:      false,
    		},
    		{
    			name:       "valid localities",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  10. pkg/bootstrap/config.go

    			runtimeFlags[k] = v
    		}
    	}
    	return runtimeFlags
    }
    
    func getLocalityOptions(l *core.Locality) []option.Instance {
    	return []option.Instance{option.Region(l.Region), option.Zone(l.Zone), option.SubZone(l.SubZone)}
    }
    
    func getServiceCluster(metadata *model.BootstrapNodeMetadata) string {
    	switch name := metadata.ProxyConfig.ClusterName.(type) {
    	case *meshAPI.ProxyConfig_ServiceCluster:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
Back to top