Argo · Example Payload

Argo Workflows Workflow Spec Example

CNCFCI/CDGitOpsKubernetesOpen SourceProgressive DeliveryWorkflow Engine

Argo Workflows Workflow Spec Example is an example object payload from Argo, with 16 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

entrypointargumentstemplatesserviceAccountNamevolumesactiveDeadlineSecondsnodeSelectortolerationsparallelismttlStrategypodGCworkflowTemplateRefarchiveLogshooksonExitretryStrategy

Example Payload

Raw ↑
{
  "entrypoint": "example-value",
  "arguments": "example-value",
  "templates": [
    "example-value",
    "example-value"
  ],
  "serviceAccountName": "my-workflow",
  "volumes": [
    {},
    {}
  ],
  "activeDeadlineSeconds": 15,
  "nodeSelector": {},
  "tolerations": [
    {},
    {}
  ],
  "parallelism": 35,
  "ttlStrategy": {
    "secondsAfterCompletion": 69,
    "secondsAfterSuccess": 2,
    "secondsAfterFailure": 41
  },
  "podGC": {
    "strategy": "OnPodSuccess"
  },
  "workflowTemplateRef": {
    "name": "my-workflow",
    "clusterScope": true
  },
  "archiveLogs": true,
  "hooks": {},
  "onExit": "example-value",
  "retryStrategy": "example-value"
}