Argo · Schema

ApplicationDestination

Target Kubernetes cluster and namespace for application deployment.

CNCFCI/CDGitOpsKubernetesOpen SourceProgressive DeliveryWorkflow Engine

Properties

Name Type Description
server string Kubernetes API server URL of the target cluster. Use https://kubernetes.default.svc for the in-cluster target.
name string Name of the registered cluster. Mutually exclusive with server.
namespace string Target namespace in the destination cluster.
View JSON Schema on GitHub

JSON Schema

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