Argo Workflows · Schema

io.argoproj.workflow.v1alpha1.ContinueOn

ContinueOn defines if a workflow should continue even if a task or step fails/errors. It can be specified if the workflow should continue when the pod errors, fails or both.

CNCFContainersData ProcessingKubernetesMachine-LearningOpen-SourceWorkflow Engine

Properties

Name Type Description
error boolean
failed boolean
View JSON Schema on GitHub

JSON Schema

argo-workflows-io-argoproj-workflow-v1alpha1-continue-on-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/argo-workflows/refs/heads/main/json-schema/argo-workflows-io-argoproj-workflow-v1alpha1-continue-on-schema.json",
  "title": "io.argoproj.workflow.v1alpha1.ContinueOn",
  "description": "ContinueOn defines if a workflow should continue even if a task or step fails/errors. It can be specified if the workflow should continue when the pod errors, fails or both.",
  "type": "object",
  "properties": {
    "error": {
      "type": "boolean"
    },
    "failed": {
      "type": "boolean"
    }
  }
}