LogoLogo
PipekitPricingBlogPipekit StatusRelease Notes
  • Introduction
  • Getting Started
  • CLI
    • Cron Workflows
  • Pipekit Agent
    • Helm Install
  • Pipekit
    • Authentication
      • Okta
    • Runs
    • Pipes
      • Managing Pipes
        • Run Conditions
        • Secrets
        • Alerting
      • Pipe Runs
        • Run Graph (DAG)
        • Pod Logs
        • Workflow Logs
        • Workflow YAML
      • Cron Workflows
      • Externally Triggered Workflows
    • Metrics
    • Templates
    • Clusters
    • Organization
      • Creating an Organization
      • Managing Users
      • Managing Alert Providers
      • Settings
      • Permissions
  • Python SDK
    • Jupyter Notebooks
    • Python Scripts
  • Self-Hosting Pipekit
    • Dependencies and Pre-requisites
    • Container Images
    • Kubernetes Permissions
    • Self-Hosted Pipekit Helm Chart
    • License Key
    • Initial Login and Break Glass Account
    • Integrating with your Git Provider
    • Configuring SSO
  • Additional Information
    • Free Trial Cluster
  • REST API
Powered by GitBook
On this page

REST API

How to use the Pipekit REST API

Last updated 23 days ago

The Pipekit REST API allows users to submit Argo Workflow and CronWorkflow types to be run or scheduled on a given cluster that Pipekit manages. It also allows users to query the Pipekit control plane for information about the status of workflow runs and the associated pods on their clusters.

To submit a Workflow or a CronWorkflow, a user will need:

  • Their bearer token

  • The UUID of the cluster to submit to

Authentication

If you have the pipekit CLI installed, the fastest way to get the bearer token is to login with pipekit login and then get the bearer token with pipekit hera -r.

Running a Workflow

Running a CronWorkflow

List Workflow statuses on a Cluster

get
Responses
200
OK
get
GET /api/users/v1/clusters/{cluster-uuid}/runs HTTP/1.1
Host: 
Accept: */*
200

OK

No content

  • Authentication
  • Running a Workflow
  • POST/api/users/v1/clusters/{cluster-uuid}/workflows
  • Running a CronWorkflow
  • POST/api/users/v1/clusters/{cluster-uuid}/cron-workflows
  • List Workflow statuses on a Cluster
  • GET/api/users/v1/clusters/{cluster-uuid}/runs
post
Body
apiVersionstringOptional

APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources

kindstringOptional

Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds

Responses
200
OK
post
POST /api/users/v1/clusters/{cluster-uuid}/workflows HTTP/1.1
Host: 
Content-Type: application/json
Accept: */*
Content-Length: 60591

