Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for DiskPressure (0.22 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/example/v1/types.go

    	// +optional
    	Message string `json:"message,omitempty" protobuf:"bytes,3,opt,name=message"`
    	// A brief CamelCase message indicating details about why the pod is in this state.
    	// e.g. 'DiskPressure'
    	// +optional
    	Reason string `json:"reason,omitempty" protobuf:"bytes,4,opt,name=reason"`
    
    	// IP address of the host to which the pod is assigned. Empty if not yet scheduled.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. pkg/kubelet/eviction/eviction_manager.go

    			return lifecycle.PodAdmitResult{Admit: true}
    		}
    
    		// When node has memory pressure, check BestEffort Pod's toleration:
    		// admit it if tolerates memory pressure taint, fail for other tolerations, e.g. DiskPressure.
    		if corev1helpers.TolerationsTolerateTaint(attrs.Pod.Spec.Tolerations, &v1.Taint{
    			Key:    v1.TaintNodeMemoryPressure,
    			Effect: v1.TaintEffectNoSchedule,
    		}) {
    			return lifecycle.PodAdmitResult{Admit: true}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 18:55:56 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  3. pkg/kubelet/eviction/eviction_manager_test.go

    			fakeClock.Step(1 * time.Minute)
    
    			setDiskStatsBasedOnFs := func(whichFs string, diskPressure string, diskStat diskStats) diskStats {
    				if tc.inducePressureOnWhichFs == "nodefs" {
    					diskStat.rootFsAvailableBytes = diskPressure
    				} else if tc.inducePressureOnWhichFs == "imagefs" {
    					diskStat.imageFsAvailableBytes = diskPressure
    				} else if tc.inducePressureOnWhichFs == "containerfs" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  4. pkg/controller/daemon/daemon_controller_test.go

    }
    
    func setDaemonSetToleration(ds *apps.DaemonSet, tolerations []v1.Toleration) {
    	ds.Spec.Template.Spec.Tolerations = tolerations
    }
    
    // DaemonSet should launch a pod even when the node with MemoryPressure/DiskPressure/PIDPressure taints.
    func TestTaintPressureNodeDaemonLaunchesPod(t *testing.T) {
    	for _, strategy := range updateStrategies() {
    		ds := newDaemonSet("critical")
    		ds.Spec.UpdateStrategy = *strategy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.22.md

    - Prevent Kubelet stuck in `DiskPressure` when `imagefs.minReclaim` is set ([#99095](https://github.com/kubernetes/kubernetes/pull/99095), [@maxlaverse](https://github.com/maxlaverse))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
  6. pkg/apis/core/types.go

    	NodeMemoryPressure NodeConditionType = "MemoryPressure"
    	// NodeDiskPressure means the kubelet is under pressure due to insufficient available disk.
    	NodeDiskPressure NodeConditionType = "DiskPressure"
    	// NodeNetworkUnavailable means that network for the node is not correctly configured.
    	NodeNetworkUnavailable NodeConditionType = "NetworkUnavailable"
    )
    
    // NodeCondition represents the node's condition
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.16.md

      - The deprecated node condition type `OutOfDisk` has been removed. Use the `DiskPressure` condition instead. ([#72420](https://github.com/kubernetes/kubernetes/pull/72420), [@Pingan2017](https://github.com/Pingan2017))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 11 10:00:57 UTC 2021
    - 345.2K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.8.md

              * 'node.kubernetes.io/network-unavailable=:NoSchedule' if NetworkUnavailable is true
              * 'node.kubernetes.io/disk-pressure=:NoSchedule' if DiskPressure is true
              * 'node.kubernetes.io/memory-pressure=:NoSchedule' if MemoryPressure is true
              * 'node.kubernetes.io/out-of-disk=:NoSchedule' if OutOfDisk is true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.9.md

              * 'node.kubernetes.io/network-unavailable=:NoSchedule' if NetworkUnavailable is true
              * 'node.kubernetes.io/disk-pressure=:NoSchedule' if DiskPressure is true
              * 'node.kubernetes.io/memory-pressure=:NoSchedule' if MemoryPressure is true
              * 'node.kubernetes.io/out-of-disk=:NoSchedule' if OutOfDisk is true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types.go

    	NodeMemoryPressure NodeConditionType = "MemoryPressure"
    	// NodeDiskPressure means the kubelet is under pressure due to insufficient available disk.
    	NodeDiskPressure NodeConditionType = "DiskPressure"
    	// NodePIDPressure means the kubelet is under pressure due to insufficient available PID.
    	NodePIDPressure NodeConditionType = "PIDPressure"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top