github.com/rancher/types@v0.0.0-20220328215343-4370ff10ecd5/apis/management.cattle.io/v3/schema/types.go (about) 1 package schema 2 3 type NodeInfo struct { 4 CPU CPUInfo 5 Memory MemoryInfo 6 OS OSInfo 7 Kubernetes KubernetesInfo 8 } 9 10 type CPUInfo struct { 11 Count int64 12 } 13 14 type MemoryInfo struct { 15 MemTotalKiB int64 16 } 17 18 type OSInfo struct { 19 DockerVersion string 20 KernelVersion string 21 OperatingSystem string 22 } 23 24 type KubernetesInfo struct { 25 KubeletVersion string 26 KubeProxyVersion string 27 }