Argo · JSON Structure

Argo Workflows Retry Strategy Structure

Strategy for retrying failed steps

Type: object Properties: 3
CNCFCI/CDGitOpsKubernetesOpen SourceProgressive DeliveryWorkflow Engine

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

Properties

limit retryPolicy backoff

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/refs/heads/main/json-structure/argo-workflows-retry-strategy-structure.json",
  "name": "RetryStrategy",
  "description": "Strategy for retrying failed steps",
  "type": "object",
  "properties": {
    "limit": {
      "type": "int32",
      "description": "Maximum number of retries"
    },
    "retryPolicy": {
      "type": "string",
      "enum": [
        "Always",
        "OnFailure",
        "OnError",
        "OnTransientError"
      ]
    },
    "backoff": {
      "type": "object",
      "properties": {
        "duration": {
          "type": "string"
        },
        "factor": {
          "type": "int32"
        },
        "maxDuration": {
          "type": "string"
        }
      }
    }
  }
}