Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for NodeSchedulable (0.26 sec)

  1. pkg/kubelet/events/event.go

    	BackOffPullImage        = "BackOff"
    )
    
    // kubelet event reason list
    const (
    	NodeReady                            = "NodeReady"
    	NodeNotReady                         = "NodeNotReady"
    	NodeSchedulable                      = "NodeSchedulable"
    	NodeNotSchedulable                   = "NodeNotSchedulable"
    	StartingKubelet                      = "Starting"
    	KubeletSetupFailed                   = "KubeletSetupFailed"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_node_status.go

    		if node.Spec.Unschedulable {
    			kl.recordNodeStatusEvent(v1.EventTypeNormal, events.NodeNotSchedulable)
    		} else {
    			kl.recordNodeStatusEvent(v1.EventTypeNormal, events.NodeSchedulable)
    		}
    		kl.lastNodeUnschedulable = node.Spec.Unschedulable
    	}
    	return nil
    }
    
    // setNodeStatus fills in the Status fields of the given Node, overwriting
    // any fields that are currently set.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.30.md

    - kube-scheduler implemented scheduling hints for the `NodeUnschedulable` plugin. The scheduling hints allowed the scheduler to only retry scheduling a Pod that had been previously rejected by the `NodeSchedulable` plugin if a new Node or a Node update had set `.spec.unschedulable` to false.
       ([#122334](https://github.com/kubernetes/kubernetes/pull/122334), [@carlory](https://github.com/carlory))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    type NodeConditionType string
    
    // These are valid but not exhaustive conditions of node. A cloud provider may set a condition not listed here.
    // Relevant events contain "NodeReady", "NodeNotReady", "NodeSchedulable", and "NodeNotSchedulable".
    const (
    	// NodeReady means kubelet is healthy and ready to accept pods.
    	NodeReady NodeConditionType = "Ready"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.29.md

    - `kube-scheduler` implemented scheduling hints for the `NodeUnschedulable` plugin.
      The scheduling hints allow the scheduler to only retry scheduling a `Pod`
      that was previously rejected by the `NodeSchedulable` plugin if a new `Node` or a `Node` update sets `.spec.unschedulable` to false. ([#119396](https://github.com/kubernetes/kubernetes/pull/119396), [@wackxu](https://github.com/wackxu))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types.go

    )
    
    type NodeConditionType string
    
    // These are valid but not exhaustive conditions of node. A cloud provider may set a condition not listed here.
    // Relevant events contain "NodeReady", "NodeNotReady", "NodeSchedulable", and "NodeNotSchedulable".
    const (
    	// NodeReady means kubelet is healthy and ready to accept pods.
    	NodeReady NodeConditionType = "Ready"
    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