Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 83 for nodeInfos (0.27 sec)

  1. pkg/kubelet/cm/container_manager.go

    	// requests for device plugin resources, and returns an error if fails.
    	// Otherwise, it updates allocatableResource in nodeInfo if necessary,
    	// to make sure it is at least equal to the pod's requested capacity for
    	// any registered device plugin resource
    	UpdatePluginResources(*schedulerframework.NodeInfo, *lifecycle.PodAdmitAttributes) error
    
    	InternalContainerLifecycle() InternalContainerLifecycle
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. pkg/scheduler/schedule_one_test.go

    	return false
    }
    
    func (f *fakeExtender) Filter(pod *v1.Pod, nodes []*framework.NodeInfo) ([]*framework.NodeInfo, extenderv1.FailedNodesMap, extenderv1.FailedNodesMap, error) {
    	return nil, nil, nil, nil
    }
    
    func (f *fakeExtender) Prioritize(
    	_ *v1.Pod,
    	_ []*framework.NodeInfo,
    ) (hostPriorities *extenderv1.HostPriorityList, weight int64, err error) {
    	return nil, 0, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  3. plugin/pkg/admission/noderestriction/admission_test.go

    			attributes: admission.NewAttributesRecord(nodeInfo, nil, csiNodeKind, nodeInfo.Namespace, nodeInfo.Name, csiNodeResource, "", admission.Create, &metav1.CreateOptions{}, false, mynode),
    			err:        "",
    		},
    		{
    			name:       "allowed update node CSINode",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
  4. cluster/gce/upgrade.sh

    }
    
    function print-node-version-info() {
      echo "== $1 Node OS and Kubelet Versions =="
      "${KUBE_ROOT}/cluster/kubectl.sh" get nodes -o=jsonpath='{range .items[*]}name: "{.metadata.name}", osImage: "{.status.nodeInfo.osImage}", kubeletVersion: "{.status.nodeInfo.kubeletVersion}"{"\n"}{end}'
    }
    
    function upgrade-master() {
      local num_masters
      num_masters=$(get-master-replicas-count)
      if [[ "${num_masters}" -gt 1 ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/nodevolumelimits/csi_test.go

    	}
    	return csiNodeLister
    }
    
    func getNodeWithPodAndVolumeLimits(limitSource string, pods []*v1.Pod, limit int32, driverNames ...string) (*framework.NodeInfo, *storagev1.CSINode) {
    	nodeInfo := framework.NewNodeInfo(pods...)
    	node := &v1.Node{
    		ObjectMeta: metav1.ObjectMeta{Name: "node-for-max-pd-test-1"},
    		Status: v1.NodeStatus{
    			Allocatable: v1.ResourceList{},
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 18:07:11 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration_test.go

    		t.Run(test.name, func(t *testing.T) {
    			_, ctx := ktesting.NewTestContext(t)
    			nodeInfo := framework.NewNodeInfo()
    			nodeInfo.SetNode(test.node)
    			p, err := New(ctx, nil, nil, feature.Features{})
    			if err != nil {
    				t.Fatalf("creating plugin: %v", err)
    			}
    			gotStatus := p.(framework.FilterPlugin).Filter(ctx, nil, test.pod, nodeInfo)
    			if !reflect.DeepEqual(gotStatus, test.wantStatus) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  7. pkg/scheduler/scheduler_test.go

    func (*filterWithoutEnqueueExtensionsPlugin) Name() string { return filterWithoutEnqueueExtensions }
    
    func (*filterWithoutEnqueueExtensionsPlugin) Filter(_ context.Context, _ *framework.CycleState, _ *v1.Pod, _ *framework.NodeInfo) *framework.Status {
    	return nil
    }
    
    var hintFromFakeNode = framework.QueueingHint(100)
    
    type fakeNodePlugin struct{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 42K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_getters.go

    }
    
    // getNodeAnyWay() must return a *v1.Node which is required by RunGeneralPredicates().
    // The *v1.Node is obtained as follows:
    // Return kubelet's nodeInfo for this node, except on error or if in standalone mode,
    // in which case return a manufactured nodeInfo representing a node with no pods,
    // zero capacity, and the default labels.
    func (kl *Kubelet) getNodeAnyWay() (*v1.Node, error) {
    	if kl.kubeClient != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 00:48:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  9. pkg/kubelet/nodestatus/setters_test.go

    			node: &v1.Node{
    				Status: v1.NodeStatus{
    					NodeInfo: v1.NodeSystemInfo{
    						BootID: "foo",
    					},
    				},
    			},
    			maxPods: 110,
    			machineInfo: &cadvisorapiv1.MachineInfo{
    				BootID:         "bar",
    				NumCores:       2,
    				MemoryCapacity: 1024,
    			},
    			expectNode: &v1.Node{
    				Status: v1.NodeStatus{
    					NodeInfo: v1.NodeSystemInfo{
    						BootID: "bar",
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/devicemanager/manager.go

    // and if necessary, updates allocatableResource in nodeInfo to at least equal to
    // the allocated capacity. This allows pods that have already been scheduled on
    // the node to pass GeneralPredicates admission checking even upon device plugin failure.
    func (m *ManagerImpl) sanitizeNodeAllocatable(node *schedulerframework.NodeInfo) {
    	var newAllocatableResource *schedulerframework.Resource
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 43K bytes
    - Viewed (0)
Back to top