Argo CD · Schema

v1alpha1Backoff

v1alpha1Backoff schema from Argo CD API

Continuous DeliveryContainersDeploymentGitOpsKubernetesCNCFOpen Source

Properties

Name Type Description
duration string
factor integer
maxDuration string
View JSON Schema on GitHub

JSON Schema

argo-cd-v1alpha1-backoff-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-backoff-schema.json",
  "title": "v1alpha1Backoff",
  "description": "v1alpha1Backoff schema from Argo CD API",
  "type": "object",
  "properties": {
    "duration": {
      "type": "string",
      "title": "Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. \"2m\", \"1h\")"
    },
    "factor": {
      "type": "integer",
      "format": "int64",
      "title": "Factor is a factor to multiply the base duration after each failed retry"
    },
    "maxDuration": {
      "type": "string",
      "title": "MaxDuration is the maximum amount of time allowed for the backoff strategy"
    }
  }
}