Argo CD · JSON Structure

Argo Cd V1 Node System Info Structure

NodeSystemInfo is a set of ids/uuids to uniquely identify the node.

Type: object Properties: 11
Continuous DeliveryContainersDeploymentGitOpsKubernetesCNCFOpen Source

v1NodeSystemInfo is a JSON Structure definition published by Argo CD, describing 11 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

architecture bootID containerRuntimeVersion kernelVersion kubeProxyVersion kubeletVersion machineID operatingSystem osImage swap systemUUID

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/argo-cd/refs/heads/main/json-structure/argo-cd-v1-node-system-info-structure.json",
  "name": "v1NodeSystemInfo",
  "description": "NodeSystemInfo is a set of ids/uuids to uniquely identify the node.",
  "type": "object",
  "properties": {
    "architecture": {
      "type": "string",
      "name": "The Architecture reported by the node"
    },
    "bootID": {
      "description": "Boot ID reported by the node.",
      "type": "string"
    },
    "containerRuntimeVersion": {
      "description": "ContainerRuntime Version reported by the node through runtime remote API (e.g. containerd://1.4.2).",
      "type": "string"
    },
    "kernelVersion": {
      "description": "Kernel Version reported by the node from 'uname -r' (e.g. 3.16.0-0.bpo.4-amd64).",
      "type": "string"
    },
    "kubeProxyVersion": {
      "description": "Deprecated: KubeProxy Version reported by the node.",
      "type": "string"
    },
    "kubeletVersion": {
      "description": "Kubelet Version reported by the node.",
      "type": "string"
    },
    "machineID": {
      "type": "string",
      "name": "MachineID reported by the node. For unique machine identification\nin the cluster this field is preferred. Learn more from man(5)\nmachine-id: http://man7.org/linux/man-pages/man5/machine-id.5.html"
    },
    "operatingSystem": {
      "type": "string",
      "name": "The Operating System reported by the node"
    },
    "osImage": {
      "description": "OS Image reported by the node from /etc/os-release (e.g. Debian GNU/Linux 7 (wheezy)).",
      "type": "string"
    },
    "swap": {
      "$ref": "#/definitions/v1NodeSwapStatus"
    },
    "systemUUID": {
      "type": "string",
      "name": "SystemUUID reported by the node. For unique machine identification\nMachineID is preferred. This field is specific to Red Hat hosts\nhttps://access.redhat.com/documentation/en-us/red_hat_subscription_management/1/html/rhsm/uuid"
    }
  }
}