Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for consuming (0.13 sec)

  1. pkg/kubelet/kubelet_test.go

    	pods[6].Status.Phase = v1.PodRunning
    	kubelet.podWorkers.(*fakePodWorkers).terminated = map[types.UID]bool{
    		pods[6].UID: true,
    	}
    
    	// pod that is failed but still terminating is included (it may still be consuming
    	// resources)
    	pods[7].Status.Phase = v1.PodFailed
    	kubelet.podWorkers.(*fakePodWorkers).terminationRequested = map[types.UID]bool{
    		pods[7].UID: true,
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods.go

    			return true
    		}
    	}
    	return false
    }
    
    // PodIsFinished returns true if SyncTerminatedPod is finished, ie.
    // all required node-level resources that a pod was consuming have
    // been reclaimed by the kubelet.
    func (kl *Kubelet) PodIsFinished(pod *v1.Pod) bool {
    	return kl.podWorkers.ShouldPodBeFinished(pod.UID)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  3. docs/en/docs/release-notes.md

        * This solves a vulnerability that could allow denial of service attacks by using many small multipart fields/files (parts), consuming high CPU and memory.
        * Only applications using forms (e.g. file uploads) could be affected.
        * For most cases, upgrading won't have any breaking changes.
    
    ## 0.91.0
    
    ### Upgrades
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
Back to top