{
  "apiVersion": "text",
  "kind": "text",
  "metadata": {
    "annotations": {
      "ANY_ADDITIONAL_PROPERTY": "text"
    },
    "clusterName": "text",
    "creationTimestamp": {
      "Time": "2025-05-18T09:30:03.392Z"
    },
    "deletionGracePeriodSeconds": 1,
    "deletionTimestamp": {
      "Time": "2025-05-18T09:30:03.392Z"
    },
    "finalizers": [
      "text"
    ],
    "generateName": "text",
    "generation": 1,
    "labels": {
      "ANY_ADDITIONAL_PROPERTY": "text"
    },
    "managedFields": [],
    "name": "text",
    "namespace": "text",
    "ownerReferences": [],
    "resourceVersion": "text",
    "selfLink": "text",
    "uid": "text"
  },
  "spec": {
    "activeDeadlineSeconds": 1,
    "affinity": {
      "nodeAffinity": {
        "preferredDuringSchedulingIgnoredDuringExecution": [],
        "requiredDuringSchedulingIgnoredDuringExecution": {
          "nodeSelectorTerms": []
        }
      },
      "podAffinity": {
        "preferredDuringSchedulingIgnoredDuringExecution": [],
        "requiredDuringSchedulingIgnoredDuringExecution": []
      },
      "podAntiAffinity": {
        "preferredDuringSchedulingIgnoredDuringExecution": [],
        "requiredDuringSchedulingIgnoredDuringExecution": []
      }
    },
    "archiveLogs": true,
    "arguments": {
      "artifacts": [],
      "parameters": []
    },
    "artifactGC": {
      "forceFinalizerRemoval": true,
      "podMetadata": {
        "annotations": {
          "ANY_ADDITIONAL_PROPERTY": "text"
        },
        "labels": {
          "ANY_ADDITIONAL_PROPERTY": "text"
        }
      },
      "podSpecPatch": "text",
      "serviceAccountName": "text",
      "strategy": "text"
    },
    "artifactRepositoryRef": {
      "configMap": "text",
      "key": "text"
    },
    "automountServiceAccountToken": true,
    "dnsConfig": {
      "nameservers": [
        "text"
      ],
      "options": [],
      "searches": [
        "text"
      ]
    },
    "dnsPolicy": "text",
    "entrypoint": "text",
    "executor": {
      "serviceAccountName": "text"
    },
    "hooks": {
      "ANY_ADDITIONAL_PROPERTY": {
        "arguments": {
          "artifacts": [],
          "parameters": []
        },
        "expression": "text",
        "template": "text",
        "templateRef": {
          "clusterScope": true,
          "name": "text",
          "template": "text"
        }
      }
    },
    "hostAliases": [],
    "hostNetwork": true,
    "imagePullSecrets": [],
    "metrics": {
      "prometheus": []
    },
    "nodeSelector": {
      "ANY_ADDITIONAL_PROPERTY": "text"
    },
    "onExit": "text",
    "parallelism": 1,
    "podDisruptionBudget": {
      "maxUnavailable": {
        "IntVal": 1,
        "StrVal": "text",
        "Type": 1
      },
      "minAvailable": {
        "IntVal": 1,
        "StrVal": "text",
        "Type": 1
      },
      "selector": {
        "matchExpressions": [],
        "matchLabels": {
          "ANY_ADDITIONAL_PROPERTY": "text"
        }
      }
    },
    "podGC": {
      "deleteDelayDuration": "text",
      "labelSelector": {
        "matchExpressions": [],
        "matchLabels": {
          "ANY_ADDITIONAL_PROPERTY": "text"
        }
      },
      "strategy": "text"
    },
    "podMetadata": {
      "annotations": {
        "ANY_ADDITIONAL_PROPERTY": "text"
      },
      "labels": {
        "ANY_ADDITIONAL_PROPERTY": "text"
      }
    },
    "podPriority": 1,
    "podPriorityClassName": "text",
    "podSpecPatch": "text",
    "priority": 1,
    "retryStrategy": {
      "affinity": {
        "nodeAntiAffinity": null
      },
      "backoff": {
        "duration": "text",
        "factor": {
          "IntVal": 1,
          "StrVal": "text",
          "Type": 1
        },
        "maxDuration": "text"
      },
      "expression": "text",
      "limit": {
        "IntVal": 1,
        "StrVal": "text",
        "Type": 1
      },
      "retryPolicy": "text"
    },
    "schedulerName": "text",
    "securityContext": {
      "fsGroup": 1,
      "fsGroupChangePolicy": "text",
      "runAsGroup": 1,
      "runAsNonRoot": true,
      "runAsUser": 1,
      "seLinuxOptions": {
        "level": "text",
        "role": "text",
        "type": "text",
        "user": "text"
      },
      "seccompProfile": {
        "localhostProfile": "text",
        "type": "text"
      },
      "supplementalGroups": [
        1
      ],
      "sysctls": [],
      "windowsOptions": {
        "gmsaCredentialSpec": "text",
        "gmsaCredentialSpecName": "text",
        "hostProcess": true,
        "runAsUserName": "text"
      }
    },
    "serviceAccountName": "text",
    "shutdown": "text",
    "suspend": true,
    "synchronization": {
      "mutex": {
        "name": "text",
        "namespace": "text"
      },
      "semaphore": {
        "configMapKeyRef": {
          "key": "text",
          "name": "text",
          "optional": true
        },
        "namespace": "text"
      }
    },
    "templateDefaults": {
      "activeDeadlineSeconds": {
        "IntVal": 1,
        "StrVal": "text",
        "Type": 1
      },
      "affinity": {
        "nodeAffinity": {
          "preferredDuringSchedulingIgnoredDuringExecution": [],
          "requiredDuringSchedulingIgnoredDuringExecution": {
            "nodeSelectorTerms": []
          }
        },
        "podAffinity": {
          "preferredDuringSchedulingIgnoredDuringExecution": [],
          "requiredDuringSchedulingIgnoredDuringExecution": []
        },
        "podAntiAffinity": {
          "preferredDuringSchedulingIgnoredDuringExecution": [],
          "requiredDuringSchedulingIgnoredDuringExecution": []
        }
      },
      "archiveLocation": {
        "archiveLogs": true,
        "artifactory": {
          "passwordSecret": {
            "key": "text",
            "name": "text",
            "optional": true
          },
          "url": "text",
          "usernameSecret": {
            "key": "text",
            "name": "text",
            "optional": true
          }
        },
        "azure": {
          "accountKeySecret": {
            "key": "text",
            "name": "text",
            "optional": true
          },
          "blob": "text",
          "container": "text",
          "endpoint": "text",
          "useSDKCreds": true
        },
        "gcs": {
          "bucket": "text",
          "key": "text",
          "serviceAccountKeySecret": {
            "key": "text",
            "name": "text",
            "optional": true
          }
        },
        "git": {
          "branch": "text",
          "depth": 1,
          "disableSubmodules": true,
          "fetch": [
            "text"
          ],
          "insecureIgnoreHostKey": true,
          "passwordSecret": {
            "key": "text",
            "name": "text",
            "optional": true
          },
          "repo": "text",
          "revision": "text",
          "singleBranch": true,
          "sshPrivateKeySecret": {
            "key": "text",
            "name": "text",
            "optional": true
          },
          "usernameSecret": {
            "key": "text",
            "name": "text",
            "optional": true
          }
        },
        "hdfs": {
          "addresses": [
            "text"
          ],
          "force": true,
          "hdfsUser": "text",
          "krbCCacheSecret": {
            "key": "text",
            "name": "text",
            "optional": true
          },
          "krbConfigConfigMap": {
            "key": "text",
            "name": "text",
            "optional": true
          },
          "krbKeytabSecret": {
            "key": "text",
            "name": "text",
            "optional": true
          },
          "krbRealm": "text",
          "krbServicePrincipalName": "text",
          "krbUsername": "text",
          "path": "text"
        },
        "http": {
          "auth": {
            "basicAuth": {
              "passwordSecret": {
                "key": "text",
                "name": "text",
                "optional": true
              },
              "usernameSecret": {
                "key": "text",
                "name": "text",
                "optional": true
              }
            },
            "clientCert": {
              "clientCertSecret": {
                "key": "text",
                "name": "text",
                "optional": true
              },
              "clientKeySecret": {
                "key": "text",
                "name": "text",
                "optional": true
              }
            },
            "oauth2": {
              "clientIDSecret": {
                "key": "text",
                "name": "text",
                "optional": true
              },
              "clientSecretSecret": {
                "key": "text",
                "name": "text",
                "optional": true
              },
              "endpointParams": [],
              "scopes": [
                "text"
              ],
              "tokenURLSecret": {
                "key": "text",
                "name": "text",
                "optional": true
              }
            }
          },
          "headers": [],
          "url": "text"
        },
        "oss": {
          "accessKeySecret": {
            "key": "text",
            "name": "text",
            "optional": true
          },
          "bucket": "text",
          "createBucketIfNotPresent": true,
          "endpoint": "text",
          "key": "text",
          "lifecycleRule": {
            "markDeletionAfterDays": 1,
            "markInfrequentAccessAfterDays": 1
          },
          "secretKeySecret": {
            "key": "text",
            "name": "text",
            "optional": true
          },
          "securityToken": "text",
          "useSDKCreds": true
        },
        "raw": {
          "data": "text"
        },
        "s3": {
          "accessKeySecret": {
            "key": "text",
            "name": "text",
            "optional": true
          },
          "bucket": "text",
          "caSecret": {
            "key": "text",
            "name": "text",
            "optional": true
          },
          "createBucketIfNotPresent": {
            "objectLocking": true
          },
          "encryptionOptions": {
            "enableEncryption": true,
            "kmsEncryptionContext": "text",
            "kmsKeyId": "text",
            "serverSideCustomerKeySecret": {
              "key": "text",
              "name": "text",
              "optional": true
            }
          },
          "endpoint": "text",
          "insecure": true,
          "key": "text",
          "region": "text",
          "roleARN": "text",
          "secretKeySecret": {
            "key": "text",
            "name": "text",
            "optional": true
          },
          "useSDKCreds": true
        }
      },
      "automountServiceAccountToken": true,
      "container": {
        "args": [
          "text"
        ],
        "command": [
          "text"
        ],
        "env": [],
        "envFrom": [],
        "image": "text",
        "imagePullPolicy": "text",
        "lifecycle": {
          "postStart": {
            "exec": {
              "command": [
                "text"
              ]
            },
            "httpGet": {
              "host": "text",
              "httpHeaders": [],
              "path": "text",
              "port": {
                "IntVal": 1,
                "StrVal": "text",
                "Type": 1
              },
              "scheme": "text"
            },
            "tcpSocket": {
              "host": "text",
              "port": {
                "IntVal": 1,
                "StrVal": "text",
                "Type": 1
              }
            }
          },
          "preStop": {
            "exec": {
              "command": [
                "text"
              ]
            },
            "httpGet": {
              "host": "text",
              "httpHeaders": [],
              "path": "text",
              "port": {
                "IntVal": 1,
                "StrVal": "text",
                "Type": 1
              },
              "scheme": "text"
            },
            "tcpSocket": {
              "host": "text",
              "port": {
                "IntVal": 1,
                "StrVal": "text",
                "Type": 1
              }
            }
          }
        },
        "livenessProbe": {
          "exec": {
            "command": [
              "text"
            ]
          },
          "failureThreshold": 1,
          "grpc": {
            "port": 1,
            "service": "text"
          },
          "httpGet": {
            "host": "text",
            "httpHeaders": [],
            "path": "text",
            "port": {
              "IntVal": 1,
              "StrVal": "text",
              "Type": 1
            },
            "scheme": "text"
          },
          "initialDelaySeconds": 1,
          "periodSeconds": 1,
          "successThreshold": 1,
          "tcpSocket": {
            "host": "text",
            "port": {
              "IntVal": 1,
              "StrVal": "text",
              "Type": 1
            }
          },
          "terminationGracePeriodSeconds": 1,
          "timeoutSeconds": 1
        },
        "name": "text",
        "ports": [],
        "readinessProbe": {
          "exec": {
            "command": [
              "text"
            ]
          },
          "failureThreshold": 1,
          "grpc": {
            "port": 1,
            "service": "text"
          },
          "httpGet": {
            "host": "text",
            "httpHeaders": [],
            "path": "text",
            "port": {
              "IntVal": 1,
              "StrVal": "text",
              "Type": 1
            },
            "scheme": "text"
          },
          "initialDelaySeconds": 1,
          "periodSeconds": 1,
          "successThreshold": 1,
          "tcpSocket": {
            "host": "text",
            "port": {
              "IntVal": 1,
              "StrVal": "text",
              "Type": 1
            }
          },
          "terminationGracePeriodSeconds": 1,
          "timeoutSeconds": 1
        },
        "resources": {
          "limits": {
            "ANY_ADDITIONAL_PROPERTY": {
              "Format": "text",
              "d": {
                "Dec": {
                  "scale": 1,
                  "unscaled": {
                    "abs": [
                      1
                    ],
                    "neg": true
                  }
                }
              },
              "i": {
                "scale": 1,
                "value": 1
              },
              "s": "text"
            }
          },
          "requests": {
            "ANY_ADDITIONAL_PROPERTY": {
              "Format": "text",
              "d": {
                "Dec": {
                  "scale": 1,
                  "unscaled": {
                    "abs": [
                      1
                    ],
                    "neg": true
                  }
                }
              },
              "i": {
                "scale": 1,
                "value": 1
              },
              "s": "text"
            }
          }
        },
        "securityContext": {
          "allowPrivilegeEscalation": true,
          "capabilities": {
            "add": [
              "text"
            ],
            "drop": [
              "text"
            ]
          },
          "privileged": true,
          "procMount": "text",
          "readOnlyRootFilesystem": true,
          "runAsGroup": 1,
          "runAsNonRoot": true,
          "runAsUser": 1,
          "seLinuxOptions": {
            "level": "text",
            "role": "text",
            "type": "text",
            "user": "text"
          },
          "seccompProfile": {
            "localhostProfile": "text",
            "type": "text"
          },
          "windowsOptions": {
            "gmsaCredentialSpec": "text",
            "gmsaCredentialSpecName": "text",
            "hostProcess": true,
            "runAsUserName": "text"
          }
        },
        "startupProbe": {
          "exec": {
            "command": [
              "text"
            ]
          },
          "failureThreshold": 1,
          "grpc": {
            "port": 1,
            "service": "text"
          },
          "httpGet": {
            "host": "text",
            "httpHeaders": [],
            "path": "text",
            "port": {
              "IntVal": 1,
              "StrVal": "text",
              "Type": 1
            },
            "scheme": "text"
          },
          "initialDelaySeconds": 1,
          "periodSeconds": 1,
          "successThreshold": 1,
          "tcpSocket": {
            "host": "text",
            "port": {
              "IntVal": 1,
              "StrVal": "text",
              "Type": 1
            }
          },
          "terminationGracePeriodSeconds": 1,
          "timeoutSeconds": 1
        },
        "stdin": true,
        "stdinOnce": true,
        "terminationMessagePath": "text",
        "terminationMessagePolicy": "text",
        "tty": true,
        "volumeDevices": [],
        "volumeMounts": [],
        "workingDir": "text"
      },
      "containerSet": {
        "containers": [],
        "retryStrategy": {
          "duration": "text",
          "retries": {
            "IntVal": 1,
            "StrVal": "text",
            "Type": 1
          }
        },
        "volumeMounts": []
      },
      "daemon": true,
      "dag": {
        "failFast": true,
        "target": "text",
        "tasks": []
      },
      "data": {
        "source": {
          "artifactPaths": {
            "archive": {
              "none": null,
              "tar": {
                "compressionLevel": 1
              },
              "zip": null
            },
            "archiveLogs": true,
            "artifactGC": {
              "podMetadata": {
                "annotations": {
                  "ANY_ADDITIONAL_PROPERTY": "text"
                },
                "labels": {
                  "ANY_ADDITIONAL_PROPERTY": "text"
                }
              },
              "serviceAccountName": "text",
              "strategy": "text"
            },
            "artifactory": {
              "passwordSecret": {
                "key": "text",
                "name": "text",
                "optional": true
              },
              "url": "text",
              "usernameSecret": {
                "key": "text",
                "name": "text",
                "optional": true
              }
            },
            "azure": {
              "accountKeySecret": {
                "key": "text",
                "name": "text",
                "optional": true
              },
              "blob": "text",
              "container": "text",
              "endpoint": "text",
              "useSDKCreds": true
            },
            "deleted": true,
            "from": "text",
            "fromExpression": "text",
            "gcs": {
              "bucket": "text",
              "key": "text",
              "serviceAccountKeySecret": {
                "key": "text",
                "name": "text",
                "optional": true
              }
            },
            "git": {
              "branch": "text",
              "depth": 1,
              "disableSubmodules": true,
              "fetch": [
                "text"
              ],
              "insecureIgnoreHostKey": true,
              "passwordSecret": {
                "key": "text",
                "name": "text",
                "optional": true
              },
              "repo": "text",
              "revision": "text",
              "singleBranch": true,
              "sshPrivateKeySecret": {
                "key": "text",
                "name": "text",
                "optional": true
              },
              "usernameSecret": {
                "key": "text",
                "name": "text",
                "optional": true
              }
            },
            "globalName": "text",
            "hdfs": {
              "addresses": [
                "text"
              ],
              "force": true,
              "hdfsUser": "text",
              "krbCCacheSecret": {
                "key": "text",
                "name": "text",
                "optional": true
              },
              "krbConfigConfigMap": {
                "key": "text",
                "name": "text",
                "optional": true
              },
              "krbKeytabSecret": {
                "key": "text",
                "name": "text",
                "optional": true
              },
              "krbRealm": "text",
              "krbServicePrincipalName": "text",
              "krbUsername": "text",
              "path": "text"
            },
            "http": {
              "auth": {
                "basicAuth": {
                  "passwordSecret": {
                    "key": "text",
                    "name": "text",
                    "optional": true
                  },
                  "usernameSecret": {
                    "key": "text",
                    "name": "text",
                    "optional": true
                  }
                },
                "clientCert": {
                  "clientCertSecret": {
                    "key": "text",
                    "name": "text",
                    "optional": true
                  },
                  "clientKeySecret": {
                    "key": "text",
                    "name": "text",
                    "optional": true
                  }
                },
                "oauth2": {
                  "clientIDSecret": {
                    "key": "text",
                    "name": "text",
                    "optional": true
                  },
                  "clientSecretSecret": {
                    "key": "text",
                    "name": "text",
                    "optional": true
                  },
                  "endpointParams": [],
                  "scopes": [
                    "text"
                  ],
                  "tokenURLSecret": {
                    "key": "text",
                    "name": "text",
                    "optional": true
                  }
                }
              },
              "headers": [],
              "url": "text"
            },
            "mode": 1,
            "name": "text",
            "optional": true,
            "oss": {
              "accessKeySecret": {
                "key": "text",
                "name": "text",
                "optional": true
              },
              "bucket": "text",
              "createBucketIfNotPresent": true,
              "endpoint": "text",
              "key": "text",
              "lifecycleRule": {
                "markDeletionAfterDays": 1,
                "markInfrequentAccessAfterDays": 1
              },
              "secretKeySecret": {
                "key": "text",
                "name": "text",
                "optional": true
              },
              "securityToken": "text",
              "useSDKCreds": true
            },
            "path": "text",
            "raw": {
              "data": "text"
            },
            "recurseMode": true,
            "s3": {
              "accessKeySecret": {
                "key": "text",
                "name": "text",
                "optional": true
              },
              "bucket": "text",
              "caSecret": {
                "key": "text",
                "name": "text",
                "optional": true
              },
              "createBucketIfNotPresent": {
                "objectLocking": true
              },
              "encryptionOptions": {
                "enableEncryption": true,
                "kmsEncryptionContext": "text",
                "kmsKeyId": "text",
                "serverSideCustomerKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                }
              },
              "endpoint": "text",
              "insecure": true,
              "key": "text",
              "region": "text",
              "roleARN": "text",
              "secretKeySecret": {
                "key": "text",
                "name": "text",
                "optional": true
              },
              "useSDKCreds": true
            },
            "subPath": "text"
          }
        },
        "transformation": []
      },
      "executor": {
        "serviceAccountName": "text"
      },
      "failFast": true,
      "hostAliases": [],
      "http": {
        "body": "text",
        "bodyFrom": {
          "bytes": "text"
        },
        "headers": [],
        "insecureSkipVerify": true,
        "method": "text",
        "successCondition": "text",
        "timeoutSeconds": 1,
        "url": "text"
      },
      "initContainers": [],
      "inputs": {
        "artifacts": [],
        "parameters": []
      },
      "memoize": {
        "cache": {
          "configMap": {
            "key": "text",
            "name": "text",
            "optional": true
          }
        },
        "key": "text",
        "maxAge": "text"
      },
      "metadata": {
        "annotations": {
          "ANY_ADDITIONAL_PROPERTY": "text"
        },
        "labels": {
          "ANY_ADDITIONAL_PROPERTY": "text"
        }
      },
      "metrics": {
        "prometheus": []
      },
      "name": "text",
      "nodeSelector": {
        "ANY_ADDITIONAL_PROPERTY": "text"
      },
      "outputs": {
        "artifacts": [],
        "exitCode": "text",
        "parameters": [],
        "result": "text"
      },
      "parallelism": 1,
      "plugin": null,
      "podSpecPatch": "text",
      "priority": 1,
      "priorityClassName": "text",
      "resource": {
        "action": "text",
        "failureCondition": "text",
        "flags": [
          "text"
        ],
        "manifest": "text",
        "manifestFrom": {
          "artifact": {
            "archive": {
              "none": null,
              "tar": {
                "compressionLevel": 1
              },
              "zip": null
            },
            "archiveLogs": true,
            "artifactGC": {
              "podMetadata": {
                "annotations": {
                  "ANY_ADDITIONAL_PROPERTY": "text"
                },
                "labels": {
                  "ANY_ADDITIONAL_PROPERTY": "text"
                }
              },
              "serviceAccountName": "text",
              "strategy": "text"
            },
            "artifactory": {
              "passwordSecret": {
                "key": "text",
                "name": "text",
                "optional": true
              },
              "url": "text",
              "usernameSecret": {
                "key": "text",
                "name": "text",
                "optional": true
              }
            },
            "azure": {
              "accountKeySecret": {
                "key": "text",
                "name": "text",
                "optional": true
              },
              "blob": "text",
              "container": "text",
              "endpoint": "text",
              "useSDKCreds": true
            },
            "deleted": true,
            "from": "text",
            "fromExpression": "text",
            "gcs": {
              "bucket": "text",
              "key": "text",
              "serviceAccountKeySecret": {
                "key": "text",
                "name": "text",
                "optional": true
              }
            },
            "git": {
              "branch": "text",
              "depth": 1,
              "disableSubmodules": true,
              "fetch": [
                "text"
              ],
              "insecureIgnoreHostKey": true,
              "passwordSecret": {
                "key": "text",
                "name": "text",
                "optional": true
              },
              "repo": "text",
              "revision": "text",
              "singleBranch": true,
              "sshPrivateKeySecret": {
                "key": "text",
                "name": "text",
                "optional": true
              },
              "usernameSecret": {
                "key": "text",
                "name": "text",
                "optional": true
              }
            },
            "globalName": "text",
            "hdfs": {
              "addresses": [
                "text"
              ],
              "force": true,
              "hdfsUser": "text",
              "krbCCacheSecret": {
                "key": "text",
                "name": "text",
                "optional": true
              },
              "krbConfigConfigMap": {
                "key": "text",
                "name": "text",
                "optional": true
              },
              "krbKeytabSecret": {
                "key": "text",
                "name": "text",
                "optional": true
              },
              "krbRealm": "text",
              "krbServicePrincipalName": "text",
              "krbUsername": "text",
              "path": "text"
            },
            "http": {
              "auth": {
                "basicAuth": {
                  "passwordSecret": {
                    "key": "text",
                    "name": "text",
                    "optional": true
                  },
                  "usernameSecret": {
                    "key": "text",
                    "name": "text",
                    "optional": true
                  }
                },
                "clientCert": {
                  "clientCertSecret": {
                    "key": "text",
                    "name": "text",
                    "optional": true
                  },
                  "clientKeySecret": {
                    "key": "text",
                    "name": "text",
                    "optional": true
                  }
                },
                "oauth2": {
                  "clientIDSecret": {
                    "key": "text",
                    "name": "text",
                    "optional": true
                  },
                  "clientSecretSecret": {
                    "key": "text",
                    "name": "text",
                    "optional": true
                  },
                  "endpointParams": [],
                  "scopes": [
                    "text"
                  ],
                  "tokenURLSecret": {
                    "key": "text",
                    "name": "text",
                    "optional": true
                  }
                }
              },
              "headers": [],
              "url": "text"
            },
            "mode": 1,
            "name": "text",
            "optional": true,
            "oss": {
              "accessKeySecret": {
                "key": "text",
                "name": "text",
                "optional": true
              },
              "bucket": "text",
              "createBucketIfNotPresent": true,
              "endpoint": "text",
              "key": "text",
              "lifecycleRule": {
                "markDeletionAfterDays": 1,
                "markInfrequentAccessAfterDays": 1
              },
              "secretKeySecret": {
                "key": "text",
                "name": "text",
                "optional": true
              },
              "securityToken": "text",
              "useSDKCreds": true
            },
            "path": "text",
            "raw": {
              "data": "text"
            },
            "recurseMode": true,
            "s3": {
              "accessKeySecret": {
                "key": "text",
                "name": "text",
                "optional": true
              },
              "bucket": "text",
              "caSecret": {
                "key": "text",
                "name": "text",
                "optional": true
              },
              "createBucketIfNotPresent": {
                "objectLocking": true
              },
              "encryptionOptions": {
                "enableEncryption": true,
                "kmsEncryptionContext": "text",
                "kmsKeyId": "text",
                "serverSideCustomerKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                }
              },
              "endpoint": "text",
              "insecure": true,
              "key": "text",
              "region": "text",
              "roleARN": "text",
              "secretKeySecret": {
                "key": "text",
                "name": "text",
                "optional": true
              },
              "useSDKCreds": true
            },
            "subPath": "text"
          }
        },
        "mergeStrategy": "text",
        "setOwnerReference": true,
        "successCondition": "text"
      },
      "retryStrategy": {
        "affinity": {
          "nodeAntiAffinity": null
        },
        "backoff": {
          "duration": "text",
          "factor": {
            "IntVal": 1,
            "StrVal": "text",
            "Type": 1
          },
          "maxDuration": "text"
        },
        "expression": "text",
        "limit": {
          "IntVal": 1,
          "StrVal": "text",
          "Type": 1
        },
        "retryPolicy": "text"
      },
      "schedulerName": "text",
      "script": {
        "args": [
          "text"
        ],
        "command": [
          "text"
        ],
        "env": [],
        "envFrom": [],
        "image": "text",
        "imagePullPolicy": "text",
        "lifecycle": {
          "postStart": {
            "exec": {
              "command": [
                "text"
              ]
            },
            "httpGet": {
              "host": "text",
              "httpHeaders": [],
              "path": "text",
              "port": {
                "IntVal": 1,
                "StrVal": "text",
                "Type": 1
              },
              "scheme": "text"
            },
            "tcpSocket": {
              "host": "text",
              "port": {
                "IntVal": 1,
                "StrVal": "text",
                "Type": 1
              }
            }
          },
          "preStop": {
            "exec": {
              "command": [
                "text"
              ]
            },
            "httpGet": {
              "host": "text",
              "httpHeaders": [],
              "path": "text",
              "port": {
                "IntVal": 1,
                "StrVal": "text",
                "Type": 1
              },
              "scheme": "text"
            },
            "tcpSocket": {
              "host": "text",
              "port": {
                "IntVal": 1,
                "StrVal": "text",
                "Type": 1
              }
            }
          }
        },
        "livenessProbe": {
          "exec": {
            "command": [
              "text"
            ]
          },
          "failureThreshold": 1,
          "grpc": {
            "port": 1,
            "service": "text"
          },
          "httpGet": {
            "host": "text",
            "httpHeaders": [],
            "path": "text",
            "port": {
              "IntVal": 1,
              "StrVal": "text",
              "Type": 1
            },
            "scheme": "text"
          },
          "initialDelaySeconds": 1,
          "periodSeconds": 1,
          "successThreshold": 1,
          "tcpSocket": {
            "host": "text",
            "port": {
              "IntVal": 1,
              "StrVal": "text",
              "Type": 1
            }
          },
          "terminationGracePeriodSeconds": 1,
          "timeoutSeconds": 1
        },
        "name": "text",
        "ports": [],
        "readinessProbe": {
          "exec": {
            "command": [
              "text"
            ]
          },
          "failureThreshold": 1,
          "grpc": {
            "port": 1,
            "service": "text"
          },
          "httpGet": {
            "host": "text",
            "httpHeaders": [],
            "path": "text",
            "port": {
              "IntVal": 1,
              "StrVal": "text",
              "Type": 1
            },
            "scheme": "text"
          },
          "initialDelaySeconds": 1,
          "periodSeconds": 1,
          "successThreshold": 1,
          "tcpSocket": {
            "host": "text",
            "port": {
              "IntVal": 1,
              "StrVal": "text",
              "Type": 1
            }
          },
          "terminationGracePeriodSeconds": 1,
          "timeoutSeconds": 1
        },
        "resources": {
          "limits": {
            "ANY_ADDITIONAL_PROPERTY": {
              "Format": "text",
              "d": {
                "Dec": {
                  "scale": 1,
                  "unscaled": {
                    "abs": [
                      1
                    ],
                    "neg": true
                  }
                }
              },
              "i": {
                "scale": 1,
                "value": 1
              },
              "s": "text"
            }
          },
          "requests": {
            "ANY_ADDITIONAL_PROPERTY": {
              "Format": "text",
              "d": {
                "Dec": {
                  "scale": 1,
                  "unscaled": {
                    "abs": [
                      1
                    ],
                    "neg": true
                  }
                }
              },
              "i": {
                "scale": 1,
                "value": 1
              },
              "s": "text"
            }
          }
        },
        "securityContext": {
          "allowPrivilegeEscalation": true,
          "capabilities": {
            "add": [
              "text"
            ],
            "drop": [
              "text"
            ]
          },
          "privileged": true,
          "procMount": "text",
          "readOnlyRootFilesystem": true,
          "runAsGroup": 1,
          "runAsNonRoot": true,
          "runAsUser": 1,
          "seLinuxOptions": {
            "level": "text",
            "role": "text",
            "type": "text",
            "user": "text"
          },
          "seccompProfile": {
            "localhostProfile": "text",
            "type": "text"
          },
          "windowsOptions": {
            "gmsaCredentialSpec": "text",
            "gmsaCredentialSpecName": "text",
            "hostProcess": true,
            "runAsUserName": "text"
          }
        },
        "source": "text",
        "startupProbe": {
          "exec": {
            "command": [
              "text"
            ]
          },
          "failureThreshold": 1,
          "grpc": {
            "port": 1,
            "service": "text"
          },
          "httpGet": {
            "host": "text",
            "httpHeaders": [],
            "path": "text",
            "port": {
              "IntVal": 1,
              "StrVal": "text",
              "Type": 1
            },
            "scheme": "text"
          },
          "initialDelaySeconds": 1,
          "periodSeconds": 1,
          "successThreshold": 1,
          "tcpSocket": {
            "host": "text",
            "port": {
              "IntVal": 1,
              "StrVal": "text",
              "Type": 1
            }
          },
          "terminationGracePeriodSeconds": 1,
          "timeoutSeconds": 1
        },
        "stdin": true,
        "stdinOnce": true,
        "terminationMessagePath": "text",
        "terminationMessagePolicy": "text",
        "tty": true,
        "volumeDevices": [],
        "volumeMounts": [],
        "workingDir": "text"
      },
      "securityContext": {
        "fsGroup": 1,
        "fsGroupChangePolicy": "text",
        "runAsGroup": 1,
        "runAsNonRoot": true,
        "runAsUser": 1,
        "seLinuxOptions": {
          "level": "text",
          "role": "text",
          "type": "text",
          "user": "text"
        },
        "seccompProfile": {
          "localhostProfile": "text",
          "type": "text"
        },
        "supplementalGroups": [
          1
        ],
        "sysctls": [],
        "windowsOptions": {
          "gmsaCredentialSpec": "text",
          "gmsaCredentialSpecName": "text",
          "hostProcess": true,
          "runAsUserName": "text"
        }
      },
      "serviceAccountName": "text",
      "sidecars": [],
      "steps": [],
      "suspend": {
        "duration": "text"
      },
      "synchronization": {
        "mutex": {
          "name": "text",
          "namespace": "text"
        },
        "semaphore": {
          "configMapKeyRef": {
            "key": "text",
            "name": "text",
            "optional": true
          },
          "namespace": "text"
        }
      },
      "timeout": "text",
      "tolerations": [],
      "volumes": []
    },
    "templates": [],
    "tolerations": [],
    "ttlStrategy": {
      "secondsAfterCompletion": 1,
      "secondsAfterFailure": 1,
      "secondsAfterSuccess": 1
    },
    "volumeClaimGC": {
      "strategy": "text"
    },
    "volumeClaimTemplates": [],
    "volumes": [],
    "workflowMetadata": {
      "annotations": {
        "ANY_ADDITIONAL_PROPERTY": "text"
      },
      "labels": {
        "ANY_ADDITIONAL_PROPERTY": "text"
      },
      "labelsFrom": {
        "ANY_ADDITIONAL_PROPERTY": {
          "expression": "text"
        }
      }
    },
    "workflowTemplateRef": {
      "clusterScope": true,
      "name": "text"
    }
  },
  "status": {
    "artifactGCStatus": {
      "notSpecified": true,
      "podsRecouped": {
        "ANY_ADDITIONAL_PROPERTY": true
      },
      "strategiesProcessed": {
        "ANY_ADDITIONAL_PROPERTY": true
      }
    },
    "artifactRepositoryRef": {
      "artifactRepository": {
        "archiveLogs": true,
        "artifactory": {
          "keyFormat": "text",
          "passwordSecret": {
            "key": "text",
            "name": "text",
            "optional": true
          },
          "repoURL": "text",
          "usernameSecret": {
            "key": "text",
            "name": "text",
            "optional": true
          }
        },
        "azure": {
          "accountKeySecret": {
            "key": "text",
            "name": "text",
            "optional": true
          },
          "blobNameFormat": "text",
          "container": "text",
          "endpoint": "text",
          "useSDKCreds": true
        },
        "gcs": {
          "bucket": "text",
          "keyFormat": "text",
          "serviceAccountKeySecret": {
            "key": "text",
            "name": "text",
            "optional": true
          }
        },
        "hdfs": {
          "addresses": [
            "text"
          ],
          "force": true,
          "hdfsUser": "text",
          "krbCCacheSecret": {
            "key": "text",
            "name": "text",
            "optional": true
          },
          "krbConfigConfigMap": {
            "key": "text",
            "name": "text",
            "optional": true
          },
          "krbKeytabSecret": {
            "key": "text",
            "name": "text",
            "optional": true
          },
          "krbRealm": "text",
          "krbServicePrincipalName": "text",
          "krbUsername": "text",
          "pathFormat": "text"
        },
        "oss": {
          "accessKeySecret": {
            "key": "text",
            "name": "text",
            "optional": true
          },
          "bucket": "text",
          "createBucketIfNotPresent": true,
          "endpoint": "text",
          "keyFormat": "text",
          "lifecycleRule": {
            "markDeletionAfterDays": 1,
            "markInfrequentAccessAfterDays": 1
          },
          "secretKeySecret": {
            "key": "text",
            "name": "text",
            "optional": true
          },
          "securityToken": "text",
          "useSDKCreds": true
        },
        "s3": {
          "accessKeySecret": {
            "key": "text",
            "name": "text",
            "optional": true
          },
          "bucket": "text",
          "caSecret": {
            "key": "text",
            "name": "text",
            "optional": true
          },
          "createBucketIfNotPresent": {
            "objectLocking": true
          },
          "encryptionOptions": {
            "enableEncryption": true,
            "kmsEncryptionContext": "text",
            "kmsKeyId": "text",
            "serverSideCustomerKeySecret": {
              "key": "text",
              "name": "text",
              "optional": true
            }
          },
          "endpoint": "text",
          "insecure": true,
          "keyFormat": "text",
          "keyPrefix": "text",
          "region": "text",
          "roleARN": "text",
          "secretKeySecret": {
            "key": "text",
            "name": "text",
            "optional": true
          },
          "useSDKCreds": true
        }
      },
      "configMap": "text",
      "default": true,
      "key": "text",
      "namespace": "text"
    },
    "compressedNodes": "text",
    "conditions": [],
    "estimatedDuration": 1,
    "finishedAt": {
      "Time": "2025-05-18T09:30:03.392Z"
    },
    "message": "text",
    "nodes": {
      "ANY_ADDITIONAL_PROPERTY": {
        "boundaryID": "text",
        "children": [
          "text"
        ],
        "daemoned": true,
        "displayName": "text",
        "estimatedDuration": 1,
        "finishedAt": {
          "Time": "2025-05-18T09:30:03.392Z"
        },
        "hostNodeName": "text",
        "id": "text",
        "inputs": {
          "artifacts": [],
          "parameters": []
        },
        "memoizationStatus": {
          "cacheName": "text",
          "hit": true,
          "key": "text"
        },
        "message": "text",
        "name": "text",
        "nodeFlag": {
          "hooked": true,
          "retried": true
        },
        "outboundNodes": [
          "text"
        ],
        "outputs": {
          "artifacts": [],
          "exitCode": "text",
          "parameters": [],
          "result": "text"
        },
        "phase": "text",
        "podIP": "text",
        "progress": "text",
        "resourcesDuration": {
          "ANY_ADDITIONAL_PROPERTY": 1
        },
        "startedAt": {
          "Time": "2025-05-18T09:30:03.392Z"
        },
        "synchronizationStatus": {
          "waiting": "text"
        },
        "templateName": "text",
        "templateRef": {
          "clusterScope": true,
          "name": "text",
          "template": "text"
        },
        "templateScope": "text",
        "type": "text"
      }
    },
    "offloadNodeStatusVersion": "text",
    "outputs": {
      "artifacts": [],
      "exitCode": "text",
      "parameters": [],
      "result": "text"
    },
    "persistentVolumeClaims": [],
    "phase": "text",
    "progress": "text",
    "resourcesDuration": {
      "ANY_ADDITIONAL_PROPERTY": 1
    },
    "startedAt": {
      "Time": "2025-05-18T09:30:03.392Z"
    },
    "storedTemplates": {
      "ANY_ADDITIONAL_PROPERTY": {
        "activeDeadlineSeconds": {
          "IntVal": 1,
          "StrVal": "text",
          "Type": 1
        },
        "affinity": {
          "nodeAffinity": {
            "preferredDuringSchedulingIgnoredDuringExecution": [],
            "requiredDuringSchedulingIgnoredDuringExecution": {
              "nodeSelectorTerms": []
            }
          },
          "podAffinity": {
            "preferredDuringSchedulingIgnoredDuringExecution": [],
            "requiredDuringSchedulingIgnoredDuringExecution": []
          },
          "podAntiAffinity": {
            "preferredDuringSchedulingIgnoredDuringExecution": [],
            "requiredDuringSchedulingIgnoredDuringExecution": []
          }
        },
        "archiveLocation": {
          "archiveLogs": true,
          "artifactory": {
            "passwordSecret": {
              "key": "text",
              "name": "text",
              "optional": true
            },
            "url": "text",
            "usernameSecret": {
              "key": "text",
              "name": "text",
              "optional": true
            }
          },
          "azure": {
            "accountKeySecret": {
              "key": "text",
              "name": "text",
              "optional": true
            },
            "blob": "text",
            "container": "text",
            "endpoint": "text",
            "useSDKCreds": true
          },
          "gcs": {
            "bucket": "text",
            "key": "text",
            "serviceAccountKeySecret": {
              "key": "text",
              "name": "text",
              "optional": true
            }
          },
          "git": {
            "branch": "text",
            "depth": 1,
            "disableSubmodules": true,
            "fetch": [
              "text"
            ],
            "insecureIgnoreHostKey": true,
            "passwordSecret": {
              "key": "text",
              "name": "text",
              "optional": true
            },
            "repo": "text",
            "revision": "text",
            "singleBranch": true,
            "sshPrivateKeySecret": {
              "key": "text",
              "name": "text",
              "optional": true
            },
            "usernameSecret": {
              "key": "text",
              "name": "text",
              "optional": true
            }
          },
          "hdfs": {
            "addresses": [
              "text"
            ],
            "force": true,
            "hdfsUser": "text",
            "krbCCacheSecret": {
              "key": "text",
              "name": "text",
              "optional": true
            },
            "krbConfigConfigMap": {
              "key": "text",
              "name": "text",
              "optional": true
            },
            "krbKeytabSecret": {
              "key": "text",
              "name": "text",
              "optional": true
            },
            "krbRealm": "text",
            "krbServicePrincipalName": "text",
            "krbUsername": "text",
            "path": "text"
          },
          "http": {
            "auth": {
              "basicAuth": {
                "passwordSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "usernameSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                }
              },
              "clientCert": {
                "clientCertSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "clientKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                }
              },
              "oauth2": {
                "clientIDSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "clientSecretSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "endpointParams": [],
                "scopes": [
                  "text"
                ],
                "tokenURLSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                }
              }
            },
            "headers": [],
            "url": "text"
          },
          "oss": {
            "accessKeySecret": {
              "key": "text",
              "name": "text",
              "optional": true
            },
            "bucket": "text",
            "createBucketIfNotPresent": true,
            "endpoint": "text",
            "key": "text",
            "lifecycleRule": {
              "markDeletionAfterDays": 1,
              "markInfrequentAccessAfterDays": 1
            },
            "secretKeySecret": {
              "key": "text",
              "name": "text",
              "optional": true
            },
            "securityToken": "text",
            "useSDKCreds": true
          },
          "raw": {
            "data": "text"
          },
          "s3": {
            "accessKeySecret": {
              "key": "text",
              "name": "text",
              "optional": true
            },
            "bucket": "text",
            "caSecret": {
              "key": "text",
              "name": "text",
              "optional": true
            },
            "createBucketIfNotPresent": {
              "objectLocking": true
            },
            "encryptionOptions": {
              "enableEncryption": true,
              "kmsEncryptionContext": "text",
              "kmsKeyId": "text",
              "serverSideCustomerKeySecret": {
                "key": "text",
                "name": "text",
                "optional": true
              }
            },
            "endpoint": "text",
            "insecure": true,
            "key": "text",
            "region": "text",
            "roleARN": "text",
            "secretKeySecret": {
              "key": "text",
              "name": "text",
              "optional": true
            },
            "useSDKCreds": true
          }
        },
        "automountServiceAccountToken": true,
        "container": {
          "args": [
            "text"
          ],
          "command": [
            "text"
          ],
          "env": [],
          "envFrom": [],
          "image": "text",
          "imagePullPolicy": "text",
          "lifecycle": {
            "postStart": {
              "exec": {
                "command": [
                  "text"
                ]
              },
              "httpGet": {
                "host": "text",
                "httpHeaders": [],
                "path": "text",
                "port": {
                  "IntVal": 1,
                  "StrVal": "text",
                  "Type": 1
                },
                "scheme": "text"
              },
              "tcpSocket": {
                "host": "text",
                "port": {
                  "IntVal": 1,
                  "StrVal": "text",
                  "Type": 1
                }
              }
            },
            "preStop": {
              "exec": {
                "command": [
                  "text"
                ]
              },
              "httpGet": {
                "host": "text",
                "httpHeaders": [],
                "path": "text",
                "port": {
                  "IntVal": 1,
                  "StrVal": "text",
                  "Type": 1
                },
                "scheme": "text"
              },
              "tcpSocket": {
                "host": "text",
                "port": {
                  "IntVal": 1,
                  "StrVal": "text",
                  "Type": 1
                }
              }
            }
          },
          "livenessProbe": {
            "exec": {
              "command": [
                "text"
              ]
            },
            "failureThreshold": 1,
            "grpc": {
              "port": 1,
              "service": "text"
            },
            "httpGet": {
              "host": "text",
              "httpHeaders": [],
              "path": "text",
              "port": {
                "IntVal": 1,
                "StrVal": "text",
                "Type": 1
              },
              "scheme": "text"
            },
            "initialDelaySeconds": 1,
            "periodSeconds": 1,
            "successThreshold": 1,
            "tcpSocket": {
              "host": "text",
              "port": {
                "IntVal": 1,
                "StrVal": "text",
                "Type": 1
              }
            },
            "terminationGracePeriodSeconds": 1,
            "timeoutSeconds": 1
          },
          "name": "text",
          "ports": [],
          "readinessProbe": {
            "exec": {
              "command": [
                "text"
              ]
            },
            "failureThreshold": 1,
            "grpc": {
              "port": 1,
              "service": "text"
            },
            "httpGet": {
              "host": "text",
              "httpHeaders": [],
              "path": "text",
              "port": {
                "IntVal": 1,
                "StrVal": "text",
                "Type": 1
              },
              "scheme": "text"
            },
            "initialDelaySeconds": 1,
            "periodSeconds": 1,
            "successThreshold": 1,
            "tcpSocket": {
              "host": "text",
              "port": {
                "IntVal": 1,
                "StrVal": "text",
                "Type": 1
              }
            },
            "terminationGracePeriodSeconds": 1,
            "timeoutSeconds": 1
          },
          "resources": {
            "limits": {
              "ANY_ADDITIONAL_PROPERTY": {
                "Format": "text",
                "d": {
                  "Dec": {
                    "scale": 1,
                    "unscaled": {
                      "abs": [
                        1
                      ],
                      "neg": true
                    }
                  }
                },
                "i": {
                  "scale": 1,
                  "value": 1
                },
                "s": "text"
              }
            },
            "requests": {
              "ANY_ADDITIONAL_PROPERTY": {
                "Format": "text",
                "d": {
                  "Dec": {
                    "scale": 1,
                    "unscaled": {
                      "abs": [
                        1
                      ],
                      "neg": true
                    }
                  }
                },
                "i": {
                  "scale": 1,
                  "value": 1
                },
                "s": "text"
              }
            }
          },
          "securityContext": {
            "allowPrivilegeEscalation": true,
            "capabilities": {
              "add": [
                "text"
              ],
              "drop": [
                "text"
              ]
            },
            "privileged": true,
            "procMount": "text",
            "readOnlyRootFilesystem": true,
            "runAsGroup": 1,
            "runAsNonRoot": true,
            "runAsUser": 1,
            "seLinuxOptions": {
              "level": "text",
              "role": "text",
              "type": "text",
              "user": "text"
            },
            "seccompProfile": {
              "localhostProfile": "text",
              "type": "text"
            },
            "windowsOptions": {
              "gmsaCredentialSpec": "text",
              "gmsaCredentialSpecName": "text",
              "hostProcess": true,
              "runAsUserName": "text"
            }
          },
          "startupProbe": {
            "exec": {
              "command": [
                "text"
              ]
            },
            "failureThreshold": 1,
            "grpc": {
              "port": 1,
              "service": "text"
            },
            "httpGet": {
              "host": "text",
              "httpHeaders": [],
              "path": "text",
              "port": {
                "IntVal": 1,
                "StrVal": "text",
                "Type": 1
              },
              "scheme": "text"
            },
            "initialDelaySeconds": 1,
            "periodSeconds": 1,
            "successThreshold": 1,
            "tcpSocket": {
              "host": "text",
              "port": {
                "IntVal": 1,
                "StrVal": "text",
                "Type": 1
              }
            },
            "terminationGracePeriodSeconds": 1,
            "timeoutSeconds": 1
          },
          "stdin": true,
          "stdinOnce": true,
          "terminationMessagePath": "text",
          "terminationMessagePolicy": "text",
          "tty": true,
          "volumeDevices": [],
          "volumeMounts": [],
          "workingDir": "text"
        },
        "containerSet": {
          "containers": [],
          "retryStrategy": {
            "duration": "text",
            "retries": {
              "IntVal": 1,
              "StrVal": "text",
              "Type": 1
            }
          },
          "volumeMounts": []
        },
        "daemon": true,
        "dag": {
          "failFast": true,
          "target": "text",
          "tasks": []
        },
        "data": {
          "source": {
            "artifactPaths": {
              "archive": {
                "none": null,
                "tar": {
                  "compressionLevel": 1
                },
                "zip": null
              },
              "archiveLogs": true,
              "artifactGC": {
                "podMetadata": {
                  "annotations": {
                    "ANY_ADDITIONAL_PROPERTY": "text"
                  },
                  "labels": {
                    "ANY_ADDITIONAL_PROPERTY": "text"
                  }
                },
                "serviceAccountName": "text",
                "strategy": "text"
              },
              "artifactory": {
                "passwordSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "url": "text",
                "usernameSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                }
              },
              "azure": {
                "accountKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "blob": "text",
                "container": "text",
                "endpoint": "text",
                "useSDKCreds": true
              },
              "deleted": true,
              "from": "text",
              "fromExpression": "text",
              "gcs": {
                "bucket": "text",
                "key": "text",
                "serviceAccountKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                }
              },
              "git": {
                "branch": "text",
                "depth": 1,
                "disableSubmodules": true,
                "fetch": [
                  "text"
                ],
                "insecureIgnoreHostKey": true,
                "passwordSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "repo": "text",
                "revision": "text",
                "singleBranch": true,
                "sshPrivateKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "usernameSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                }
              },
              "globalName": "text",
              "hdfs": {
                "addresses": [
                  "text"
                ],
                "force": true,
                "hdfsUser": "text",
                "krbCCacheSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "krbConfigConfigMap": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "krbKeytabSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "krbRealm": "text",
                "krbServicePrincipalName": "text",
                "krbUsername": "text",
                "path": "text"
              },
              "http": {
                "auth": {
                  "basicAuth": {
                    "passwordSecret": {
                      "key": "text",
                      "name": "text",
                      "optional": true
                    },
                    "usernameSecret": {
                      "key": "text",
                      "name": "text",
                      "optional": true
                    }
                  },
                  "clientCert": {
                    "clientCertSecret": {
                      "key": "text",
                      "name": "text",
                      "optional": true
                    },
                    "clientKeySecret": {
                      "key": "text",
                      "name": "text",
                      "optional": true
                    }
                  },
                  "oauth2": {
                    "clientIDSecret": {
                      "key": "text",
                      "name": "text",
                      "optional": true
                    },
                    "clientSecretSecret": {
                      "key": "text",
                      "name": "text",
                      "optional": true
                    },
                    "endpointParams": [],
                    "scopes": [
                      "text"
                    ],
                    "tokenURLSecret": {
                      "key": "text",
                      "name": "text",
                      "optional": true
                    }
                  }
                },
                "headers": [],
                "url": "text"
              },
              "mode": 1,
              "name": "text",
              "optional": true,
              "oss": {
                "accessKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "bucket": "text",
                "createBucketIfNotPresent": true,
                "endpoint": "text",
                "key": "text",
                "lifecycleRule": {
                  "markDeletionAfterDays": 1,
                  "markInfrequentAccessAfterDays": 1
                },
                "secretKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "securityToken": "text",
                "useSDKCreds": true
              },
              "path": "text",
              "raw": {
                "data": "text"
              },
              "recurseMode": true,
              "s3": {
                "accessKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "bucket": "text",
                "caSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "createBucketIfNotPresent": {
                  "objectLocking": true
                },
                "encryptionOptions": {
                  "enableEncryption": true,
                  "kmsEncryptionContext": "text",
                  "kmsKeyId": "text",
                  "serverSideCustomerKeySecret": {
                    "key": "text",
                    "name": "text",
                    "optional": true
                  }
                },
                "endpoint": "text",
                "insecure": true,
                "key": "text",
                "region": "text",
                "roleARN": "text",
                "secretKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "useSDKCreds": true
              },
              "subPath": "text"
            }
          },
          "transformation": []
        },
        "executor": {
          "serviceAccountName": "text"
        },
        "failFast": true,
        "hostAliases": [],
        "http": {
          "body": "text",
          "bodyFrom": {
            "bytes": "text"
          },
          "headers": [],
          "insecureSkipVerify": true,
          "method": "text",
          "successCondition": "text",
          "timeoutSeconds": 1,
          "url": "text"
        },
        "initContainers": [],
        "inputs": {
          "artifacts": [],
          "parameters": []
        },
        "memoize": {
          "cache": {
            "configMap": {
              "key": "text",
              "name": "text",
              "optional": true
            }
          },
          "key": "text",
          "maxAge": "text"
        },
        "metadata": {
          "annotations": {
            "ANY_ADDITIONAL_PROPERTY": "text"
          },
          "labels": {
            "ANY_ADDITIONAL_PROPERTY": "text"
          }
        },
        "metrics": {
          "prometheus": []
        },
        "name": "text",
        "nodeSelector": {
          "ANY_ADDITIONAL_PROPERTY": "text"
        },
        "outputs": {
          "artifacts": [],
          "exitCode": "text",
          "parameters": [],
          "result": "text"
        },
        "parallelism": 1,
        "plugin": null,
        "podSpecPatch": "text",
        "priority": 1,
        "priorityClassName": "text",
        "resource": {
          "action": "text",
          "failureCondition": "text",
          "flags": [
            "text"
          ],
          "manifest": "text",
          "manifestFrom": {
            "artifact": {
              "archive": {
                "none": null,
                "tar": {
                  "compressionLevel": 1
                },
                "zip": null
              },
              "archiveLogs": true,
              "artifactGC": {
                "podMetadata": {
                  "annotations": {
                    "ANY_ADDITIONAL_PROPERTY": "text"
                  },
                  "labels": {
                    "ANY_ADDITIONAL_PROPERTY": "text"
                  }
                },
                "serviceAccountName": "text",
                "strategy": "text"
              },
              "artifactory": {
                "passwordSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "url": "text",
                "usernameSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                }
              },
              "azure": {
                "accountKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "blob": "text",
                "container": "text",
                "endpoint": "text",
                "useSDKCreds": true
              },
              "deleted": true,
              "from": "text",
              "fromExpression": "text",
              "gcs": {
                "bucket": "text",
                "key": "text",
                "serviceAccountKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                }
              },
              "git": {
                "branch": "text",
                "depth": 1,
                "disableSubmodules": true,
                "fetch": [
                  "text"
                ],
                "insecureIgnoreHostKey": true,
                "passwordSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "repo": "text",
                "revision": "text",
                "singleBranch": true,
                "sshPrivateKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "usernameSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                }
              },
              "globalName": "text",
              "hdfs": {
                "addresses": [
                  "text"
                ],
                "force": true,
                "hdfsUser": "text",
                "krbCCacheSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "krbConfigConfigMap": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "krbKeytabSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "krbRealm": "text",
                "krbServicePrincipalName": "text",
                "krbUsername": "text",
                "path": "text"
              },
              "http": {
                "auth": {
                  "basicAuth": {
                    "passwordSecret": {
                      "key": "text",
                      "name": "text",
                      "optional": true
                    },
                    "usernameSecret": {
                      "key": "text",
                      "name": "text",
                      "optional": true
                    }
                  },
                  "clientCert": {
                    "clientCertSecret": {
                      "key": "text",
                      "name": "text",
                      "optional": true
                    },
                    "clientKeySecret": {
                      "key": "text",
                      "name": "text",
                      "optional": true
                    }
                  },
                  "oauth2": {
                    "clientIDSecret": {
                      "key": "text",
                      "name": "text",
                      "optional": true
                    },
                    "clientSecretSecret": {
                      "key": "text",
                      "name": "text",
                      "optional": true
                    },
                    "endpointParams": [],
                    "scopes": [
                      "text"
                    ],
                    "tokenURLSecret": {
                      "key": "text",
                      "name": "text",
                      "optional": true
                    }
                  }
                },
                "headers": [],
                "url": "text"
              },
              "mode": 1,
              "name": "text",
              "optional": true,
              "oss": {
                "accessKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "bucket": "text",
                "createBucketIfNotPresent": true,
                "endpoint": "text",
                "key": "text",
                "lifecycleRule": {
                  "markDeletionAfterDays": 1,
                  "markInfrequentAccessAfterDays": 1
                },
                "secretKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "securityToken": "text",
                "useSDKCreds": true
              },
              "path": "text",
              "raw": {
                "data": "text"
              },
              "recurseMode": true,
              "s3": {
                "accessKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "bucket": "text",
                "caSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "createBucketIfNotPresent": {
                  "objectLocking": true
                },
                "encryptionOptions": {
                  "enableEncryption": true,
                  "kmsEncryptionContext": "text",
                  "kmsKeyId": "text",
                  "serverSideCustomerKeySecret": {
                    "key": "text",
                    "name": "text",
                    "optional": true
                  }
                },
                "endpoint": "text",
                "insecure": true,
                "key": "text",
                "region": "text",
                "roleARN": "text",
                "secretKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "useSDKCreds": true
              },
              "subPath": "text"
            }
          },
          "mergeStrategy": "text",
          "setOwnerReference": true,
          "successCondition": "text"
        },
        "retryStrategy": {
          "affinity": {
            "nodeAntiAffinity": null
          },
          "backoff": {
            "duration": "text",
            "factor": {
              "IntVal": 1,
              "StrVal": "text",
              "Type": 1
            },
            "maxDuration": "text"
          },
          "expression": "text",
          "limit": {
            "IntVal": 1,
            "StrVal": "text",
            "Type": 1
          },
          "retryPolicy": "text"
        },
        "schedulerName": "text",
        "script": {
          "args": [
            "text"
          ],
          "command": [
            "text"
          ],
          "env": [],
          "envFrom": [],
          "image": "text",
          "imagePullPolicy": "text",
          "lifecycle": {
            "postStart": {
              "exec": {
                "command": [
                  "text"
                ]
              },
              "httpGet": {
                "host": "text",
                "httpHeaders": [],
                "path": "text",
                "port": {
                  "IntVal": 1,
                  "StrVal": "text",
                  "Type": 1
                },
                "scheme": "text"
              },
              "tcpSocket": {
                "host": "text",
                "port": {
                  "IntVal": 1,
                  "StrVal": "text",
                  "Type": 1
                }
              }
            },
            "preStop": {
              "exec": {
                "command": [
                  "text"
                ]
              },
              "httpGet": {
                "host": "text",
                "httpHeaders": [],
                "path": "text",
                "port": {
                  "IntVal": 1,
                  "StrVal": "text",
                  "Type": 1
                },
                "scheme": "text"
              },
              "tcpSocket": {
                "host": "text",
                "port": {
                  "IntVal": 1,
                  "StrVal": "text",
                  "Type": 1
                }
              }
            }
          },
          "livenessProbe": {
            "exec": {
              "command": [
                "text"
              ]
            },
            "failureThreshold": 1,
            "grpc": {
              "port": 1,
              "service": "text"
            },
            "httpGet": {
              "host": "text",
              "httpHeaders": [],
              "path": "text",
              "port": {
                "IntVal": 1,
                "StrVal": "text",
                "Type": 1
              },
              "scheme": "text"
            },
            "initialDelaySeconds": 1,
            "periodSeconds": 1,
            "successThreshold": 1,
            "tcpSocket": {
              "host": "text",
              "port": {
                "IntVal": 1,
                "StrVal": "text",
                "Type": 1
              }
            },
            "terminationGracePeriodSeconds": 1,
            "timeoutSeconds": 1
          },
          "name": "text",
          "ports": [],
          "readinessProbe": {
            "exec": {
              "command": [
                "text"
              ]
            },
            "failureThreshold": 1,
            "grpc": {
              "port": 1,
              "service": "text"
            },
            "httpGet": {
              "host": "text",
              "httpHeaders": [],
              "path": "text",
              "port": {
                "IntVal": 1,
                "StrVal": "text",
                "Type": 1
              },
              "scheme": "text"
            },
            "initialDelaySeconds": 1,
            "periodSeconds": 1,
            "successThreshold": 1,
            "tcpSocket": {
              "host": "text",
              "port": {
                "IntVal": 1,
                "StrVal": "text",
                "Type": 1
              }
            },
            "terminationGracePeriodSeconds": 1,
            "timeoutSeconds": 1
          },
          "resources": {
            "limits": {
              "ANY_ADDITIONAL_PROPERTY": {
                "Format": "text",
                "d": {
                  "Dec": {
                    "scale": 1,
                    "unscaled": {
                      "abs": [
                        1
                      ],
                      "neg": true
                    }
                  }
                },
                "i": {
                  "scale": 1,
                  "value": 1
                },
                "s": "text"
              }
            },
            "requests": {
              "ANY_ADDITIONAL_PROPERTY": {
                "Format": "text",
                "d": {
                  "Dec": {
                    "scale": 1,
                    "unscaled": {
                      "abs": [
                        1
                      ],
                      "neg": true
                    }
                  }
                },
                "i": {
                  "scale": 1,
                  "value": 1
                },
                "s": "text"
              }
            }
          },
          "securityContext": {
            "allowPrivilegeEscalation": true,
            "capabilities": {
              "add": [
                "text"
              ],
              "drop": [
                "text"
              ]
            },
            "privileged": true,
            "procMount": "text",
            "readOnlyRootFilesystem": true,
            "runAsGroup": 1,
            "runAsNonRoot": true,
            "runAsUser": 1,
            "seLinuxOptions": {
              "level": "text",
              "role": "text",
              "type": "text",
              "user": "text"
            },
            "seccompProfile": {
              "localhostProfile": "text",
              "type": "text"
            },
            "windowsOptions": {
              "gmsaCredentialSpec": "text",
              "gmsaCredentialSpecName": "text",
              "hostProcess": true,
              "runAsUserName": "text"
            }
          },
          "source": "text",
          "startupProbe": {
            "exec": {
              "command": [
                "text"
              ]
            },
            "failureThreshold": 1,
            "grpc": {
              "port": 1,
              "service": "text"
            },
            "httpGet": {
              "host": "text",
              "httpHeaders": [],
              "path": "text",
              "port": {
                "IntVal": 1,
                "StrVal": "text",
                "Type": 1
              },
              "scheme": "text"
            },
            "initialDelaySeconds": 1,
            "periodSeconds": 1,
            "successThreshold": 1,
            "tcpSocket": {
              "host": "text",
              "port": {
                "IntVal": 1,
                "StrVal": "text",
                "Type": 1
              }
            },
            "terminationGracePeriodSeconds": 1,
            "timeoutSeconds": 1
          },
          "stdin": true,
          "stdinOnce": true,
          "terminationMessagePath": "text",
          "terminationMessagePolicy": "text",
          "tty": true,
          "volumeDevices": [],
          "volumeMounts": [],
          "workingDir": "text"
        },
        "securityContext": {
          "fsGroup": 1,
          "fsGroupChangePolicy": "text",
          "runAsGroup": 1,
          "runAsNonRoot": true,
          "runAsUser": 1,
          "seLinuxOptions": {
            "level": "text",
            "role": "text",
            "type": "text",
            "user": "text"
          },
          "seccompProfile": {
            "localhostProfile": "text",
            "type": "text"
          },
          "supplementalGroups": [
            1
          ],
          "sysctls": [],
          "windowsOptions": {
            "gmsaCredentialSpec": "text",
            "gmsaCredentialSpecName": "text",
            "hostProcess": true,
            "runAsUserName": "text"
          }
        },
        "serviceAccountName": "text",
        "sidecars": [],
        "steps": [],
        "suspend": {
          "duration": "text"
        },
        "synchronization": {
          "mutex": {
            "name": "text",
            "namespace": "text"
          },
          "semaphore": {
            "configMapKeyRef": {
              "key": "text",
              "name": "text",
              "optional": true
            },
            "namespace": "text"
          }
        },
        "timeout": "text",
        "tolerations": [],
        "volumes": []
      }
    },
    "storedWorkflowTemplateSpec": {
      "activeDeadlineSeconds": 1,
      "affinity": {
        "nodeAffinity": {
          "preferredDuringSchedulingIgnoredDuringExecution": [],
          "requiredDuringSchedulingIgnoredDuringExecution": {
            "nodeSelectorTerms": []
          }
        },
        "podAffinity": {
          "preferredDuringSchedulingIgnoredDuringExecution": [],
          "requiredDuringSchedulingIgnoredDuringExecution": []
        },
        "podAntiAffinity": {
          "preferredDuringSchedulingIgnoredDuringExecution": [],
          "requiredDuringSchedulingIgnoredDuringExecution": []
        }
      },
      "archiveLogs": true,
      "arguments": {
        "artifacts": [],
        "parameters": []
      },
      "artifactGC": {
        "forceFinalizerRemoval": true,
        "podMetadata": {
          "annotations": {
            "ANY_ADDITIONAL_PROPERTY": "text"
          },
          "labels": {
            "ANY_ADDITIONAL_PROPERTY": "text"
          }
        },
        "podSpecPatch": "text",
        "serviceAccountName": "text",
        "strategy": "text"
      },
      "artifactRepositoryRef": {
        "configMap": "text",
        "key": "text"
      },
      "automountServiceAccountToken": true,
      "dnsConfig": {
        "nameservers": [
          "text"
        ],
        "options": [],
        "searches": [
          "text"
        ]
      },
      "dnsPolicy": "text",
      "entrypoint": "text",
      "executor": {
        "serviceAccountName": "text"
      },
      "hooks": {
        "ANY_ADDITIONAL_PROPERTY": {
          "arguments": {
            "artifacts": [],
            "parameters": []
          },
          "expression": "text",
          "template": "text",
          "templateRef": {
            "clusterScope": true,
            "name": "text",
            "template": "text"
          }
        }
      },
      "hostAliases": [],
      "hostNetwork": true,
      "imagePullSecrets": [],
      "metrics": {
        "prometheus": []
      },
      "nodeSelector": {
        "ANY_ADDITIONAL_PROPERTY": "text"
      },
      "onExit": "text",
      "parallelism": 1,
      "podDisruptionBudget": {
        "maxUnavailable": {
          "IntVal": 1,
          "StrVal": "text",
          "Type": 1
        },
        "minAvailable": {
          "IntVal": 1,
          "StrVal": "text",
          "Type": 1
        },
        "selector": {
          "matchExpressions": [],
          "matchLabels": {
            "ANY_ADDITIONAL_PROPERTY": "text"
          }
        }
      },
      "podGC": {
        "deleteDelayDuration": "text",
        "labelSelector": {
          "matchExpressions": [],
          "matchLabels": {
            "ANY_ADDITIONAL_PROPERTY": "text"
          }
        },
        "strategy": "text"
      },
      "podMetadata": {
        "annotations": {
          "ANY_ADDITIONAL_PROPERTY": "text"
        },
        "labels": {
          "ANY_ADDITIONAL_PROPERTY": "text"
        }
      },
      "podPriority": 1,
      "podPriorityClassName": "text",
      "podSpecPatch": "text",
      "priority": 1,
      "retryStrategy": {
        "affinity": {
          "nodeAntiAffinity": null
        },
        "backoff": {
          "duration": "text",
          "factor": {
            "IntVal": 1,
            "StrVal": "text",
            "Type": 1
          },
          "maxDuration": "text"
        },
        "expression": "text",
        "limit": {
          "IntVal": 1,
          "StrVal": "text",
          "Type": 1
        },
        "retryPolicy": "text"
      },
      "schedulerName": "text",
      "securityContext": {
        "fsGroup": 1,
        "fsGroupChangePolicy": "text",
        "runAsGroup": 1,
        "runAsNonRoot": true,
        "runAsUser": 1,
        "seLinuxOptions": {
          "level": "text",
          "role": "text",
          "type": "text",
          "user": "text"
        },
        "seccompProfile": {
          "localhostProfile": "text",
          "type": "text"
        },
        "supplementalGroups": [
          1
        ],
        "sysctls": [],
        "windowsOptions": {
          "gmsaCredentialSpec": "text",
          "gmsaCredentialSpecName": "text",
          "hostProcess": true,
          "runAsUserName": "text"
        }
      },
      "serviceAccountName": "text",
      "shutdown": "text",
      "suspend": true,
      "synchronization": {
        "mutex": {
          "name": "text",
          "namespace": "text"
        },
        "semaphore": {
          "configMapKeyRef": {
            "key": "text",
            "name": "text",
            "optional": true
          },
          "namespace": "text"
        }
      },
      "templateDefaults": {
        "activeDeadlineSeconds": {
          "IntVal": 1,
          "StrVal": "text",
          "Type": 1
        },
        "affinity": {
          "nodeAffinity": {
            "preferredDuringSchedulingIgnoredDuringExecution": [],
            "requiredDuringSchedulingIgnoredDuringExecution": {
              "nodeSelectorTerms": []
            }
          },
          "podAffinity": {
            "preferredDuringSchedulingIgnoredDuringExecution": [],
            "requiredDuringSchedulingIgnoredDuringExecution": []
          },
          "podAntiAffinity": {
            "preferredDuringSchedulingIgnoredDuringExecution": [],
            "requiredDuringSchedulingIgnoredDuringExecution": []
          }
        },
        "archiveLocation": {
          "archiveLogs": true,
          "artifactory": {
            "passwordSecret": {
              "key": "text",
              "name": "text",
              "optional": true
            },
            "url": "text",
            "usernameSecret": {
              "key": "text",
              "name": "text",
              "optional": true
            }
          },
          "azure": {
            "accountKeySecret": {
              "key": "text",
              "name": "text",
              "optional": true
            },
            "blob": "text",
            "container": "text",
            "endpoint": "text",
            "useSDKCreds": true
          },
          "gcs": {
            "bucket": "text",
            "key": "text",
            "serviceAccountKeySecret": {
              "key": "text",
              "name": "text",
              "optional": true
            }
          },
          "git": {
            "branch": "text",
            "depth": 1,
            "disableSubmodules": true,
            "fetch": [
              "text"
            ],
            "insecureIgnoreHostKey": true,
            "passwordSecret": {
              "key": "text",
              "name": "text",
              "optional": true
            },
            "repo": "text",
            "revision": "text",
            "singleBranch": true,
            "sshPrivateKeySecret": {
              "key": "text",
              "name": "text",
              "optional": true
            },
            "usernameSecret": {
              "key": "text",
              "name": "text",
              "optional": true
            }
          },
          "hdfs": {
            "addresses": [
              "text"
            ],
            "force": true,
            "hdfsUser": "text",
            "krbCCacheSecret": {
              "key": "text",
              "name": "text",
              "optional": true
            },
            "krbConfigConfigMap": {
              "key": "text",
              "name": "text",
              "optional": true
            },
            "krbKeytabSecret": {
              "key": "text",
              "name": "text",
              "optional": true
            },
            "krbRealm": "text",
            "krbServicePrincipalName": "text",
            "krbUsername": "text",
            "path": "text"
          },
          "http": {
            "auth": {
              "basicAuth": {
                "passwordSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "usernameSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                }
              },
              "clientCert": {
                "clientCertSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "clientKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                }
              },
              "oauth2": {
                "clientIDSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "clientSecretSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "endpointParams": [],
                "scopes": [
                  "text"
                ],
                "tokenURLSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                }
              }
            },
            "headers": [],
            "url": "text"
          },
          "oss": {
            "accessKeySecret": {
              "key": "text",
              "name": "text",
              "optional": true
            },
            "bucket": "text",
            "createBucketIfNotPresent": true,
            "endpoint": "text",
            "key": "text",
            "lifecycleRule": {
              "markDeletionAfterDays": 1,
              "markInfrequentAccessAfterDays": 1
            },
            "secretKeySecret": {
              "key": "text",
              "name": "text",
              "optional": true
            },
            "securityToken": "text",
            "useSDKCreds": true
          },
          "raw": {
            "data": "text"
          },
          "s3": {
            "accessKeySecret": {
              "key": "text",
              "name": "text",
              "optional": true
            },
            "bucket": "text",
            "caSecret": {
              "key": "text",
              "name": "text",
              "optional": true
            },
            "createBucketIfNotPresent": {
              "objectLocking": true
            },
            "encryptionOptions": {
              "enableEncryption": true,
              "kmsEncryptionContext": "text",
              "kmsKeyId": "text",
              "serverSideCustomerKeySecret": {
                "key": "text",
                "name": "text",
                "optional": true
              }
            },
            "endpoint": "text",
            "insecure": true,
            "key": "text",
            "region": "text",
            "roleARN": "text",
            "secretKeySecret": {
              "key": "text",
              "name": "text",
              "optional": true
            },
            "useSDKCreds": true
          }
        },
        "automountServiceAccountToken": true,
        "container": {
          "args": [
            "text"
          ],
          "command": [
            "text"
          ],
          "env": [],
          "envFrom": [],
          "image": "text",
          "imagePullPolicy": "text",
          "lifecycle": {
            "postStart": {
              "exec": {
                "command": [
                  "text"
                ]
              },
              "httpGet": {
                "host": "text",
                "httpHeaders": [],
                "path": "text",
                "port": {
                  "IntVal": 1,
                  "StrVal": "text",
                  "Type": 1
                },
                "scheme": "text"
              },
              "tcpSocket": {
                "host": "text",
                "port": {
                  "IntVal": 1,
                  "StrVal": "text",
                  "Type": 1
                }
              }
            },
            "preStop": {
              "exec": {
                "command": [
                  "text"
                ]
              },
              "httpGet": {
                "host": "text",
                "httpHeaders": [],
                "path": "text",
                "port": {
                  "IntVal": 1,
                  "StrVal": "text",
                  "Type": 1
                },
                "scheme": "text"
              },
              "tcpSocket": {
                "host": "text",
                "port": {
                  "IntVal": 1,
                  "StrVal": "text",
                  "Type": 1
                }
              }
            }
          },
          "livenessProbe": {
            "exec": {
              "command": [
                "text"
              ]
            },
            "failureThreshold": 1,
            "grpc": {
              "port": 1,
              "service": "text"
            },
            "httpGet": {
              "host": "text",
              "httpHeaders": [],
              "path": "text",
              "port": {
                "IntVal": 1,
                "StrVal": "text",
                "Type": 1
              },
              "scheme": "text"
            },
            "initialDelaySeconds": 1,
            "periodSeconds": 1,
            "successThreshold": 1,
            "tcpSocket": {
              "host": "text",
              "port": {
                "IntVal": 1,
                "StrVal": "text",
                "Type": 1
              }
            },
            "terminationGracePeriodSeconds": 1,
            "timeoutSeconds": 1
          },
          "name": "text",
          "ports": [],
          "readinessProbe": {
            "exec": {
              "command": [
                "text"
              ]
            },
            "failureThreshold": 1,
            "grpc": {
              "port": 1,
              "service": "text"
            },
            "httpGet": {
              "host": "text",
              "httpHeaders": [],
              "path": "text",
              "port": {
                "IntVal": 1,
                "StrVal": "text",
                "Type": 1
              },
              "scheme": "text"
            },
            "initialDelaySeconds": 1,
            "periodSeconds": 1,
            "successThreshold": 1,
            "tcpSocket": {
              "host": "text",
              "port": {
                "IntVal": 1,
                "StrVal": "text",
                "Type": 1
              }
            },
            "terminationGracePeriodSeconds": 1,
            "timeoutSeconds": 1
          },
          "resources": {
            "limits": {
              "ANY_ADDITIONAL_PROPERTY": {
                "Format": "text",
                "d": {
                  "Dec": {
                    "scale": 1,
                    "unscaled": {
                      "abs": [
                        1
                      ],
                      "neg": true
                    }
                  }
                },
                "i": {
                  "scale": 1,
                  "value": 1
                },
                "s": "text"
              }
            },
            "requests": {
              "ANY_ADDITIONAL_PROPERTY": {
                "Format": "text",
                "d": {
                  "Dec": {
                    "scale": 1,
                    "unscaled": {
                      "abs": [
                        1
                      ],
                      "neg": true
                    }
                  }
                },
                "i": {
                  "scale": 1,
                  "value": 1
                },
                "s": "text"
              }
            }
          },
          "securityContext": {
            "allowPrivilegeEscalation": true,
            "capabilities": {
              "add": [
                "text"
              ],
              "drop": [
                "text"
              ]
            },
            "privileged": true,
            "procMount": "text",
            "readOnlyRootFilesystem": true,
            "runAsGroup": 1,
            "runAsNonRoot": true,
            "runAsUser": 1,
            "seLinuxOptions": {
              "level": "text",
              "role": "text",
              "type": "text",
              "user": "text"
            },
            "seccompProfile": {
              "localhostProfile": "text",
              "type": "text"
            },
            "windowsOptions": {
              "gmsaCredentialSpec": "text",
              "gmsaCredentialSpecName": "text",
              "hostProcess": true,
              "runAsUserName": "text"
            }
          },
          "startupProbe": {
            "exec": {
              "command": [
                "text"
              ]
            },
            "failureThreshold": 1,
            "grpc": {
              "port": 1,
              "service": "text"
            },
            "httpGet": {
              "host": "text",
              "httpHeaders": [],
              "path": "text",
              "port": {
                "IntVal": 1,
                "StrVal": "text",
                "Type": 1
              },
              "scheme": "text"
            },
            "initialDelaySeconds": 1,
            "periodSeconds": 1,
            "successThreshold": 1,
            "tcpSocket": {
              "host": "text",
              "port": {
                "IntVal": 1,
                "StrVal": "text",
                "Type": 1
              }
            },
            "terminationGracePeriodSeconds": 1,
            "timeoutSeconds": 1
          },
          "stdin": true,
          "stdinOnce": true,
          "terminationMessagePath": "text",
          "terminationMessagePolicy": "text",
          "tty": true,
          "volumeDevices": [],
          "volumeMounts": [],
          "workingDir": "text"
        },
        "containerSet": {
          "containers": [],
          "retryStrategy": {
            "duration": "text",
            "retries": {
              "IntVal": 1,
              "StrVal": "text",
              "Type": 1
            }
          },
          "volumeMounts": []
        },
        "daemon": true,
        "dag": {
          "failFast": true,
          "target": "text",
          "tasks": []
        },
        "data": {
          "source": {
            "artifactPaths": {
              "archive": {
                "none": null,
                "tar": {
                  "compressionLevel": 1
                },
                "zip": null
              },
              "archiveLogs": true,
              "artifactGC": {
                "podMetadata": {
                  "annotations": {
                    "ANY_ADDITIONAL_PROPERTY": "text"
                  },
                  "labels": {
                    "ANY_ADDITIONAL_PROPERTY": "text"
                  }
                },
                "serviceAccountName": "text",
                "strategy": "text"
              },
              "artifactory": {
                "passwordSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "url": "text",
                "usernameSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                }
              },
              "azure": {
                "accountKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "blob": "text",
                "container": "text",
                "endpoint": "text",
                "useSDKCreds": true
              },
              "deleted": true,
              "from": "text",
              "fromExpression": "text",
              "gcs": {
                "bucket": "text",
                "key": "text",
                "serviceAccountKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                }
              },
              "git": {
                "branch": "text",
                "depth": 1,
                "disableSubmodules": true,
                "fetch": [
                  "text"
                ],
                "insecureIgnoreHostKey": true,
                "passwordSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "repo": "text",
                "revision": "text",
                "singleBranch": true,
                "sshPrivateKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "usernameSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                }
              },
              "globalName": "text",
              "hdfs": {
                "addresses": [
                  "text"
                ],
                "force": true,
                "hdfsUser": "text",
                "krbCCacheSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "krbConfigConfigMap": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "krbKeytabSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "krbRealm": "text",
                "krbServicePrincipalName": "text",
                "krbUsername": "text",
                "path": "text"
              },
              "http": {
                "auth": {
                  "basicAuth": {
                    "passwordSecret": {
                      "key": "text",
                      "name": "text",
                      "optional": true
                    },
                    "usernameSecret": {
                      "key": "text",
                      "name": "text",
                      "optional": true
                    }
                  },
                  "clientCert": {
                    "clientCertSecret": {
                      "key": "text",
                      "name": "text",
                      "optional": true
                    },
                    "clientKeySecret": {
                      "key": "text",
                      "name": "text",
                      "optional": true
                    }
                  },
                  "oauth2": {
                    "clientIDSecret": {
                      "key": "text",
                      "name": "text",
                      "optional": true
                    },
                    "clientSecretSecret": {
                      "key": "text",
                      "name": "text",
                      "optional": true
                    },
                    "endpointParams": [],
                    "scopes": [
                      "text"
                    ],
                    "tokenURLSecret": {
                      "key": "text",
                      "name": "text",
                      "optional": true
                    }
                  }
                },
                "headers": [],
                "url": "text"
              },
              "mode": 1,
              "name": "text",
              "optional": true,
              "oss": {
                "accessKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "bucket": "text",
                "createBucketIfNotPresent": true,
                "endpoint": "text",
                "key": "text",
                "lifecycleRule": {
                  "markDeletionAfterDays": 1,
                  "markInfrequentAccessAfterDays": 1
                },
                "secretKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "securityToken": "text",
                "useSDKCreds": true
              },
              "path": "text",
              "raw": {
                "data": "text"
              },
              "recurseMode": true,
              "s3": {
                "accessKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "bucket": "text",
                "caSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "createBucketIfNotPresent": {
                  "objectLocking": true
                },
                "encryptionOptions": {
                  "enableEncryption": true,
                  "kmsEncryptionContext": "text",
                  "kmsKeyId": "text",
                  "serverSideCustomerKeySecret": {
                    "key": "text",
                    "name": "text",
                    "optional": true
                  }
                },
                "endpoint": "text",
                "insecure": true,
                "key": "text",
                "region": "text",
                "roleARN": "text",
                "secretKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "useSDKCreds": true
              },
              "subPath": "text"
            }
          },
          "transformation": []
        },
        "executor": {
          "serviceAccountName": "text"
        },
        "failFast": true,
        "hostAliases": [],
        "http": {
          "body": "text",
          "bodyFrom": {
            "bytes": "text"
          },
          "headers": [],
          "insecureSkipVerify": true,
          "method": "text",
          "successCondition": "text",
          "timeoutSeconds": 1,
          "url": "text"
        },
        "initContainers": [],
        "inputs": {
          "artifacts": [],
          "parameters": []
        },
        "memoize": {
          "cache": {
            "configMap": {
              "key": "text",
              "name": "text",
              "optional": true
            }
          },
          "key": "text",
          "maxAge": "text"
        },
        "metadata": {
          "annotations": {
            "ANY_ADDITIONAL_PROPERTY": "text"
          },
          "labels": {
            "ANY_ADDITIONAL_PROPERTY": "text"
          }
        },
        "metrics": {
          "prometheus": []
        },
        "name": "text",
        "nodeSelector": {
          "ANY_ADDITIONAL_PROPERTY": "text"
        },
        "outputs": {
          "artifacts": [],
          "exitCode": "text",
          "parameters": [],
          "result": "text"
        },
        "parallelism": 1,
        "plugin": null,
        "podSpecPatch": "text",
        "priority": 1,
        "priorityClassName": "text",
        "resource": {
          "action": "text",
          "failureCondition": "text",
          "flags": [
            "text"
          ],
          "manifest": "text",
          "manifestFrom": {
            "artifact": {
              "archive": {
                "none": null,
                "tar": {
                  "compressionLevel": 1
                },
                "zip": null
              },
              "archiveLogs": true,
              "artifactGC": {
                "podMetadata": {
                  "annotations": {
                    "ANY_ADDITIONAL_PROPERTY": "text"
                  },
                  "labels": {
                    "ANY_ADDITIONAL_PROPERTY": "text"
                  }
                },
                "serviceAccountName": "text",
                "strategy": "text"
              },
              "artifactory": {
                "passwordSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "url": "text",
                "usernameSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                }
              },
              "azure": {
                "accountKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "blob": "text",
                "container": "text",
                "endpoint": "text",
                "useSDKCreds": true
              },
              "deleted": true,
              "from": "text",
              "fromExpression": "text",
              "gcs": {
                "bucket": "text",
                "key": "text",
                "serviceAccountKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                }
              },
              "git": {
                "branch": "text",
                "depth": 1,
                "disableSubmodules": true,
                "fetch": [
                  "text"
                ],
                "insecureIgnoreHostKey": true,
                "passwordSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "repo": "text",
                "revision": "text",
                "singleBranch": true,
                "sshPrivateKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "usernameSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                }
              },
              "globalName": "text",
              "hdfs": {
                "addresses": [
                  "text"
                ],
                "force": true,
                "hdfsUser": "text",
                "krbCCacheSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "krbConfigConfigMap": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "krbKeytabSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "krbRealm": "text",
                "krbServicePrincipalName": "text",
                "krbUsername": "text",
                "path": "text"
              },
              "http": {
                "auth": {
                  "basicAuth": {
                    "passwordSecret": {
                      "key": "text",
                      "name": "text",
                      "optional": true
                    },
                    "usernameSecret": {
                      "key": "text",
                      "name": "text",
                      "optional": true
                    }
                  },
                  "clientCert": {
                    "clientCertSecret": {
                      "key": "text",
                      "name": "text",
                      "optional": true
                    },
                    "clientKeySecret": {
                      "key": "text",
                      "name": "text",
                      "optional": true
                    }
                  },
                  "oauth2": {
                    "clientIDSecret": {
                      "key": "text",
                      "name": "text",
                      "optional": true
                    },
                    "clientSecretSecret": {
                      "key": "text",
                      "name": "text",
                      "optional": true
                    },
                    "endpointParams": [],
                    "scopes": [
                      "text"
                    ],
                    "tokenURLSecret": {
                      "key": "text",
                      "name": "text",
                      "optional": true
                    }
                  }
                },
                "headers": [],
                "url": "text"
              },
              "mode": 1,
              "name": "text",
              "optional": true,
              "oss": {
                "accessKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "bucket": "text",
                "createBucketIfNotPresent": true,
                "endpoint": "text",
                "key": "text",
                "lifecycleRule": {
                  "markDeletionAfterDays": 1,
                  "markInfrequentAccessAfterDays": 1
                },
                "secretKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "securityToken": "text",
                "useSDKCreds": true
              },
              "path": "text",
              "raw": {
                "data": "text"
              },
              "recurseMode": true,
              "s3": {
                "accessKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "bucket": "text",
                "caSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "createBucketIfNotPresent": {
                  "objectLocking": true
                },
                "encryptionOptions": {
                  "enableEncryption": true,
                  "kmsEncryptionContext": "text",
                  "kmsKeyId": "text",
                  "serverSideCustomerKeySecret": {
                    "key": "text",
                    "name": "text",
                    "optional": true
                  }
                },
                "endpoint": "text",
                "insecure": true,
                "key": "text",
                "region": "text",
                "roleARN": "text",
                "secretKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "useSDKCreds": true
              },
              "subPath": "text"
            }
          },
          "mergeStrategy": "text",
          "setOwnerReference": true,
          "successCondition": "text"
        },
        "retryStrategy": {
          "affinity": {
            "nodeAntiAffinity": null
          },
          "backoff": {
            "duration": "text",
            "factor": {
              "IntVal": 1,
              "StrVal": "text",
              "Type": 1
            },
            "maxDuration": "text"
          },
          "expression": "text",
          "limit": {
            "IntVal": 1,
            "StrVal": "text",
            "Type": 1
          },
          "retryPolicy": "text"
        },
        "schedulerName": "text",
        "script": {
          "args": [
            "text"
          ],
          "command": [
            "text"
          ],
          "env": [],
          "envFrom": [],
          "image": "text",
          "imagePullPolicy": "text",
          "lifecycle": {
            "postStart": {
              "exec": {
                "command": [
                  "text"
                ]
              },
              "httpGet": {
                "host": "text",
                "httpHeaders": [],
                "path": "text",
                "port": {
                  "IntVal": 1,
                  "StrVal": "text",
                  "Type": 1
                },
                "scheme": "text"
              },
              "tcpSocket": {
                "host": "text",
                "port": {
                  "IntVal": 1,
                  "StrVal": "text",
                  "Type": 1
                }
              }
            },
            "preStop": {
              "exec": {
                "command": [
                  "text"
                ]
              },
              "httpGet": {
                "host": "text",
                "httpHeaders": [],
                "path": "text",
                "port": {
                  "IntVal": 1,
                  "StrVal": "text",
                  "Type": 1
                },
                "scheme": "text"
              },
              "tcpSocket": {
                "host": "text",
                "port": {
                  "IntVal": 1,
                  "StrVal": "text",
                  "Type": 1
                }
              }
            }
          },
          "livenessProbe": {
            "exec": {
              "command": [
                "text"
              ]
            },
            "failureThreshold": 1,
            "grpc": {
              "port": 1,
              "service": "text"
            },
            "httpGet": {
              "host": "text",
              "httpHeaders": [],
              "path": "text",
              "port": {
                "IntVal": 1,
                "StrVal": "text",
                "Type": 1
              },
              "scheme": "text"
            },
            "initialDelaySeconds": 1,
            "periodSeconds": 1,
            "successThreshold": 1,
            "tcpSocket": {
              "host": "text",
              "port": {
                "IntVal": 1,
                "StrVal": "text",
                "Type": 1
              }
            },
            "terminationGracePeriodSeconds": 1,
            "timeoutSeconds": 1
          },
          "name": "text",
          "ports": [],
          "readinessProbe": {
            "exec": {
              "command": [
                "text"
              ]
            },
            "failureThreshold": 1,
            "grpc": {
              "port": 1,
              "service": "text"
            },
            "httpGet": {
              "host": "text",
              "httpHeaders": [],
              "path": "text",
              "port": {
                "IntVal": 1,
                "StrVal": "text",
                "Type": 1
              },
              "scheme": "text"
            },
            "initialDelaySeconds": 1,
            "periodSeconds": 1,
            "successThreshold": 1,
            "tcpSocket": {
              "host": "text",
              "port": {
                "IntVal": 1,
                "StrVal": "text",
                "Type": 1
              }
            },
            "terminationGracePeriodSeconds": 1,
            "timeoutSeconds": 1
          },
          "resources": {
            "limits": {
              "ANY_ADDITIONAL_PROPERTY": {
                "Format": "text",
                "d": {
                  "Dec": {
                    "scale": 1,
                    "unscaled": {
                      "abs": [
                        1
                      ],
                      "neg": true
                    }
                  }
                },
                "i": {
                  "scale": 1,
                  "value": 1
                },
                "s": "text"
              }
            },
            "requests": {
              "ANY_ADDITIONAL_PROPERTY": {
                "Format": "text",
                "d": {
                  "Dec": {
                    "scale": 1,
                    "unscaled": {
                      "abs": [
                        1
                      ],
                      "neg": true
                    }
                  }
                },
                "i": {
                  "scale": 1,
                  "value": 1
                },
                "s": "text"
              }
            }
          },
          "securityContext": {
            "allowPrivilegeEscalation": true,
            "capabilities": {
              "add": [
                "text"
              ],
              "drop": [
                "text"
              ]
            },
            "privileged": true,
            "procMount": "text",
            "readOnlyRootFilesystem": true,
            "runAsGroup": 1,
            "runAsNonRoot": true,
            "runAsUser": 1,
            "seLinuxOptions": {
              "level": "text",
              "role": "text",
              "type": "text",
              "user": "text"
            },
            "seccompProfile": {
              "localhostProfile": "text",
              "type": "text"
            },
            "windowsOptions": {
              "gmsaCredentialSpec": "text",
              "gmsaCredentialSpecName": "text",
              "hostProcess": true,
              "runAsUserName": "text"
            }
          },
          "source": "text",
          "startupProbe": {
            "exec": {
              "command": [
                "text"
              ]
            },
            "failureThreshold": 1,
            "grpc": {
              "port": 1,
              "service": "text"
            },
            "httpGet": {
              "host": "text",
              "httpHeaders": [],
              "path": "text",
              "port": {
                "IntVal": 1,
                "StrVal": "text",
                "Type": 1
              },
              "scheme": "text"
            },
            "initialDelaySeconds": 1,
            "periodSeconds": 1,
            "successThreshold": 1,
            "tcpSocket": {
              "host": "text",
              "port": {
                "IntVal": 1,
                "StrVal": "text",
                "Type": 1
              }
            },
            "terminationGracePeriodSeconds": 1,
            "timeoutSeconds": 1
          },
          "stdin": true,
          "stdinOnce": true,
          "terminationMessagePath": "text",
          "terminationMessagePolicy": "text",
          "tty": true,
          "volumeDevices": [],
          "volumeMounts": [],
          "workingDir": "text"
        },
        "securityContext": {
          "fsGroup": 1,
          "fsGroupChangePolicy": "text",
          "runAsGroup": 1,
          "runAsNonRoot": true,
          "runAsUser": 1,
          "seLinuxOptions": {
            "level": "text",
            "role": "text",
            "type": "text",
            "user": "text"
          },
          "seccompProfile": {
            "localhostProfile": "text",
            "type": "text"
          },
          "supplementalGroups": [
            1
          ],
          "sysctls": [],
          "windowsOptions": {
            "gmsaCredentialSpec": "text",
            "gmsaCredentialSpecName": "text",
            "hostProcess": true,
            "runAsUserName": "text"
          }
        },
        "serviceAccountName": "text",
        "sidecars": [],
        "steps": [],
        "suspend": {
          "duration": "text"
        },
        "synchronization": {
          "mutex": {
            "name": "text",
            "namespace": "text"
          },
          "semaphore": {
            "configMapKeyRef": {
              "key": "text",
              "name": "text",
              "optional": true
            },
            "namespace": "text"
          }
        },
        "timeout": "text",
        "tolerations": [],
        "volumes": []
      },
      "templates": [],
      "tolerations": [],
      "ttlStrategy": {
        "secondsAfterCompletion": 1,
        "secondsAfterFailure": 1,
        "secondsAfterSuccess": 1
      },
      "volumeClaimGC": {
        "strategy": "text"
      },
      "volumeClaimTemplates": [],
      "volumes": [],
      "workflowMetadata": {
        "annotations": {
          "ANY_ADDITIONAL_PROPERTY": "text"
        },
        "labels": {
          "ANY_ADDITIONAL_PROPERTY": "text"
        },
        "labelsFrom": {
          "ANY_ADDITIONAL_PROPERTY": {
            "expression": "text"
          }
        }
      },
      "workflowTemplateRef": {
        "clusterScope": true,
        "name": "text"
      }
    },
    "synchronization": {
      "mutex": {
        "holding": [],
        "waiting": []
      },
      "semaphore": {
        "holding": [],
        "waiting": []
      }
    },
    "taskResultsCompletionStatus": {
      "ANY_ADDITIONAL_PROPERTY": true
    }
  }
}
200

