Argo · Schema

VersionMessage

Argo CD server version information.

CNCFCI/CDGitOpsKubernetesOpen SourceProgressive DeliveryWorkflow Engine

Properties

Name Type Description
Version string Argo CD version string.
BuildDate string Build date.
GitCommit string Git commit SHA of this build.
GoVersion string Go language version used to build.
Platform string Operating system and architecture.
View JSON Schema on GitHub

JSON Schema

argo-cd-version-message-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/argo/refs/heads/main/json-schema/argo-cd-version-message-schema.json",
  "title": "VersionMessage",
  "description": "Argo CD server version information.",
  "type": "object",
  "properties": {
    "Version": {
      "type": "string",
      "description": "Argo CD version string."
    },
    "BuildDate": {
      "type": "string",
      "description": "Build date."
    },
    "GitCommit": {
      "type": "string",
      "description": "Git commit SHA of this build."
    },
    "GoVersion": {
      "type": "string",
      "description": "Go language version used to build."
    },
    "Platform": {
      "type": "string",
      "description": "Operating system and architecture."
    }
  }
}