Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 45 for nodeInfos (0.2 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/features/kube_features.go

    	// owner: @HirazawaUi
    	// kep: http://kep.k8s.io/4004
    	// alpha: v1.29
    	// beta: v1.31
    	// DisableNodeKubeProxyVersion disable the status.nodeInfo.kubeProxyVersion field of v1.Node
    	DisableNodeKubeProxyVersion featuregate.Feature = "DisableNodeKubeProxyVersion"
    
    	// owner: @pohly
    	// kep: http://kep.k8s.io/3063
    	// alpha: v1.26
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  3. cmd/admin-handlers.go

    		// Return it as is. Can happen for drive paths in non-distributed mode
    		return addr
    	}
    
    	// anonymizedAddr - Updated the addr of the node info with anonymized one
    	anonymizeAddr := func(info madmin.NodeInfo) {
    		info.SetAddr(anonAddr(info.GetAddr()))
    	}
    
    	partialWrite := func(oinfo madmin.HealthInfo) {
    		select {
    		case healthInfoCh <- oinfo:
    		case <-healthCtx.Done():
    		}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  4. 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)
  5. pkg/kubelet/kubelet_test.go

    				emptyResource:    resourceQuantity0,
    				v1.ResourcePods:  allowedPodQuantity,
    			}}},
    	}
    	kl.nodeLister = testNodeLister{nodes: nodes}
    
    	updatePluginResourcesFunc := func(node *schedulerframework.NodeInfo, attrs *lifecycle.PodAdmitAttributes) error {
    		// Maps from resourceName to the value we use to set node.allocatableResource[resourceName].
    		// A resource with invalid value (< 0) causes the function to return an error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  6. pkg/apis/core/zz_generated.deepcopy.go

    		}
    	}
    	if in.Addresses != nil {
    		in, out := &in.Addresses, &out.Addresses
    		*out = make([]NodeAddress, len(*in))
    		copy(*out, *in)
    	}
    	out.DaemonEndpoints = in.DaemonEndpoints
    	out.NodeInfo = in.NodeInfo
    	if in.Images != nil {
    		in, out := &in.Images, &out.Images
    		*out = make([]ContainerImage, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    		}
    	}
    	if in.Addresses != nil {
    		in, out := &in.Addresses, &out.Addresses
    		*out = make([]NodeAddress, len(*in))
    		copy(*out, *in)
    	}
    	out.DaemonEndpoints = in.DaemonEndpoints
    	out.NodeInfo = in.NodeInfo
    	if in.Images != nil {
    		in, out := &in.Images, &out.Images
    		*out = make([]ContainerImage, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top