Argo CD · Schema

v1alpha1DuckTypeGenerator

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

Continuous DeliveryContainersDeploymentGitOpsKubernetesCNCFOpen Source

Properties

Name Type Description
configMapRef string
labelSelector object
name string
requeueAfterSeconds integer
template object
values object
View JSON Schema on GitHub

JSON Schema

argo-cd-v1alpha1-duck-type-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-duck-type-generator-schema.json",
  "title": "v1alpha1DuckTypeGenerator",
  "description": "DuckType defines a generator to match against clusters registered with ArgoCD.",
  "type": "object",
  "properties": {
    "configMapRef": {
      "type": "string",
      "title": "ConfigMapRef is a ConfigMap with the duck type definitions needed to retrieve the data\n             this includes apiVersion(group/version), kind, matchKey and validation settings\nName is the resource name of the kind, group and version, defined in the ConfigMapRef\nRequeueAfterSeconds is how long before the duckType will be rechecked for a change"
    },
    "labelSelector": {
      "$ref": "#/definitions/v1LabelSelector"
    },
    "name": {
      "type": "string"
    },
    "requeueAfterSeconds": {
      "type": "integer",
      "format": "int64"
    },
    "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"
      }
    }
  }
}