Argo CD · Schema

v1alpha1ClusterGenerator

ClusterGenerator defines a generator to match against clusters registered with ArgoCD.

Continuous DeliveryContainersDeploymentGitOpsKubernetesCNCFOpen Source

Properties

Name Type Description
flatList boolean
selector object
template object
values object
View JSON Schema on GitHub

JSON Schema

argo-cd-v1alpha1-cluster-generator-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/argo-cd/refs/heads/main/json-schema/argo-cd-v1alpha1-cluster-generator-schema.json",
  "title": "v1alpha1ClusterGenerator",
  "description": "ClusterGenerator defines a generator to match against clusters registered with ArgoCD.",
  "type": "object",
  "properties": {
    "flatList": {
      "type": "boolean",
      "title": "returns the clusters a single 'clusters' value in the template"
    },
    "selector": {
      "$ref": "#/definitions/v1LabelSelector"
    },
    "template": {
      "$ref": "#/definitions/v1alpha1ApplicationSetTemplate"
    },
    "values": {
      "type": "object",
      "title": "Values contains key/value pairs which are passed directly as parameters to the template",
      "additionalProperties": {
        "type": "string"
      }
    }
  }
}