Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 44 for nodeInfos (0.28 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/core.v1.Node.yaml

            resourceVersion: resourceVersionValue
            uid: uidValue
      daemonEndpoints:
        kubeletEndpoint:
          Port: 1
      images:
      - names:
        - namesValue
        sizeBytes: 2
      nodeInfo:
        architecture: architectureValue
        bootID: bootIDValue
        containerRuntimeVersion: containerRuntimeVersionValue
        kernelVersion: kernelVersionValue
        kubeProxyVersion: kubeProxyVersionValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 23:06:39 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Node.yaml

            resourceVersion: resourceVersionValue
            uid: uidValue
      daemonEndpoints:
        kubeletEndpoint:
          Port: 1
      images:
      - names:
        - namesValue
        sizeBytes: 2
      nodeInfo:
        architecture: architectureValue
        bootID: bootIDValue
        containerRuntimeVersion: containerRuntimeVersionValue
        kernelVersion: kernelVersionValue
        kubeProxyVersion: kubeProxyVersionValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.Node.yaml

            resourceVersion: resourceVersionValue
            uid: uidValue
      daemonEndpoints:
        kubeletEndpoint:
          Port: 1
      images:
      - names:
        - namesValue
        sizeBytes: 2
      nodeInfo:
        architecture: architectureValue
        bootID: bootIDValue
        containerRuntimeVersion: containerRuntimeVersionValue
        kernelVersion: kernelVersionValue
        kubeProxyVersion: kubeProxyVersionValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Node.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/HEAD/core.v1.Node.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 23:06:39 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/autoscaler_contract/framework_contract_test.go

    	RunPreFilterPlugins(ctx context.Context, state *framework.CycleState, pod *v1.Pod) (*framework.PreFilterResult, *framework.Status)
    	RunFilterPlugins(context.Context, *framework.CycleState, *v1.Pod, *framework.NodeInfo) *framework.Status
    }
    
    func TestFrameworkContract(t *testing.T) {
    	var f framework.Framework
    	var c frameworkContract = f
    	assert.Nil(t, c)
    }
    
    func TestNewFramework(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 23 02:17:34 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/nodevolumelimits/utils.go

    	} else {
    		tok := strings.Split(mpa, ",")
    		mpaSet = sets.New(tok...)
    	}
    
    	return mpaSet.Has(pluginName)
    }
    
    // volumeLimits returns volume limits associated with the node.
    func volumeLimits(n *framework.NodeInfo) map[v1.ResourceName]int64 {
    	volumeLimits := map[v1.ResourceName]int64{}
    	for k, v := range n.Allocatable.ScalarResources {
    		if v1helper.IsAttachableVolumeResourceName(k) {
    			volumeLimits[k] = v
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/container_manager.go

    	// requests for device plugin resources, and returns an error if fails.
    	// Otherwise, it updates allocatableResource in nodeInfo if necessary,
    	// to make sure it is at least equal to the pod's requested capacity for
    	// any registered device plugin resource
    	UpdatePluginResources(*schedulerframework.NodeInfo, *lifecycle.PodAdmitAttributes) error
    
    	InternalContainerLifecycle() InternalContainerLifecycle
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/apiclient/init_dryrun_test.go

    			expectedObjectJSON: []byte(`{"metadata":{"name":"control-plane-foo","creationTimestamp":null,"labels":{"kubernetes.io/hostname":"control-plane-foo"}},"spec":{},"status":{"daemonEndpoints":{"kubeletEndpoint":{"Port":0}},"nodeInfo":{"machineID":"","systemUUID":"","bootID":"","kernelVersion":"","osImage":"","containerRuntimeVersion":"","kubeletVersion":"","kubeProxyVersion":"","operatingSystem":"","architecture":""}}}`),
    			expectedErr:        false,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 09 04:58:02 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/container_manager_stub.go

    	return &kubecontainer.RunContainerOptions{}, nil
    }
    
    func (cm *containerManagerStub) UpdatePluginResources(*schedulerframework.NodeInfo, *lifecycle.PodAdmitAttributes) error {
    	return nil
    }
    
    func (cm *containerManagerStub) InternalContainerLifecycle() InternalContainerLifecycle {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 02:26:59 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top