Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for nodeInfos (0.46 sec)

  1. CHANGELOG/CHANGELOG-1.30.md

    - Some interfaces' signatures in the scheduler were updated: - PluginsRunner: used NodeInfo in `RunPreScorePlugins` and `RunScorePlugins`. - PreScorePlugin: used NodeInfo in `PreScore`. - Extender: used NodeInfo in `Filter` and `Prioritize`.
       ([#121954](https://github.com/kubernetes/kubernetes/pull/121954), [@AxeZhan](https://github.com/AxeZhan))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/zz_generated.conversion.go

    	if err := Convert_v1_NodeDaemonEndpoints_To_core_NodeDaemonEndpoints(&in.DaemonEndpoints, &out.DaemonEndpoints, s); err != nil {
    		return err
    	}
    	if err := Convert_v1_NodeSystemInfo_To_core_NodeSystemInfo(&in.NodeInfo, &out.NodeInfo, s); err != nil {
    		return err
    	}
    	out.Images = *(*[]core.ContainerImage)(unsafe.Pointer(&in.Images))
    	out.VolumesInUse = *(*[]core.UniqueVolumeName)(unsafe.Pointer(&in.VolumesInUse))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types.go

    	// Set of ids/uuids to uniquely identify the node.
    	// More info: https://kubernetes.io/docs/concepts/nodes/node/#info
    	// +optional
    	NodeInfo NodeSystemInfo `json:"nodeInfo,omitempty" protobuf:"bytes,7,opt,name=nodeInfo"`
    	// List of container images on this node
    	// +optional
    	// +listType=atomic
    	Images []ContainerImage `json:"images,omitempty" protobuf:"bytes,8,rep,name=images"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.7.md

    #### kube-scheduler
    * Scheduler can receive its policy configuration from a ConfigMap ([#43892](https://github.com/kubernetes/kubernetes/pull/43892), [@bsalamat](https://github.com/bsalamat))
    
    * Aggregated used ports at the NodeInfo level for PodFitsHostPorts predicate. ([#42524](https://github.com/kubernetes/kubernetes/pull/42524), [@k82cn](https://github.com/k82cn))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.12.md

    - Added support for volume attach limits for CSI volumes. ([#67731](https://github.com/kubernetes/kubernetes/pull/67731), [@gnufied](https://github.com/gnufied))
    
    ### SIG VMWare
    
    - The vmUUID is now preserved when renewing nodeinfo in the vSphere cloud provider. ([#66007](https://github.com/kubernetes/kubernetes/pull/66007), [@w-leads](https://github.com/w-leads))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 293.8K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.13.md

    * Move NodeInfo utils into pkg/scheduler/cache. ([#69495](https://github.com/kubernetes/kubernetes/pull/69495), [@wgliang](https://github.com/wgliang))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/core/v1/generated.proto

      optional NodeDaemonEndpoints daemonEndpoints = 6;
    
      // Set of ids/uuids to uniquely identify the node.
      // More info: https://kubernetes.io/docs/concepts/nodes/node/#info
      // +optional
      optional NodeSystemInfo nodeInfo = 7;
    
      // List of container images on this node
      // +optional
      repeated ContainerImage images = 8;
    
      // List of attachable volumes in use (mounted) by the node.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  8. pkg/apis/core/types.go

    	// +optional
    	Addresses []NodeAddress
    	// Endpoints of daemons running on the Node.
    	// +optional
    	DaemonEndpoints NodeDaemonEndpoints
    	// Set of ids/uuids to uniquely identify the node.
    	// +optional
    	NodeInfo NodeSystemInfo
    	// List of container images on this node
    	// +optional
    	Images []ContainerImage
    	// List of attachable volumes in use (mounted) by the node.
    	// +optional
    	VolumesInUse []UniqueVolumeName
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"daemonEndpoints": "Endpoints of daemons running on the Node.",
    	"nodeInfo":        "Set of ids/uuids to uniquely identify the node. More info: https://kubernetes.io/docs/concepts/nodes/node/#info",
    	"images":          "List of container images on this node",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/generated.proto

      optional NodeDaemonEndpoints daemonEndpoints = 6;
    
      // Set of ids/uuids to uniquely identify the node.
      // More info: https://kubernetes.io/docs/concepts/nodes/node/#info
      // +optional
      optional NodeSystemInfo nodeInfo = 7;
    
      // List of container images on this node
      // +optional
      // +listType=atomic
      repeated ContainerImage images = 8;
    
      // List of attachable volumes in use (mounted) by the node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
Back to top