Argo Workflows · Schema

io.argoproj.workflow.v1alpha1.Synchronization

Synchronization holds synchronization lock configuration

CNCFContainersData ProcessingKubernetesMachine LearningOpen SourceWorkflow Engine

Properties

Name Type Description
mutexes array v3.6 and after: Mutexes holds the list of Mutex lock details
semaphores array v3.6 and after: Semaphores holds the list of Semaphores configuration
View JSON Schema on GitHub

JSON Schema

argo-workflows-io-argoproj-workflow-v1alpha1-synchronization-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-synchronization-schema.json",
  "title": "io.argoproj.workflow.v1alpha1.Synchronization",
  "description": "Synchronization holds synchronization lock configuration",
  "type": "object",
  "properties": {
    "mutexes": {
      "description": "v3.6 and after: Mutexes holds the list of Mutex lock details",
      "type": "array",
      "items": {
        "$ref": "#/definitions/io.argoproj.workflow.v1alpha1.Mutex"
      }
    },
    "semaphores": {
      "description": "v3.6 and after: Semaphores holds the list of Semaphores configuration",
      "type": "array",
      "items": {
        "$ref": "#/definitions/io.argoproj.workflow.v1alpha1.SemaphoreRef"
      }
    }
  }
}