Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 213 for zone2 (0.22 sec)

  1. pilot/pkg/networking/util/util_test.go

    			},
    		},
    		{
    			name:     "locality with region and zone",
    			locality: "region/zone",
    			want: &core.Locality{
    				Region: "region",
    				Zone:   "zone",
    			},
    		},
    		{
    			name:     "locality with region zone and subzone",
    			locality: "region/zone/subzone",
    			want: &core.Locality{
    				Region:  "region",
    				Zone:    "zone",
    				SubZone: "subzone",
    			},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 40K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

    topology domains of a given topology type. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 1/1/0: | zone1 | zone2 | zone3 | |   P   |   P   |       | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 1/1/1; scheduling it onto zone1(zone2) would make the ActualSkew(2-0) on zone1(zone2) violate MaxSkew(1). - if MaxSkew is 2, incoming pod can be scheduled onto any zone. It's a required field. Default value is 1 and 0 is not allowed.",...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    				tf.RegisterPluginAsExtensions(podtopologyspread.Name, podTopologySpreadFunc, "PreFilter", "Filter"),
    			},
    			nodeNames: []string{"node-a/zone1", "node-b/zone1", "node-x/zone2"},
    			testPods: []*v1.Pod{
    				st.MakePod().Name("p").UID("p").Label("foo", "").Priority(highPriority).
    					SpreadConstraint(1, "zone", v1.DoNotSchedule, st.MakeLabelSelector().Exists("foo").Obj(), nil, nil, nil, nil).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    	// For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same
    	// labelSelector spread as 3/1/1:
    	// +-------+-------+-------+
    	// | zone1 | zone2 | zone3 |
    	// +-------+-------+-------+
    	// | P P P |   P   |   P   |
    	// +-------+-------+-------+
    	// If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/core/v1/generated.proto

      // scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2)
      // violate MaxSkew(1).
      // - if MaxSkew is 2, incoming pod can be scheduled onto any zone.
      // When `whenUnsatisfiable=ScheduleAnyway`, it is used to give higher precedence
      // to topologies that satisfy it.
      // It's a required field. Default value is 1 and 0 is not allowed.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

      // scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2)
      // violate MaxSkew(1).
      // - if MaxSkew is 2, incoming pod can be scheduled onto any zone.
      // When `whenUnsatisfiable=ScheduleAnyway`, it is used to give higher precedence
      // to topologies that satisfy it.
      // It's a required field. Default value is 1 and 0 is not allowed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. pkg/controller/endpointslice/endpointslice_controller_test.go

    			"ns/svc1": {zoneB: 5, zoneC: 4},
    		},
    		expectedQueueLen: 1,
    	}, {
    		name: "even zones but node missing cpu, sync required",
    		nodes: []nodeInfo{
    			{zoneLabel: &zoneB, ready: &readyTrue, cpu: &cpu2000},
    			{zoneLabel: &zoneB, ready: &readyTrue},
    			{zoneLabel: &zoneC, ready: &readyTrue, cpu: &cpu2000},
    			{zoneLabel: &zoneC, ready: &readyTrue, cpu: &cpu2000},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types.go

    	// For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same
    	// labelSelector spread as 3/1/1:
    	// +-------+-------+-------+
    	// | zone1 | zone2 | zone3 |
    	// +-------+-------+-------+
    	// | P P P |   P   |   P   |
    	// +-------+-------+-------+
    	// If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__batch__v1_openapi.json

    zero if the number of eligible domains is less than MinDomains. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 2/2/1: In this case, the global minimum is 1. | zone1 | zone2 | zone3 | |  P P  |  P P  |   P   | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2) violate MaxSkew(1). - if MaxSkew is 2, incoming pod can be scheduled onto any zone....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  10. src/time/zoneinfo_read.go

    	// First the zone information.
    	//	utcoff[4] isdst[1] nameindex[1]
    	nzone := n[NZone]
    	if nzone == 0 {
    		// Reject tzdata files with no zones. There's nothing useful in them.
    		// This also avoids a panic later when we add and then use a fake transition (golang.org/issue/29437).
    		return nil, errBadData
    	}
    	zones := make([]zone, nzone)
    	for i := range zones {
    		var ok bool
    		var n uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top