Argo CD · Schema

v1alpha1GitGenerator

v1alpha1GitGenerator schema from Argo CD API

Continuous DeliveryContainersDeploymentGitOpsKubernetesCNCFOpen Source

Properties

Name Type Description
directories array
files array
pathParamPrefix string
repoURL string
requeueAfterSeconds integer
revision string
template object
values object
View JSON Schema on GitHub

JSON Schema

argo-cd-v1alpha1-git-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-git-generator-schema.json",
  "title": "v1alpha1GitGenerator",
  "description": "v1alpha1GitGenerator schema from Argo CD API",
  "type": "object",
  "properties": {
    "directories": {
      "type": "array",
      "items": {
        "$ref": "#/definitions/v1alpha1GitDirectoryGeneratorItem"
      }
    },
    "files": {
      "type": "array",
      "items": {
        "$ref": "#/definitions/v1alpha1GitFileGeneratorItem"
      }
    },
    "pathParamPrefix": {
      "type": "string"
    },
    "repoURL": {
      "type": "string"
    },
    "requeueAfterSeconds": {
      "type": "integer",
      "format": "int64"
    },
    "revision": {
      "type": "string"
    },
    "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"
      }
    }
  }
}