Argo · JSON Structure

Argo Cd Application Destination Structure

Target Kubernetes cluster and namespace for application deployment.

Type: object Properties: 3
CNCFCI/CDGitOpsKubernetesOpen SourceProgressive DeliveryWorkflow Engine

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

Properties

server name namespace

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/refs/heads/main/json-structure/argo-cd-application-destination-structure.json",
  "name": "ApplicationDestination",
  "description": "Target Kubernetes cluster and namespace for application deployment.",
  "type": "object",
  "properties": {
    "server": {
      "type": "uri",
      "description": "Kubernetes API server URL of the target cluster. Use https://kubernetes.default.svc for the in-cluster target."
    },
    "name": {
      "type": "string",
      "description": "Name of the registered cluster. Mutually exclusive with server."
    },
    "namespace": {
      "type": "string",
      "description": "Target namespace in the destination cluster."
    }
  }
}