Argo CD · Schema

v1alpha1RetryStrategy

v1alpha1RetryStrategy schema from Argo CD API

Continuous DeliveryContainersDeploymentGitOpsKubernetesCNCFOpen Source

Properties

Name Type Description
backoff object
limit integer Limit is the maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
refresh boolean
View JSON Schema on GitHub

JSON Schema

argo-cd-v1alpha1-retry-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-retry-strategy-schema.json",
  "title": "v1alpha1RetryStrategy",
  "description": "v1alpha1RetryStrategy schema from Argo CD API",
  "type": "object",
  "properties": {
    "backoff": {
      "$ref": "#/definitions/v1alpha1Backoff"
    },
    "limit": {
      "description": "Limit is the maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.",
      "type": "integer",
      "format": "int64"
    },
    "refresh": {
      "type": "boolean",
      "title": "Refresh indicates if the latest revision should be used on retry instead of the initial one (default: false)"
    }
  }
}