OK

No content

post
Body
apiVersionstringOptional

APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources

kindstringOptional

Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds

Responses
200
OK
post
POST /api/users/v1/clusters/{cluster-uuid}/cron-workflows HTTP/1.1
Host: 
Content-Type: application/json
Accept: */*
Content-Length: 21203

{
  "apiVersion": "text",
  "kind": "text",
  "metadata": {
    "annotations": {
      "ANY_ADDITIONAL_PROPERTY": "text"
    },
    "clusterName": "text",
    "creationTimestamp": {
      "Time": "2025-05-18T09:30:03.392Z"
    },
    "deletionGracePeriodSeconds": 1,
    "deletionTimestamp": {
      "Time": "2025-05-18T09:30:03.392Z"
    },
    "finalizers": [
      "text"
    ],
    "generateName": "text",
    "generation": 1,
    "labels": {
      "ANY_ADDITIONAL_PROPERTY": "text"
    },
    "managedFields": [],
    "name": "text",
    "namespace": "text",
    "ownerReferences": [],
    "resourceVersion": "text",
    "selfLink": "text",
    "uid": "text"
  },
  "spec": {
    "concurrencyPolicy": "text",
    "failedJobsHistoryLimit": 1,
    "schedule": "text",
    "startingDeadlineSeconds": 1,
    "successfulJobsHistoryLimit": 1,
    "suspend": true,
    "timezone": "text",
    "workflowMetadata": {
      "annotations": {
        "ANY_ADDITIONAL_PROPERTY": "text"
      },
      "clusterName": "text",
      "creationTimestamp": {
        "Time": "2025-05-18T09:30:03.392Z"
      },
      "deletionGracePeriodSeconds": 1,
      "deletionTimestamp": {
        "Time": "2025-05-18T09:30:03.392Z"
      },
      "finalizers": [
        "text"
      ],
      "generateName": "text",
      "generation": 1,
      "labels": {
        "ANY_ADDITIONAL_PROPERTY": "text"
      },
      "managedFields": [],
      "name": "text",
      "namespace": "text",
      "ownerReferences": [],
      "resourceVersion": "text",
      "selfLink": "text",
      "uid": "text"
    },
    "workflowSpec": {
      "activeDeadlineSeconds": 1,
      "affinity": {
        "nodeAffinity": {
          "preferredDuringSchedulingIgnoredDuringExecution": [],
          "requiredDuringSchedulingIgnoredDuringExecution": {
            "nodeSelectorTerms": []
          }
        },
        "podAffinity": {
          "preferredDuringSchedulingIgnoredDuringExecution": [],
          "requiredDuringSchedulingIgnoredDuringExecution": []
        },
        "podAntiAffinity": {
          "preferredDuringSchedulingIgnoredDuringExecution": [],
          "requiredDuringSchedulingIgnoredDuringExecution": []
        }
      },
      "archiveLogs": true,
      "arguments": {
        "artifacts": [],
        "parameters": []
      },
      "artifactGC": {
        "forceFinalizerRemoval": true,
        "podMetadata": {
          "annotations": {
            "ANY_ADDITIONAL_PROPERTY": "text"
          },
          "labels": {
            "ANY_ADDITIONAL_PROPERTY": "text"
          }
        },
        "podSpecPatch": "text",
        "serviceAccountName": "text",
        "strategy": "text"
      },
      "artifactRepositoryRef": {
        "configMap": "text",
        "key": "text"
      },
      "automountServiceAccountToken": true,
      "dnsConfig": {
        "nameservers": [
          "text"
        ],
        "options": [],
        "searches": [
          "text"
        ]
      },
      "dnsPolicy": "text",
      "entrypoint": "text",
      "executor": {
        "serviceAccountName": "text"
      },
      "hooks": {
        "ANY_ADDITIONAL_PROPERTY": {
          "arguments": {
            "artifacts": [],
            "parameters": []
          },
          "expression": "text",
          "template": "text",
          "templateRef": {
            "clusterScope": true,
            "name": "text",
            "template": "text"
          }
        }
      },
      "hostAliases": [],
      "hostNetwork": true,
      "imagePullSecrets": [],
      "metrics": {
        "prometheus": []
      },
      "nodeSelector": {
        "ANY_ADDITIONAL_PROPERTY": "text"
      },
      "onExit": "text",
      "parallelism": 1,
      "podDisruptionBudget": {
        "maxUnavailable": {
          "IntVal": 1,
          "StrVal": "text",
          "Type": 1
        },
        "minAvailable": {
          "IntVal": 1,
          "StrVal": "text",
          "Type": 1
        },
        "selector": {
          "matchExpressions": [],
          "matchLabels": {
            "ANY_ADDITIONAL_PROPERTY": "text"
          }
        }
      },
      "podGC": {
        "deleteDelayDuration": "text",
        "labelSelector": {
          "matchExpressions": [],
          "matchLabels": {
            "ANY_ADDITIONAL_PROPERTY": "text"
          }
        },
        "strategy": "text"
      },
      "podMetadata": {
        "annotations": {
          "ANY_ADDITIONAL_PROPERTY": "text"
        },
        "labels": {
          "ANY_ADDITIONAL_PROPERTY": "text"
        }
      },
      "podPriority": 1,
      "podPriorityClassName": "text",
      "podSpecPatch": "text",
      "priority": 1,
      "retryStrategy": {
        "affinity": {
          "nodeAntiAffinity": null
        },
        "backoff": {
          "duration": "text",
          "factor": {
            "IntVal": 1,
            "StrVal": "text",
            "Type": 1
          },
          "maxDuration": "text"
        },
        "expression": "text",
        "limit": {
          "IntVal": 1,
          "StrVal": "text",
          "Type": 1
        },
        "retryPolicy": "text"
      },
      "schedulerName": "text",
      "securityContext": {
        "fsGroup": 1,
        "fsGroupChangePolicy": "text",
        "runAsGroup": 1,
        "runAsNonRoot": true,
        "runAsUser": 1,
        "seLinuxOptions": {
          "level": "text",
          "role": "text",
          "type": "text",
          "user": "text"
        },
        "seccompProfile": {
          "localhostProfile": "text",
          "type": "text"
        },
        "supplementalGroups": [
          1
        ],
        "sysctls": [],
        "windowsOptions": {
          "gmsaCredentialSpec": "text",
          "gmsaCredentialSpecName": "text",
          "hostProcess": true,
          "runAsUserName": "text"
        }
      },
      "serviceAccountName": "text",
      "shutdown": "text",
      "suspend": true,
      "synchronization": {
        "mutex": {
          "name": "text",
          "namespace": "text"
        },
        "semaphore": {
          "configMapKeyRef": {
            "key": "text",
            "name": "text",
            "optional": true
          },
          "namespace": "text"
        }
      },
      "templateDefaults": {
        "activeDeadlineSeconds": {
          "IntVal": 1,
          "StrVal": "text",
          "Type": 1
        },
        "affinity": {
          "nodeAffinity": {
            "preferredDuringSchedulingIgnoredDuringExecution": [],
            "requiredDuringSchedulingIgnoredDuringExecution": {
              "nodeSelectorTerms": []
            }
          },
          "podAffinity": {
            "preferredDuringSchedulingIgnoredDuringExecution": [],
            "requiredDuringSchedulingIgnoredDuringExecution": []
          },
          "podAntiAffinity": {
            "preferredDuringSchedulingIgnoredDuringExecution": [],
            "requiredDuringSchedulingIgnoredDuringExecution": []
          }
        },
        "archiveLocation": {
          "archiveLogs": true,
          "artifactory": {
            "passwordSecret": {
              "key": "text",
              "name": "text",
              "optional": true
            },
            "url": "text",
            "usernameSecret": {
              "key": "text",
              "name": "text",
              "optional": true
            }
          },
          "azure": {
            "accountKeySecret": {
              "key": "text",
              "name": "text",
              "optional": true
            },
            "blob": "text",
            "container": "text",
            "endpoint": "text",
            "useSDKCreds": true
          },
          "gcs": {
            "bucket": "text",
            "key": "text",
            "serviceAccountKeySecret": {
              "key": "text",
              "name": "text",
              "optional": true
            }
          },
          "git": {
            "branch": "text",
            "depth": 1,
            "disableSubmodules": true,
            "fetch": [
              "text"
            ],
            "insecureIgnoreHostKey": true,
            "passwordSecret": {
              "key": "text",
              "name": "text",
              "optional": true
            },
            "repo": "text",
            "revision": "text",
            "singleBranch": true,
            "sshPrivateKeySecret": {
              "key": "text",
              "name": "text",
              "optional": true
            },
            "usernameSecret": {
              "key": "text",
              "name": "text",
              "optional": true
            }
          },
          "hdfs": {
            "addresses": [
              "text"
            ],
            "force": true,
            "hdfsUser": "text",
            "krbCCacheSecret": {
              "key": "text",
              "name": "text",
              "optional": true
            },
            "krbConfigConfigMap": {
              "key": "text",
              "name": "text",
              "optional": true
            },
            "krbKeytabSecret": {
              "key": "text",
              "name": "text",
              "optional": true
            },
            "krbRealm": "text",
            "krbServicePrincipalName": "text",
            "krbUsername": "text",
            "path": "text"
          },
          "http": {
            "auth": {
              "basicAuth": {
                "passwordSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "usernameSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                }
              },
              "clientCert": {
                "clientCertSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "clientKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                }
              },
              "oauth2": {
                "clientIDSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "clientSecretSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "endpointParams": [],
                "scopes": [
                  "text"
                ],
                "tokenURLSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                }
              }
            },
            "headers": [],
            "url": "text"
          },
          "oss": {
            "accessKeySecret": {
              "key": "text",
              "name": "text",
              "optional": true
            },
            "bucket": "text",
            "createBucketIfNotPresent": true,
            "endpoint": "text",
            "key": "text",
            "lifecycleRule": {
              "markDeletionAfterDays": 1,
              "markInfrequentAccessAfterDays": 1
            },
            "secretKeySecret": {
              "key": "text",
              "name": "text",
              "optional": true
            },
            "securityToken": "text",
            "useSDKCreds": true
          },
          "raw": {
            "data": "text"
          },
          "s3": {
            "accessKeySecret": {
              "key": "text",
              "name": "text",
              "optional": true
            },
            "bucket": "text",
            "caSecret": {
              "key": "text",
              "name": "text",
              "optional": true
            },
            "createBucketIfNotPresent": {
              "objectLocking": true
            },
            "encryptionOptions": {
              "enableEncryption": true,
              "kmsEncryptionContext": "text",
              "kmsKeyId": "text",
              "serverSideCustomerKeySecret": {
                "key": "text",
                "name": "text",
                "optional": true
              }
            },
            "endpoint": "text",
            "insecure": true,
            "key": "text",
            "region": "text",
            "roleARN": "text",
            "secretKeySecret": {
              "key": "text",
              "name": "text",
              "optional": true
            },
            "useSDKCreds": true
          }
        },
        "automountServiceAccountToken": true,
        "container": {
          "args": [
            "text"
          ],
          "command": [
            "text"
          ],
          "env": [],
          "envFrom": [],
          "image": "text",
          "imagePullPolicy": "text",
          "lifecycle": {
            "postStart": {
              "exec": {
                "command": [
                  "text"
                ]
              },
              "httpGet": {
                "host": "text",
                "httpHeaders": [],
                "path": "text",
                "port": {
                  "IntVal": 1,
                  "StrVal": "text",
                  "Type": 1
                },
                "scheme": "text"
              },
              "tcpSocket": {
                "host": "text",
                "port": {
                  "IntVal": 1,
                  "StrVal": "text",
                  "Type": 1
                }
              }
            },
            "preStop": {
              "exec": {
                "command": [
                  "text"
                ]
              },
              "httpGet": {
                "host": "text",
                "httpHeaders": [],
                "path": "text",
                "port": {
                  "IntVal": 1,
                  "StrVal": "text",
                  "Type": 1
                },
                "scheme": "text"
              },
              "tcpSocket": {
                "host": "text",
                "port": {
                  "IntVal": 1,
                  "StrVal": "text",
                  "Type": 1
                }
              }
            }
          },
          "livenessProbe": {
            "exec": {
              "command": [
                "text"
              ]
            },
            "failureThreshold": 1,
            "grpc": {
              "port": 1,
              "service": "text"
            },
            "httpGet": {
              "host": "text",
              "httpHeaders": [],
              "path": "text",
              "port": {
                "IntVal": 1,
                "StrVal": "text",
                "Type": 1
              },
              "scheme": "text"
            },
            "initialDelaySeconds": 1,
            "periodSeconds": 1,
            "successThreshold": 1,
            "tcpSocket": {
              "host": "text",
              "port": {
                "IntVal": 1,
                "StrVal": "text",
                "Type": 1
              }
            },
            "terminationGracePeriodSeconds": 1,
            "timeoutSeconds": 1
          },
          "name": "text",
          "ports": [],
          "readinessProbe": {
            "exec": {
              "command": [
                "text"
              ]
            },
            "failureThreshold": 1,
            "grpc": {
              "port": 1,
              "service": "text"
            },
            "httpGet": {
              "host": "text",
              "httpHeaders": [],
              "path": "text",
              "port": {
                "IntVal": 1,
                "StrVal": "text",
                "Type": 1
              },
              "scheme": "text"
            },
            "initialDelaySeconds": 1,
            "periodSeconds": 1,
            "successThreshold": 1,
            "tcpSocket": {
              "host": "text",
              "port": {
                "IntVal": 1,
                "StrVal": "text",
                "Type": 1
              }
            },
            "terminationGracePeriodSeconds": 1,
            "timeoutSeconds": 1
          },
          "resources": {
            "limits": {
              "ANY_ADDITIONAL_PROPERTY": {
                "Format": "text",
                "d": {
                  "Dec": {
                    "scale": 1,
                    "unscaled": {
                      "abs": [
                        1
                      ],
                      "neg": true
                    }
                  }
                },
                "i": {
                  "scale": 1,
                  "value": 1
                },
                "s": "text"
              }
            },
            "requests": {
              "ANY_ADDITIONAL_PROPERTY": {
                "Format": "text",
                "d": {
                  "Dec": {
                    "scale": 1,
                    "unscaled": {
                      "abs": [
                        1
                      ],
                      "neg": true
                    }
                  }
                },
                "i": {
                  "scale": 1,
                  "value": 1
                },
                "s": "text"
              }
            }
          },
          "securityContext": {
            "allowPrivilegeEscalation": true,
            "capabilities": {
              "add": [
                "text"
              ],
              "drop": [
                "text"
              ]
            },
            "privileged": true,
            "procMount": "text",
            "readOnlyRootFilesystem": true,
            "runAsGroup": 1,
            "runAsNonRoot": true,
            "runAsUser": 1,
            "seLinuxOptions": {
              "level": "text",
              "role": "text",
              "type": "text",
              "user": "text"
            },
            "seccompProfile": {
              "localhostProfile": "text",
              "type": "text"
            },
            "windowsOptions": {
              "gmsaCredentialSpec": "text",
              "gmsaCredentialSpecName": "text",
              "hostProcess": true,
              "runAsUserName": "text"
            }
          },
          "startupProbe": {
            "exec": {
              "command": [
                "text"
              ]
            },
            "failureThreshold": 1,
            "grpc": {
              "port": 1,
              "service": "text"
            },
            "httpGet": {
              "host": "text",
              "httpHeaders": [],
              "path": "text",
              "port": {
                "IntVal": 1,
                "StrVal": "text",
                "Type": 1
              },
              "scheme": "text"
            },
            "initialDelaySeconds": 1,
            "periodSeconds": 1,
            "successThreshold": 1,
            "tcpSocket": {
              "host": "text",
              "port": {
                "IntVal": 1,
                "StrVal": "text",
                "Type": 1
              }
            },
            "terminationGracePeriodSeconds": 1,
            "timeoutSeconds": 1
          },
          "stdin": true,
          "stdinOnce": true,
          "terminationMessagePath": "text",
          "terminationMessagePolicy": "text",
          "tty": true,
          "volumeDevices": [],
          "volumeMounts": [],
          "workingDir": "text"
        },
        "containerSet": {
          "containers": [],
          "retryStrategy": {
            "duration": "text",
            "retries": {
              "IntVal": 1,
              "StrVal": "text",
              "Type": 1
            }
          },
          "volumeMounts": []
        },
        "daemon": true,
        "dag": {
          "failFast": true,
          "target": "text",
          "tasks": []
        },
        "data": {
          "source": {
            "artifactPaths": {
              "archive": {
                "none": null,
                "tar": {
                  "compressionLevel": 1
                },
                "zip": null
              },
              "archiveLogs": true,
              "artifactGC": {
                "podMetadata": {
                  "annotations": {
                    "ANY_ADDITIONAL_PROPERTY": "text"
                  },
                  "labels": {
                    "ANY_ADDITIONAL_PROPERTY": "text"
                  }
                },
                "serviceAccountName": "text",
                "strategy": "text"
              },
              "artifactory": {
                "passwordSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "url": "text",
                "usernameSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                }
              },
              "azure": {
                "accountKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "blob": "text",
                "container": "text",
                "endpoint": "text",
                "useSDKCreds": true
              },
              "deleted": true,
              "from": "text",
              "fromExpression": "text",
              "gcs": {
                "bucket": "text",
                "key": "text",
                "serviceAccountKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                }
              },
              "git": {
                "branch": "text",
                "depth": 1,
                "disableSubmodules": true,
                "fetch": [
                  "text"
                ],
                "insecureIgnoreHostKey": true,
                "passwordSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "repo": "text",
                "revision": "text",
                "singleBranch": true,
                "sshPrivateKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "usernameSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                }
              },
              "globalName": "text",
              "hdfs": {
                "addresses": [
                  "text"
                ],
                "force": true,
                "hdfsUser": "text",
                "krbCCacheSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "krbConfigConfigMap": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "krbKeytabSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "krbRealm": "text",
                "krbServicePrincipalName": "text",
                "krbUsername": "text",
                "path": "text"
              },
              "http": {
                "auth": {
                  "basicAuth": {
                    "passwordSecret": {
                      "key": "text",
                      "name": "text",
                      "optional": true
                    },
                    "usernameSecret": {
                      "key": "text",
                      "name": "text",
                      "optional": true
                    }
                  },
                  "clientCert": {
                    "clientCertSecret": {
                      "key": "text",
                      "name": "text",
                      "optional": true
                    },
                    "clientKeySecret": {
                      "key": "text",
                      "name": "text",
                      "optional": true
                    }
                  },
                  "oauth2": {
                    "clientIDSecret": {
                      "key": "text",
                      "name": "text",
                      "optional": true
                    },
                    "clientSecretSecret": {
                      "key": "text",
                      "name": "text",
                      "optional": true
                    },
                    "endpointParams": [],
                    "scopes": [
                      "text"
                    ],
                    "tokenURLSecret": {
                      "key": "text",
                      "name": "text",
                      "optional": true
                    }
                  }
                },
                "headers": [],
                "url": "text"
              },
              "mode": 1,
              "name": "text",
              "optional": true,
              "oss": {
                "accessKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "bucket": "text",
                "createBucketIfNotPresent": true,
                "endpoint": "text",
                "key": "text",
                "lifecycleRule": {
                  "markDeletionAfterDays": 1,
                  "markInfrequentAccessAfterDays": 1
                },
                "secretKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "securityToken": "text",
                "useSDKCreds": true
              },
              "path": "text",
              "raw": {
                "data": "text"
              },
              "recurseMode": true,
              "s3": {
                "accessKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "bucket": "text",
                "caSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "createBucketIfNotPresent": {
                  "objectLocking": true
                },
                "encryptionOptions": {
                  "enableEncryption": true,
                  "kmsEncryptionContext": "text",
                  "kmsKeyId": "text",
                  "serverSideCustomerKeySecret": {
                    "key": "text",
                    "name": "text",
                    "optional": true
                  }
                },
                "endpoint": "text",
                "insecure": true,
                "key": "text",
                "region": "text",
                "roleARN": "text",
                "secretKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "useSDKCreds": true
              },
              "subPath": "text"
            }
          },
          "transformation": []
        },
        "executor": {
          "serviceAccountName": "text"
        },
        "failFast": true,
        "hostAliases": [],
        "http": {
          "body": "text",
          "bodyFrom": {
            "bytes": "text"
          },
          "headers": [],
          "insecureSkipVerify": true,
          "method": "text",
          "successCondition": "text",
          "timeoutSeconds": 1,
          "url": "text"
        },
        "initContainers": [],
        "inputs": {
          "artifacts": [],
          "parameters": []
        },
        "memoize": {
          "cache": {
            "configMap": {
              "key": "text",
              "name": "text",
              "optional": true
            }
          },
          "key": "text",
          "maxAge": "text"
        },
        "metadata": {
          "annotations": {
            "ANY_ADDITIONAL_PROPERTY": "text"
          },
          "labels": {
            "ANY_ADDITIONAL_PROPERTY": "text"
          }
        },
        "metrics": {
          "prometheus": []
        },
        "name": "text",
        "nodeSelector": {
          "ANY_ADDITIONAL_PROPERTY": "text"
        },
        "outputs": {
          "artifacts": [],
          "exitCode": "text",
          "parameters": [],
          "result": "text"
        },
        "parallelism": 1,
        "plugin": null,
        "podSpecPatch": "text",
        "priority": 1,
        "priorityClassName": "text",
        "resource": {
          "action": "text",
          "failureCondition": "text",
          "flags": [
            "text"
          ],
          "manifest": "text",
          "manifestFrom": {
            "artifact": {
              "archive": {
                "none": null,
                "tar": {
                  "compressionLevel": 1
                },
                "zip": null
              },
              "archiveLogs": true,
              "artifactGC": {
                "podMetadata": {
                  "annotations": {
                    "ANY_ADDITIONAL_PROPERTY": "text"
                  },
                  "labels": {
                    "ANY_ADDITIONAL_PROPERTY": "text"
                  }
                },
                "serviceAccountName": "text",
                "strategy": "text"
              },
              "artifactory": {
                "passwordSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "url": "text",
                "usernameSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                }
              },
              "azure": {
                "accountKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "blob": "text",
                "container": "text",
                "endpoint": "text",
                "useSDKCreds": true
              },
              "deleted": true,
              "from": "text",
              "fromExpression": "text",
              "gcs": {
                "bucket": "text",
                "key": "text",
                "serviceAccountKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                }
              },
              "git": {
                "branch": "text",
                "depth": 1,
                "disableSubmodules": true,
                "fetch": [
                  "text"
                ],
                "insecureIgnoreHostKey": true,
                "passwordSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "repo": "text",
                "revision": "text",
                "singleBranch": true,
                "sshPrivateKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "usernameSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                }
              },
              "globalName": "text",
              "hdfs": {
                "addresses": [
                  "text"
                ],
                "force": true,
                "hdfsUser": "text",
                "krbCCacheSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "krbConfigConfigMap": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "krbKeytabSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "krbRealm": "text",
                "krbServicePrincipalName": "text",
                "krbUsername": "text",
                "path": "text"
              },
              "http": {
                "auth": {
                  "basicAuth": {
                    "passwordSecret": {
                      "key": "text",
                      "name": "text",
                      "optional": true
                    },
                    "usernameSecret": {
                      "key": "text",
                      "name": "text",
                      "optional": true
                    }
                  },
                  "clientCert": {
                    "clientCertSecret": {
                      "key": "text",
                      "name": "text",
                      "optional": true
                    },
                    "clientKeySecret": {
                      "key": "text",
                      "name": "text",
                      "optional": true
                    }
                  },
                  "oauth2": {
                    "clientIDSecret": {
                      "key": "text",
                      "name": "text",
                      "optional": true
                    },
                    "clientSecretSecret": {
                      "key": "text",
                      "name": "text",
                      "optional": true
                    },
                    "endpointParams": [],
                    "scopes": [
                      "text"
                    ],
                    "tokenURLSecret": {
                      "key": "text",
                      "name": "text",
                      "optional": true
                    }
                  }
                },
                "headers": [],
                "url": "text"
              },
              "mode": 1,
              "name": "text",
              "optional": true,
              "oss": {
                "accessKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "bucket": "text",
                "createBucketIfNotPresent": true,
                "endpoint": "text",
                "key": "text",
                "lifecycleRule": {
                  "markDeletionAfterDays": 1,
                  "markInfrequentAccessAfterDays": 1
                },
                "secretKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "securityToken": "text",
                "useSDKCreds": true
              },
              "path": "text",
              "raw": {
                "data": "text"
              },
              "recurseMode": true,
              "s3": {
                "accessKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "bucket": "text",
                "caSecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "createBucketIfNotPresent": {
                  "objectLocking": true
                },
                "encryptionOptions": {
                  "enableEncryption": true,
                  "kmsEncryptionContext": "text",
                  "kmsKeyId": "text",
                  "serverSideCustomerKeySecret": {
                    "key": "text",
                    "name": "text",
                    "optional": true
                  }
                },
                "endpoint": "text",
                "insecure": true,
                "key": "text",
                "region": "text",
                "roleARN": "text",
                "secretKeySecret": {
                  "key": "text",
                  "name": "text",
                  "optional": true
                },
                "useSDKCreds": true
              },
              "subPath": "text"
            }
          },
          "mergeStrategy": "text",
          "setOwnerReference": true,
          "successCondition": "text"
        },
        "retryStrategy": {
          "affinity": {
            "nodeAntiAffinity": null
          },
          "backoff": {
            "duration": "text",
            "factor": {
              "IntVal": 1,
              "StrVal": "text",
              "Type": 1
            },
            "maxDuration": "text"
          },
          "expression": "text",
          "limit": {
            "IntVal": 1,
            "StrVal": "text",
            "Type": 1
          },
          "retryPolicy": "text"
        },
        "schedulerName": "text",
        "script": {
          "args": [
            "text"
          ],
          "command": [
            "text"
          ],
          "env": [],
          "envFrom": [],
          "image": "text",
          "imagePullPolicy": "text",
          "lifecycle": {
            "postStart": {
              "exec": {
                "command": [
                  "text"
                ]
              },
              "httpGet": {
                "host": "text",
                "httpHeaders": [],
                "path": "text",
                "port": {
                  "IntVal": 1,
                  "StrVal": "text",
                  "Type": 1
                },
                "scheme": "text"
              },
              "tcpSocket": {
                "host": "text",
                "port": {
                  "IntVal": 1,
                  "StrVal": "text",
                  "Type": 1
                }
              }
            },
            "preStop": {
              "exec": {
                "command": [
                  "text"
                ]
              },
              "httpGet": {
                "host": "text",
                "httpHeaders": [],
                "path": "text",
                "port": {
                  "IntVal": 1,
                  "StrVal": "text",
                  "Type": 1
                },
                "scheme": "text"
              },
              "tcpSocket": {
                "host": "text",
                "port": {
                  "IntVal": 1,
                  "StrVal": "text",
                  "Type": 1
                }
              }
            }
          },
          "livenessProbe": {
            "exec": {
              "command": [
                "text"
              ]
            },
            "failureThreshold": 1,
            "grpc": {
              "port": 1,
              "service": "text"
            },
            "httpGet": {
              "host": "text",
              "httpHeaders": [],
              "path": "text",
              "port": {
                "IntVal": 1,
                "StrVal": "text",
                "Type": 1
              },
              "scheme": "text"
            },
            "initialDelaySeconds": 1,
            "periodSeconds": 1,
            "successThreshold": 1,
            "tcpSocket": {
              "host": "text",
              "port": {
                "IntVal": 1,
                "StrVal": "text",
                "Type": 1
              }
            },
            "terminationGracePeriodSeconds": 1,
            "timeoutSeconds": 1
          },
          "name": "text",
          "ports": [],
          "readinessProbe": {
            "exec": {
              "command": [
                "text"
              ]
            },
            "failureThreshold": 1,
            "grpc": {
              "port": 1,
              "service": "text"
            },
            "httpGet": {
              "host": "text",
              "httpHeaders": [],
              "path": "text",
              "port": {
                "IntVal": 1,
                "StrVal": "text",
                "Type": 1
              },
              "scheme": "text"
            },
            "initialDelaySeconds": 1,
            "periodSeconds": 1,
            "successThreshold": 1,
            "tcpSocket": {
              "host": "text",
              "port": {
                "IntVal": 1,
                "StrVal": "text",
                "Type": 1
              }
            },
            "terminationGracePeriodSeconds": 1,
            "timeoutSeconds": 1
          },
          "resources": {
            "limits": {
              "ANY_ADDITIONAL_PROPERTY": {
                "Format": "text",
                "d": {
                  "Dec": {
                    "scale": 1,
                    "unscaled": {
                      "abs": [
                        1
                      ],
                      "neg": true
                    }
                  }
                },
                "i": {
                  "scale": 1,
                  "value": 1
                },
                "s": "text"
              }
            },
            "requests": {
              "ANY_ADDITIONAL_PROPERTY": {
                "Format": "text",
                "d": {
                  "Dec": {
                    "scale": 1,
                    "unscaled": {
                      "abs": [
                        1
                      ],
                      "neg": true
                    }
                  }
                },
                "i": {
                  "scale": 1,
                  "value": 1
                },
                "s": "text"
              }
            }
          },
          "securityContext": {
            "allowPrivilegeEscalation": true,
            "capabilities": {
              "add": [
                "text"
              ],
              "drop": [
                "text"
              ]
            },
            "privileged": true,
            "procMount": "text",
            "readOnlyRootFilesystem": true,
            "runAsGroup": 1,
            "runAsNonRoot": true,
            "runAsUser": 1,
            "seLinuxOptions": {
              "level": "text",
              "role": "text",
              "type": "text",
              "user": "text"
            },
            "seccompProfile": {
              "localhostProfile": "text",
              "type": "text"
            },
            "windowsOptions": {
              "gmsaCredentialSpec": "text",
              "gmsaCredentialSpecName": "text",
              "hostProcess": true,
              "runAsUserName": "text"
            }
          },
          "source": "text",
          "startupProbe": {
            "exec": {
              "command": [
                "text"
              ]
            },
            "failureThreshold": 1,
            "grpc": {
              "port": 1,
              "service": "text"
            },
            "httpGet": {
              "host": "text",
              "httpHeaders": [],
              "path": "text",
              "port": {
                "IntVal": 1,
                "StrVal": "text",
                "Type": 1
              },
              "scheme": "text"
            },
            "initialDelaySeconds": 1,
            "periodSeconds": 1,
            "successThreshold": 1,
            "tcpSocket": {
              "host": "text",
              "port": {
                "IntVal": 1,
                "StrVal": "text",
                "Type": 1
              }
            },
            "terminationGracePeriodSeconds": 1,
            "timeoutSeconds": 1
          },
          "stdin": true,
          "stdinOnce": true,
          "terminationMessagePath": "text",
          "terminationMessagePolicy": "text",
          "tty": true,
          "volumeDevices": [],
          "volumeMounts": [],
          "workingDir": "text"
        },
        "securityContext": {
          "fsGroup": 1,
          "fsGroupChangePolicy": "text",
          "runAsGroup": 1,
          "runAsNonRoot": true,
          "runAsUser": 1,
          "seLinuxOptions": {
            "level": "text",
            "role": "text",
            "type": "text",
            "user": "text"
          },
          "seccompProfile": {
            "localhostProfile": "text",
            "type": "text"
          },
          "supplementalGroups": [
            1
          ],
          "sysctls": [],
          "windowsOptions": {
            "gmsaCredentialSpec": "text",
            "gmsaCredentialSpecName": "text",
            "hostProcess": true,
            "runAsUserName": "text"
          }
        },
        "serviceAccountName": "text",
        "sidecars": [],
        "steps": [],
        "suspend": {
          "duration": "text"
        },
        "synchronization": {
          "mutex": {
            "name": "text",
            "namespace": "text"
          },
          "semaphore": {
            "configMapKeyRef": {
              "key": "text",
              "name": "text",
              "optional": true
            },
            "namespace": "text"
          }
        },
        "timeout": "text",
        "tolerations": [],
        "volumes": []
      },
      "templates": [],
      "tolerations": [],
      "ttlStrategy": {
        "secondsAfterCompletion": 1,
        "secondsAfterFailure": 1,
        "secondsAfterSuccess": 1
      },
      "volumeClaimGC": {
        "strategy": "text"
      },
      "volumeClaimTemplates": [],
      "volumes": [],
      "workflowMetadata": {
        "annotations": {
          "ANY_ADDITIONAL_PROPERTY": "text"
        },
        "labels": {
          "ANY_ADDITIONAL_PROPERTY": "text"
        },
        "labelsFrom": {
          "ANY_ADDITIONAL_PROPERTY": {
            "expression": "text"
          }
        }
      },
      "workflowTemplateRef": {
        "clusterScope": true,
        "name": "text"
      }
    }
  },
  "status": {
    "active": [],
    "conditions": [],
    "lastScheduledTime": {
      "Time": "2025-05-18T09:30:03.392Z"
    }
  }
}
200

OK

No content