Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 33 for ActivePods (0.16 sec)

  1. pkg/scheduler/metrics/metrics.go

    }
    
    // GetGather returns the gatherer. It used by test case outside current package.
    func GetGather() metrics.Gatherer {
    	return legacyregistry.DefaultGatherer
    }
    
    // ActivePods returns the pending pods metrics with the label active
    func ActivePods() metrics.GaugeMetric {
    	return pendingPods.With(metrics.Labels{"queue": "active"})
    }
    
    // BackoffPods returns the pending pods metrics with the label backoff
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 08:22:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/memorymanager/fake_memory_manager.go

    	"k8s.io/kubernetes/pkg/kubelet/config"
    	"k8s.io/kubernetes/pkg/kubelet/status"
    )
    
    type fakeManager struct {
    	state state.State
    }
    
    func (m *fakeManager) Start(activePods ActivePodsFunc, sourcesReady config.SourcesReady, podStatusProvider status.PodStatusProvider, containerRuntime runtimeService, initialContainers containermap.ContainerMap) error {
    	klog.InfoS("Start()")
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. pkg/kubelet/nodeshutdown/nodeshutdown_manager_linux.go

    		return fmt.Errorf("node is shutting down")
    	}
    	return nil
    }
    
    func (m *managerImpl) processShutdownEvent() error {
    	m.logger.V(1).Info("Shutdown manager processing shutdown event")
    	activePods := m.getPods()
    
    	defer func() {
    		m.dbusCon.ReleaseInhibitLock(m.inhibitLock)
    		m.logger.V(1).Info("Shutdown manager completed processing shutdown event, node will shutdown shortly")
    	}()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 08:02:40 UTC 2022
    - 15.5K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/devicemanager/types.go

    	schedulerframework "k8s.io/kubernetes/pkg/scheduler/framework"
    )
    
    // Manager manages all the Device Plugins running on a node.
    type Manager interface {
    	// Start starts device plugin registration service.
    	Start(activePods ActivePodsFunc, sourcesReady config.SourcesReady, initialContainers containermap.ContainerMap, initialContainerRunningSet sets.Set[string]) error
    
    	// Allocate configures and assigns devices to a container in a pod. From
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. pkg/controller/job/job_controller.go

    		job:                  &job,
    		pods:                 pods,
    		activePods:           controller.FilterActivePods(logger, pods),
    		terminating:          terminating,
    		uncounted:            newUncountedTerminatedPods(*job.Status.UncountedTerminatedPods),
    		expectedRmFinalizers: jm.finalizerExpectations.getExpectedUIDs(key),
    	}
    	active := int32(len(jobCtx.activePods))
    	newSucceededPods, newFailedPods := getNewFinishedPods(jobCtx)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/devicemanager/topology_hints_test.go

    			healthyDevices:   make(map[string]sets.Set[string]),
    			allocatedDevices: make(map[string]sets.Set[string]),
    			podDevices:       newPodDevices(),
    			sourcesReady:     &sourcesReadyStub{},
    			activePods:       func() []*v1.Pod { return []*v1.Pod{tc.pod} },
    			numaNodes:        []int{0, 1},
    		}
    
    		for r := range tc.devices {
    			m.allDevices[r] = make(DeviceInstances)
    			m.healthyDevices[r] = sets.New[string]()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 47.5K bytes
    - Viewed (0)
  7. pkg/controller/controller_utils.go

    	}
    	return false
    }
    
    // ActivePods type allows custom sorting of pods so a controller can pick the best ones to delete.
    type ActivePods []*v1.Pod
    
    func (s ActivePods) Len() int      { return len(s) }
    func (s ActivePods) Swap(i, j int) { s[i], s[j] = s[j], s[i] }
    
    func (s ActivePods) Less(i, j int) bool {
    	// 1. Unassigned < assigned
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 12 15:34:44 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  8. pkg/controller/replicaset/replica_set_test.go

    		}
    
    		// Confirm that we've created the right number of replicas
    		activePods := int32(len(informers.Core().V1().Pods().Informer().GetIndexer().List()))
    		if activePods != *(rsSpec.Spec.Replicas) {
    			t.Fatalf("Unexpected number of active pods, expected %d, got %d", *(rsSpec.Spec.Replicas), activePods)
    		}
    		// Replenish the pod list, since we cut it down sizing up
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods.go

    // https://github.com/kubernetes/kubernetes/issues/104824
    func (kl *Kubelet) GetActivePods() []*v1.Pod {
    	allPods := kl.podManager.GetPods()
    	activePods := kl.filterOutInactivePods(allPods)
    	return activePods
    }
    
    // makeBlockVolumes maps the raw block devices specified in the path of the container
    // Experimental
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet.go

    		// we simply avoid doing any work.
    		if !kl.podWorkers.IsPodTerminationRequested(pod.UID) {
    			// We failed pods that we rejected, so activePods include all admitted
    			// pods that are alive.
    			activePods := kl.filterOutInactivePods(existingPods)
    
    			if utilfeature.DefaultFeatureGate.Enabled(features.InPlacePodVerticalScaling) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top