Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 213 for zone2 (0.04 sec)

  1. pilot/pkg/networking/core/cluster_builder_test.go

    						Locality: model.Locality{
    							ClusterID: "cluster-1",
    							Label:     "region1/zone1/subzone1",
    						},
    						LbWeight: 30,
    						Network:  "filtered-out",
    					},
    				},
    			},
    			expected: []*endpoint.LocalityLbEndpoints{
    				{
    					Locality: &core.Locality{
    						Region:  "region1",
    						Zone:    "zone1",
    						SubZone: "subzone1",
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  2. cluster/gce/util.sh

        local zones
        read -r -a zones <<< "${E2E_ZONES}"
        # tear them down in reverse order, finally tearing down the master too.
        for ((zone_num=${#zones[@]}-1; zone_num>0; zone_num--)); do
          KUBE_GCE_ZONE="${zones[zone_num]}" KUBE_USE_EXISTING_MASTER="true" "${KUBE_ROOT}/cluster/kube-down.sh"
        done
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_test.go

    					Distribute: []*networking.LocalityLoadBalancerSetting_Distribute{
    						{
    							From: "region1/zone1/subzone1",
    							To: map[string]uint32{
    								"region1/zone1/subzone1": 80,
    								"region1/zone1/subzone2": 15,
    								"region1/zone1/subzone3": 5,
    							},
    						},
    					},
    				},
    			},
    			discoveryType:                  cluster.Cluster_EDS,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/discovery/v1/types.go

    	// be used to determine endpoints local to a Node.
    	// +optional
    	NodeName *string `json:"nodeName,omitempty" protobuf:"bytes,6,opt,name=nodeName"`
    
    	// zone is the name of the Zone this endpoint exists in.
    	// +optional
    	Zone *string `json:"zone,omitempty" protobuf:"bytes,7,opt,name=zone"`
    
    	// hints contains information associated with how an endpoint should be
    	// consumed.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. src/time/zoneinfo.go

    	// either one.)
    	for i := range l.zone {
    		zone := &l.zone[i]
    		if zone.name == name {
    			nam, offset, _, _, _ := l.lookup(unix - int64(zone.offset))
    			if nam == zone.name {
    				return offset, true
    			}
    		}
    	}
    
    	// Otherwise fall back to an ordinary name match.
    	for i := range l.zone {
    		zone := &l.zone[i]
    		if zone.name == name {
    			return zone.offset, true
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/discovery/v1/generated.proto

      // in the zone and nodeName fields instead.
      // +optional
      map<string, string> deprecatedTopology = 5;
    
      // nodeName represents the name of the Node hosting this endpoint. This can
      // be used to determine endpoints local to a Node.
      // +optional
      optional string nodeName = 6;
    
      // zone is the name of the Zone this endpoint exists in.
      // +optional
      optional string zone = 7;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_node_status.go

    			node.ObjectMeta.Labels[v1.LabelInstanceTypeStable] = instanceType
    		}
    		// If the cloud has zone information, label the node with the zone information
    		zones, ok := kl.cloud.Zones()
    		if ok {
    			zone, err := zones.GetZone(ctx)
    			if err != nil {
    				return nil, fmt.Errorf("failed to get zone from cloud provider: %v", err)
    			}
    			if zone.FailureDomain != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  8. pkg/controller/testutil/test_utils.go

    		}
    	}
    	return false
    }
    
    // GetZones returns list of zones for all Nodes stored in FakeNodeHandler
    func GetZones(nodeHandler *FakeNodeHandler) []string {
    	nodes, _ := nodeHandler.List(context.TODO(), metav1.ListOptions{})
    	zones := sets.NewString()
    	for _, node := range nodes.Items {
    		zones.Insert(utilnode.GetZoneKey(&node))
    	}
    	return zones.List()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/discovery/v1beta1/generated.proto

      // items is the list of endpoint slices
      repeated EndpointSlice items = 2;
    }
    
    // ForZone provides information about which zones should consume this endpoint.
    message ForZone {
      // name represents the name of the zone.
      optional string name = 1;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/discovery/v1beta1/generated.proto

      // items is the list of endpoint slices
      repeated EndpointSlice items = 2;
    }
    
    // ForZone provides information about which zones should consume this endpoint.
    message ForZone {
      // name represents the name of the zone.
      optional string name = 1;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top