Argo CD · JSON Structure

Argo Cd V1Alpha1 Application Source Helm Structure

v1alpha1ApplicationSourceHelm schema from Argo CD API

Type: object Properties: 15
Continuous DeliveryContainersDeploymentGitOpsKubernetesCNCFOpen Source

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

Properties

apiVersions fileParameters ignoreMissingValueFiles kubeVersion namespace parameters passCredentials releaseName skipCrds skipSchemaValidation skipTests valueFiles values valuesObject version

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-cd/refs/heads/main/json-structure/argo-cd-v1alpha1-application-source-helm-structure.json",
  "name": "v1alpha1ApplicationSourceHelm",
  "description": "v1alpha1ApplicationSourceHelm schema from Argo CD API",
  "type": "object",
  "properties": {
    "apiVersions": {
      "description": "APIVersions specifies the Kubernetes resource API versions to pass to Helm when templating manifests. By default,\nArgo CD uses the API versions of the target cluster. The format is [group/]version/kind.",
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "fileParameters": {
      "type": "array",
      "name": "FileParameters are file parameters to the helm template",
      "items": {
        "$ref": "#/definitions/v1alpha1HelmFileParameter"
      }
    },
    "ignoreMissingValueFiles": {
      "type": "boolean",
      "name": "IgnoreMissingValueFiles prevents helm template from failing when valueFiles do not exist locally by not appending them to helm template --values"
    },
    "kubeVersion": {
      "description": "KubeVersion specifies the Kubernetes API version to pass to Helm when templating manifests. By default, Argo CD\nuses the Kubernetes version of the target cluster.",
      "type": "string"
    },
    "namespace": {
      "description": "Namespace is an optional namespace to template with. If left empty, defaults to the app's destination namespace.",
      "type": "string"
    },
    "parameters": {
      "type": "array",
      "name": "Parameters is a list of Helm parameters which are passed to the helm template command upon manifest generation",
      "items": {
        "$ref": "#/definitions/v1alpha1HelmParameter"
      }
    },
    "passCredentials": {
      "type": "boolean",
      "name": "PassCredentials pass credentials to all domains (Helm's --pass-credentials)"
    },
    "releaseName": {
      "type": "string",
      "name": "ReleaseName is the Helm release name to use. If omitted it will use the application name"
    },
    "skipCrds": {
      "type": "boolean",
      "name": "SkipCrds skips custom resource definition installation step (Helm's --skip-crds)"
    },
    "skipSchemaValidation": {
      "type": "boolean",
      "name": "SkipSchemaValidation skips JSON schema validation (Helm's --skip-schema-validation)"
    },
    "skipTests": {
      "description": "SkipTests skips test manifest installation step (Helm's --skip-tests).",
      "type": "boolean"
    },
    "valueFiles": {
      "type": "array",
      "name": "ValuesFiles is a list of Helm value files to use when generating a template",
      "items": {
        "type": "string"
      }
    },
    "values": {
      "type": "string",
      "name": "Values specifies Helm values to be passed to helm template, typically defined as a block. ValuesObject takes precedence over Values, so use one or the other.\n+patchStrategy=replace"
    },
    "valuesObject": {
      "$ref": "#/definitions/runtimeRawExtension"
    },
    "version": {
      "type": "string",
      "name": "Version is the Helm version to use for templating (\"3\")"
    }
  }
}