Argo CD · Schema

v1alpha1ApplicationSetStrategy

ApplicationSetStrategy configures how generated Applications are updated in sequence.

Continuous DeliveryContainersDeploymentGitOpsKubernetesCNCFOpen Source

Properties

Name Type Description
deletionOrder string
rollingSync object
type string
View JSON Schema on GitHub

JSON Schema

argo-cd-v1alpha1-application-set-strategy-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-application-set-strategy-schema.json",
  "title": "v1alpha1ApplicationSetStrategy",
  "description": "ApplicationSetStrategy configures how generated Applications are updated in sequence.",
  "type": "object",
  "properties": {
    "deletionOrder": {
      "type": "string",
      "title": "DeletionOrder allows specifying the order for deleting generated apps when progressive sync is enabled.\naccepts values \"AllAtOnce\" and \"Reverse\""
    },
    "rollingSync": {
      "$ref": "#/definitions/v1alpha1ApplicationSetRolloutStrategy"
    },
    "type": {
      "type": "string"
    }
  }
}