Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 151 for zone2 (0.35 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. 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)
  6. 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)
  7. src/time/format_test.go

    	// issue 67470
    	{"-07", "-25", "time zone offset hour out of range"},
    	{"-07:00", "+25:00", "time zone offset hour out of range"},
    	{"-07:00", "-23:61", "time zone offset minute out of range"},
    	{"-07:00:00", "+23:59:61", "time zone offset second out of range"},
    	{"Z07", "-25", "time zone offset hour out of range"},
    	{"Z07:00", "+25:00", "time zone offset hour out of range"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  8. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    }
    
    // addPodEvictorForNewZone checks if new zone appeared, and if so add new evictor.
    func (nc *Controller) addPodEvictorForNewZone(logger klog.Logger, node *v1.Node) {
    	nc.evictorLock.Lock()
    	defer nc.evictorLock.Unlock()
    	zone := nodetopology.GetZoneKey(node)
    	if _, found := nc.zoneStates[zone]; !found {
    		nc.zoneStates[zone] = stateInitial
    		nc.zoneNoExecuteTainter[zone] =
    			scheduler.NewRateLimitedTimedQueue(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  9. tools/istio-iptables/pkg/capture/run.go

    		// Packets with src port 15053 from istio to zone 2. These are Istio response packets to application clients
    		f.Run("-p", "udp", "--sport", "15053", "-m", "owner", "--uid-owner", uid, "-j", constants.CT, "--zone", "2")
    	}
    	for _, gid := range split(proxyGID) {
    		// Packets with dst port 53 from istio to zone 1. These are Istio calls to upstream resolvers
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  10. src/time/time.go

    	return t
    }
    
    // Location returns the time zone information associated with t.
    func (t Time) Location() *Location {
    	l := t.loc
    	if l == nil {
    		l = UTC
    	}
    	return l
    }
    
    // Zone computes the time zone in effect at time t, returning the abbreviated
    // name of the zone (such as "CET") and its offset in seconds east of UTC.
    func (t Time) Zone() (name string, offset int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
Back to top