Argo CD · Schema

v1alpha1KustomizeOptions

v1alpha1KustomizeOptions schema from Argo CD API

Continuous DeliveryContainersDeploymentGitOpsKubernetesCNCFOpen Source

Properties

Name Type Description
binaryPath string Deprecated: Use settings.Settings instead. See: settings.Settings.KustomizeVersions. If this field is set, it will be used as the Kustomize binary path. Otherwise, Versions is used.
buildOptions string
versions array Versions is a list of Kustomize versions and their corresponding binary paths and build options.
View JSON Schema on GitHub

JSON Schema

argo-cd-v1alpha1-kustomize-options-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-kustomize-options-schema.json",
  "title": "v1alpha1KustomizeOptions",
  "description": "v1alpha1KustomizeOptions schema from Argo CD API",
  "type": "object",
  "properties": {
    "binaryPath": {
      "description": "Deprecated: Use settings.Settings instead. See: settings.Settings.KustomizeVersions.\nIf this field is set, it will be used as the Kustomize binary path.\nOtherwise, Versions is used.",
      "type": "string",
      "title": "BinaryPath holds optional path to kustomize binary"
    },
    "buildOptions": {
      "type": "string",
      "title": "BuildOptions is a string of build parameters to use when calling `kustomize build`"
    },
    "versions": {
      "description": "Versions is a list of Kustomize versions and their corresponding binary paths and build options.",
      "type": "array",
      "items": {
        "$ref": "#/definitions/v1alpha1KustomizeVersion"
      }
    }
  }
}