Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for SystemUUID (0.27 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/core/v1/nodesysteminfo.go

    	return b
    }
    
    // WithSystemUUID sets the SystemUUID field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the SystemUUID field is set to the value of the last call.
    func (b *NodeSystemInfoApplyConfiguration) WithSystemUUID(value string) *NodeSystemInfoApplyConfiguration {
    	b.SystemUUID = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 6K bytes
    - Viewed (0)
  2. pkg/api/testing/node_example.json

                },
                {
                    "type": "LegacyHostIP",
                    "address": "104.197.20.11"
                }
            ],
            "nodeInfo": {
                "machineID": "",
                "systemUUID": "D59FA3FA-7B5B-7287-5E1A-1D79F13CB577",
                "bootID": "44a832f3-8cfb-4de5-b7d2-d66030b6cd95",
                "kernelVersion": "3.16.0-0.bpo.4-amd64",
                "osImage": "Debian GNU/Linux 7 (wheezy)",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 25 00:36:50 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.Node.yaml

        kubeProxyVersion: kubeProxyVersionValue
        kubeletVersion: kubeletVersionValue
        machineID: machineIDValue
        operatingSystem: operatingSystemValue
        osImage: osImageValue
        systemUUID: systemUUIDValue
      phase: phaseValue
      volumesAttached:
      - devicePath: devicePathValue
        name: nameValue
      volumesInUse:
    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. pkg/kubelet/winstats/winstats_test.go

    	}
    }
    func (f fakeWinNodeStatsClient) getMachineInfo() (*cadvisorapi.MachineInfo, error) {
    	return &cadvisorapi.MachineInfo{
    		NumCores:       4,
    		MemoryCapacity: 1.6e+10,
    		MachineID:      "somehostname",
    		SystemUUID:     "E6C8AC43-582B-3575-4E1F-6DA170888906",
    	}, nil
    }
    
    func (f fakeWinNodeStatsClient) getVersionInfo() (*cadvisorapi.VersionInfo, error) {
    	return &cadvisorapi.VersionInfo{
    		KernelVersion: "v42",
    	}, nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 12:08:15 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. pkg/kubelet/winstats/perfcounter_nodestats.go

    		return nil, err
    	}
    
    	systemUUID, err := getSystemUUID()
    	if err != nil {
    		return nil, err
    	}
    
    	bootId, err := getBootID()
    	if err != nil {
    		return nil, err
    	}
    
    	return &cadvisorapi.MachineInfo{
    		NumCores:       ProcessorCount(),
    		MemoryCapacity: p.nodeInfo.memoryPhysicalCapacityBytes,
    		MachineID:      hostname,
    		SystemUUID:     systemUUID,
    		BootID:         bootId,
    	}, nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 18:37:21 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.Node.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/api/testdata/HEAD/core.v1.Node.yaml

        kubeProxyVersion: kubeProxyVersionValue
        kubeletVersion: kubeletVersionValue
        machineID: machineIDValue
        operatingSystem: operatingSystemValue
        osImage: osImageValue
        systemUUID: systemUUIDValue
      phase: phaseValue
      runtimeHandlers:
      - features:
          recursiveReadOnlyMounts: true
        name: nameValue
      volumesAttached:
      - devicePath: devicePathValue
        name: nameValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 23:06:39 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Node.yaml

        kubeProxyVersion: kubeProxyVersionValue
        kubeletVersion: kubeletVersionValue
        machineID: machineIDValue
        operatingSystem: operatingSystemValue
        osImage: osImageValue
        systemUUID: systemUUIDValue
      phase: phaseValue
      runtimeHandlers:
      - features:
          recursiveReadOnlyMounts: true
        name: nameValue
      volumesAttached:
      - devicePath: devicePathValue
        name: nameValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top