Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 81 for podresources (0.18 sec)

  1. pkg/kubelet/cm/cpumanager/cpu_manager.go

    	// and other resource controllers.
    	GetTopologyHints(*v1.Pod, *v1.Container) map[string][]topologymanager.TopologyHint
    
    	// GetExclusiveCPUs implements the podresources.CPUsProvider interface to provide
    	// exclusively allocated cpus for the container
    	GetExclusiveCPUs(podUID, containerName string) cpuset.CPUSet
    
    	// GetPodTopologyHints implements the topologymanager.HintProvider Interface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 19.9K bytes
    - Viewed (0)
  2. hack/update-codegen.sh

        # eventually contain a file named "api.proto".
        local apis=(
            "staging/src/k8s.io/cri-api/pkg/apis/runtime"
    
            "staging/src/k8s.io/kubelet/pkg/apis/podresources"
    
            "staging/src/k8s.io/kubelet/pkg/apis/deviceplugin"
    
            "staging/src/k8s.io/kms/apis"
            "staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/container_manager_linux.go

    	clientset "k8s.io/client-go/kubernetes"
    	"k8s.io/client-go/tools/record"
    	utilsysctl "k8s.io/component-helpers/node/util/sysctl"
    	internalapi "k8s.io/cri-api/pkg/apis"
    	podresourcesapi "k8s.io/kubelet/pkg/apis/podresources/v1"
    	kubefeatures "k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/kubelet/cadvisor"
    	"k8s.io/kubernetes/pkg/kubelet/cm/cpumanager"
    	"k8s.io/kubernetes/pkg/kubelet/cm/devicemanager"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  4. pkg/scheduler/util/pod_resources.go

    kerthcet <******@****.***> 1701411930 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 01 06:25:30 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/dynamicresources/structuredparameters.go

    }
    
    func (c claimController) nodeIsSuitable(ctx context.Context, nodeName string, resources resources) (bool, error) {
    	nodeResources := resources[nodeName]
    	for driverName, perDriver := range c.namedresources {
    		okay, err := perDriver.controller.NodeIsSuitable(ctx, nodeResources[driverName].NamedResources)
    		if err != nil {
    			// This is an error in the CEL expression which needs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 22 09:03:22 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.28.md

    - Enabled the `node-local` kubelet podresources API endpoint on windows, alongside unix. ([#115133](https://github.com/kubernetes/kubernetes/pull/115133), [@ffromani](https://github.com/ffromani))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/dra/plugin/noderesources.go

    Oksana Baranova <******@****.***> 1716840773 +0300
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 20:12:53 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. plugin/pkg/admission/noderestriction/admission_test.go

    			err:        "",
    		},
    		{
    			name:       "forbid update of mirror pod bound to self",
    			podsGetter: existingPods,
    			attributes: admission.NewAttributesRecord(coremymirrorpod, coremymirrorpod, podKind, coremymirrorpod.Namespace, coremymirrorpod.Name, podResource, "", admission.Update, &metav1.UpdateOptions{}, false, mynode),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/registry.go

    		nodeunschedulable.Name:               nodeunschedulable.New,
    		noderesources.Name:                   runtime.FactoryAdapter(fts, noderesources.NewFit),
    		noderesources.BalancedAllocationName: runtime.FactoryAdapter(fts, noderesources.NewBalancedAllocation),
    		volumebinding.Name:                   runtime.FactoryAdapter(fts, volumebinding.New),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. pkg/kubelet/eviction/memory_threshold_notifier_test.go

    	notifier.EXPECT().Start(events).DoAndReturn(func(events chan<- struct{}) {
    		for i := 0; i < 4; i++ {
    			events <- struct{}{}
    		}
    	})
    
    	err := m.UpdateThreshold(nodeSummary(noResources, noResources, noResources, isAllocatableEvictionThreshold(threshold)))
    	if err != nil {
    		t.Errorf("Unexpected error updating threshold: %v", err)
    	}
    
    	go m.Start()
    
    	wg.Wait()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top