{
  "description": "TestWorkflowTemplate is the Schema for the workflows API",
  "properties": {
    "apiVersion": {
      "description": "APIVersion defines the versioned schema of this representation of an object.\nServers should convert recognized schemas to the latest internal value, and\nmay reject unrecognized values.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
      "type": [
        "string",
        "null"
      ]
    },
    "description": {
      "description": "TestWorkflowTemplate readable description",
      "type": [
        "string",
        "null"
      ]
    },
    "kind": {
      "description": "Kind is a string value representing the REST resource this object represents.\nServers may infer this from the endpoint the client submits requests to.\nCannot be updated.\nIn CamelCase.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
      "type": [
        "string",
        "null"
      ]
    },
    "metadata": {
      "type": [
        "object",
        "null"
      ]
    },
    "spec": {
      "additionalProperties": false,
      "description": "TestWorkflowTemplate specification",
      "properties": {
        "after": {
          "description": "steps to run at the end of the workflow",
          "items": {
            "additionalProperties": false,
            "properties": {
              "artifacts": {
                "additionalProperties": false,
                "description": "scrape artifacts from the volumes",
                "properties": {
                  "compress": {
                    "additionalProperties": false,
                    "description": "compression options for the artifacts",
                    "properties": {
                      "name": {
                        "description": "artifact name",
                        "minLength": 1,
                        "type": "string"
                      }
                    },
                    "required": [
                      "name"
                    ],
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "paths": {
                    "description": "paths to fetch from the container",
                    "items": {
                      "type": "string"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "workingDir": {
                    "description": "working directory to override, so it will be used as a base dir",
                    "type": [
                      "string",
                      "null"
                    ]
                  }
                },
                "type": [
                  "object",
                  "null"
                ]
              },
              "condition": {
                "description": "expression to declare under which conditions the step should be run\ndefaults to: \"passed\", except artifacts where it defaults to \"always\"",
                "type": [
                  "string",
                  "null"
                ]
              },
              "container": {
                "additionalProperties": false,
                "description": "defaults for the containers in this step",
                "properties": {
                  "args": {
                    "description": "override default command in the image (empty string to default CMD of the image)",
                    "items": {
                      "type": "string"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "command": {
                    "description": "override default command in the image (empty string to default ENTRYPOINT of the image)",
                    "items": {
                      "type": "string"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "env": {
                    "description": "environment variables to append to the container",
                    "items": {
                      "additionalProperties": false,
                      "description": "EnvVar represents an environment variable present in a Container.",
                      "properties": {
                        "name": {
                          "description": "Name of the environment variable. Must be a C_IDENTIFIER.",
                          "type": "string"
                        },
                        "value": {
                          "description": "Variable references $(VAR_NAME) are expanded\nusing the previously defined environment variables in the container and\nany service environment variables. If a variable cannot be resolved,\nthe reference in the input string will be unchanged. Double $$ are reduced\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e.\n\"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\".\nEscaped references will never be expanded, regardless of whether the variable\nexists or not.\nDefaults to \"\".",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "valueFrom": {
                          "additionalProperties": false,
                          "description": "Source for the environment variable's value. Cannot be used if value is not empty.",
                          "properties": {
                            "configMapKeyRef": {
                              "additionalProperties": false,
                              "properties": {
                                "key": {
                                  "type": "string"
                                },
                                "name": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "optional": {
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                }
                              },
                              "required": [
                                "key"
                              ],
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-map-type": "atomic"
                            },
                            "fieldRef": {
                              "additionalProperties": false,
                              "properties": {
                                "apiVersion": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "fieldPath": {
                                  "type": "string"
                                }
                              },
                              "required": [
                                "fieldPath"
                              ],
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-map-type": "atomic"
                            },
                            "resourceFieldRef": {
                              "additionalProperties": false,
                              "properties": {
                                "containerName": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "divisor": {
                                  "oneOf": [
                                    {
                                      "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                      "type": "string"
                                    },
                                    {
                                      "type": "integer"
                                    },
                                    {
                                      "type": "null"
                                    }
                                  ],
                                  "x-kubernetes-int-or-string": true
                                },
                                "resource": {
                                  "type": "string"
                                }
                              },
                              "required": [
                                "resource"
                              ],
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-map-type": "atomic"
                            },
                            "secretKeyRef": {
                              "additionalProperties": false,
                              "properties": {
                                "key": {
                                  "type": "string"
                                },
                                "name": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "optional": {
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                }
                              },
                              "required": [
                                "key"
                              ],
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-map-type": "atomic"
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ]
                        }
                      },
                      "required": [
                        "name"
                      ],
                      "type": "object"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "envFrom": {
                    "description": "external environment variables to append to the container",
                    "items": {
                      "additionalProperties": false,
                      "description": "EnvFromSource represents the source of a set of ConfigMaps",
                      "properties": {
                        "configMapRef": {
                          "additionalProperties": false,
                          "description": "The ConfigMap to select from",
                          "properties": {
                            "name": {
                              "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "optional": {
                              "description": "Specify whether the ConfigMap must be defined",
                              "type": [
                                "boolean",
                                "null"
                              ]
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ],
                          "x-kubernetes-map-type": "atomic"
                        },
                        "prefix": {
                          "description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "secretRef": {
                          "additionalProperties": false,
                          "description": "The Secret to select from",
                          "properties": {
                            "name": {
                              "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "optional": {
                              "description": "Specify whether the Secret must be defined",
                              "type": [
                                "boolean",
                                "null"
                              ]
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ],
                          "x-kubernetes-map-type": "atomic"
                        }
                      },
                      "type": "object"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "image": {
                    "description": "image to be used for the container",
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "imagePullPolicy": {
                    "description": "pulling policy for the image",
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "resources": {
                    "additionalProperties": false,
                    "description": "expected resources for the container",
                    "properties": {
                      "limits": {
                        "additionalProperties": {
                          "oneOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "integer"
                            }
                          ],
                          "x-kubernetes-int-or-string": true
                        },
                        "description": "resource limits for the container",
                        "type": [
                          "object",
                          "null"
                        ]
                      },
                      "requests": {
                        "additionalProperties": {
                          "oneOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "integer"
                            }
                          ],
                          "x-kubernetes-int-or-string": true
                        },
                        "description": "resource requests for the container",
                        "type": [
                          "object",
                          "null"
                        ]
                      }
                    },
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "securityContext": {
                    "additionalProperties": false,
                    "properties": {
                      "allowPrivilegeEscalation": {
                        "type": [
                          "boolean",
                          "null"
                        ]
                      },
                      "capabilities": {
                        "additionalProperties": false,
                        "properties": {
                          "add": {
                            "items": {
                              "type": "string"
                            },
                            "type": [
                              "array",
                              "null"
                            ]
                          },
                          "drop": {
                            "items": {
                              "type": "string"
                            },
                            "type": [
                              "array",
                              "null"
                            ]
                          }
                        },
                        "type": [
                          "object",
                          "null"
                        ]
                      },
                      "privileged": {
                        "type": [
                          "boolean",
                          "null"
                        ]
                      },
                      "procMount": {
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "readOnlyRootFilesystem": {
                        "type": [
                          "boolean",
                          "null"
                        ]
                      },
                      "runAsGroup": {
                        "format": "int64",
                        "type": [
                          "integer",
                          "null"
                        ]
                      },
                      "runAsNonRoot": {
                        "type": [
                          "boolean",
                          "null"
                        ]
                      },
                      "runAsUser": {
                        "format": "int64",
                        "type": [
                          "integer",
                          "null"
                        ]
                      },
                      "seLinuxOptions": {
                        "additionalProperties": false,
                        "properties": {
                          "level": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "role": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "type": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "user": {
                            "type": [
                              "string",
                              "null"
                            ]
                          }
                        },
                        "type": [
                          "object",
                          "null"
                        ]
                      },
                      "seccompProfile": {
                        "additionalProperties": false,
                        "properties": {
                          "localhostProfile": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "type": {
                            "type": "string"
                          }
                        },
                        "required": [
                          "type"
                        ],
                        "type": [
                          "object",
                          "null"
                        ]
                      },
                      "windowsOptions": {
                        "additionalProperties": false,
                        "properties": {
                          "gmsaCredentialSpec": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "gmsaCredentialSpecName": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "hostProcess": {
                            "type": [
                              "boolean",
                              "null"
                            ]
                          },
                          "runAsUserName": {
                            "type": [
                              "string",
                              "null"
                            ]
                          }
                        },
                        "type": [
                          "object",
                          "null"
                        ]
                      }
                    },
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "volumeMounts": {
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "mountPath": {
                          "type": "string"
                        },
                        "mountPropagation": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "name": {
                          "type": "string"
                        },
                        "readOnly": {
                          "type": [
                            "boolean",
                            "null"
                          ]
                        },
                        "subPath": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "subPathExpr": {
                          "type": [
                            "string",
                            "null"
                          ]
                        }
                      },
                      "required": [
                        "mountPath",
                        "name"
                      ],
                      "type": "object"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "workingDir": {
                    "description": "override default working directory in the image (empty string to default WORKDIR for the image)",
                    "type": [
                      "string",
                      "null"
                    ]
                  }
                },
                "type": [
                  "object",
                  "null"
                ]
              },
              "content": {
                "additionalProperties": false,
                "description": "content that should be fetched for this step",
                "properties": {
                  "files": {
                    "description": "files to load",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "content": {
                          "description": "plain-text content to put inside",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "contentFrom": {
                          "additionalProperties": false,
                          "description": "external source to use",
                          "properties": {
                            "configMapKeyRef": {
                              "additionalProperties": false,
                              "properties": {
                                "key": {
                                  "type": "string"
                                },
                                "name": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "optional": {
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                }
                              },
                              "required": [
                                "key"
                              ],
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-map-type": "atomic"
                            },
                            "fieldRef": {
                              "additionalProperties": false,
                              "properties": {
                                "apiVersion": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "fieldPath": {
                                  "type": "string"
                                }
                              },
                              "required": [
                                "fieldPath"
                              ],
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-map-type": "atomic"
                            },
                            "resourceFieldRef": {
                              "additionalProperties": false,
                              "properties": {
                                "containerName": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "divisor": {
                                  "oneOf": [
                                    {
                                      "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                      "type": "string"
                                    },
                                    {
                                      "type": "integer"
                                    },
                                    {
                                      "type": "null"
                                    }
                                  ],
                                  "x-kubernetes-int-or-string": true
                                },
                                "resource": {
                                  "type": "string"
                                }
                              },
                              "required": [
                                "resource"
                              ],
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-map-type": "atomic"
                            },
                            "secretKeyRef": {
                              "additionalProperties": false,
                              "properties": {
                                "key": {
                                  "type": "string"
                                },
                                "name": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "optional": {
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                }
                              },
                              "required": [
                                "key"
                              ],
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-map-type": "atomic"
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "mode": {
                          "description": "mode to use for the file",
                          "format": "int32",
                          "type": [
                            "integer",
                            "null"
                          ]
                        },
                        "path": {
                          "description": "path where the file should be accessible at",
                          "minLength": 1,
                          "type": "string"
                        }
                      },
                      "required": [
                        "path"
                      ],
                      "type": "object"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "git": {
                    "additionalProperties": false,
                    "description": "git repository details",
                    "properties": {
                      "authType": {
                        "description": "authorization type for the credentials",
                        "enum": [
                          "basic",
                          "header"
                        ],
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "mountPath": {
                        "description": "where to mount the fetched repository contents (defaults to \"repo\" directory in the data volume)",
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "paths": {
                        "description": "paths to fetch for the sparse checkout",
                        "items": {
                          "type": "string"
                        },
                        "type": [
                          "array",
                          "null"
                        ]
                      },
                      "revision": {
                        "description": "branch, commit or a tag name to fetch",
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "sshKey": {
                        "description": "plain text SSH private key to fetch with",
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "sshKeyFrom": {
                        "additionalProperties": false,
                        "description": "external SSH private key to fetch with",
                        "properties": {
                          "configMapKeyRef": {
                            "additionalProperties": false,
                            "properties": {
                              "key": {
                                "type": "string"
                              },
                              "name": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "optional": {
                                "type": [
                                  "boolean",
                                  "null"
                                ]
                              }
                            },
                            "required": [
                              "key"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          },
                          "fieldRef": {
                            "additionalProperties": false,
                            "properties": {
                              "apiVersion": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "fieldPath": {
                                "type": "string"
                              }
                            },
                            "required": [
                              "fieldPath"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          },
                          "resourceFieldRef": {
                            "additionalProperties": false,
                            "properties": {
                              "containerName": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "divisor": {
                                "oneOf": [
                                  {
                                    "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                    "type": "string"
                                  },
                                  {
                                    "type": "integer"
                                  },
                                  {
                                    "type": "null"
                                  }
                                ],
                                "x-kubernetes-int-or-string": true
                              },
                              "resource": {
                                "type": "string"
                              }
                            },
                            "required": [
                              "resource"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          },
                          "secretKeyRef": {
                            "additionalProperties": false,
                            "properties": {
                              "key": {
                                "type": "string"
                              },
                              "name": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "optional": {
                                "type": [
                                  "boolean",
                                  "null"
                                ]
                              }
                            },
                            "required": [
                              "key"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          }
                        },
                        "type": [
                          "object",
                          "null"
                        ]
                      },
                      "token": {
                        "description": "plain text token to fetch with",
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "tokenFrom": {
                        "additionalProperties": false,
                        "description": "external token to fetch with",
                        "properties": {
                          "configMapKeyRef": {
                            "additionalProperties": false,
                            "properties": {
                              "key": {
                                "type": "string"
                              },
                              "name": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "optional": {
                                "type": [
                                  "boolean",
                                  "null"
                                ]
                              }
                            },
                            "required": [
                              "key"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          },
                          "fieldRef": {
                            "additionalProperties": false,
                            "properties": {
                              "apiVersion": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "fieldPath": {
                                "type": "string"
                              }
                            },
                            "required": [
                              "fieldPath"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          },
                          "resourceFieldRef": {
                            "additionalProperties": false,
                            "properties": {
                              "containerName": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "divisor": {
                                "oneOf": [
                                  {
                                    "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                    "type": "string"
                                  },
                                  {
                                    "type": "integer"
                                  },
                                  {
                                    "type": "null"
                                  }
                                ],
                                "x-kubernetes-int-or-string": true
                              },
                              "resource": {
                                "type": "string"
                              }
                            },
                            "required": [
                              "resource"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          },
                          "secretKeyRef": {
                            "additionalProperties": false,
                            "properties": {
                              "key": {
                                "type": "string"
                              },
                              "name": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "optional": {
                                "type": [
                                  "boolean",
                                  "null"
                                ]
                              }
                            },
                            "required": [
                              "key"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          }
                        },
                        "type": [
                          "object",
                          "null"
                        ]
                      },
                      "uri": {
                        "description": "uri for the Git repository",
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "username": {
                        "description": "plain text username to fetch with",
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "usernameFrom": {
                        "additionalProperties": false,
                        "description": "external username to fetch with",
                        "properties": {
                          "configMapKeyRef": {
                            "additionalProperties": false,
                            "properties": {
                              "key": {
                                "type": "string"
                              },
                              "name": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "optional": {
                                "type": [
                                  "boolean",
                                  "null"
                                ]
                              }
                            },
                            "required": [
                              "key"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          },
                          "fieldRef": {
                            "additionalProperties": false,
                            "properties": {
                              "apiVersion": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "fieldPath": {
                                "type": "string"
                              }
                            },
                            "required": [
                              "fieldPath"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          },
                          "resourceFieldRef": {
                            "additionalProperties": false,
                            "properties": {
                              "containerName": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "divisor": {
                                "oneOf": [
                                  {
                                    "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                    "type": "string"
                                  },
                                  {
                                    "type": "integer"
                                  },
                                  {
                                    "type": "null"
                                  }
                                ],
                                "x-kubernetes-int-or-string": true
                              },
                              "resource": {
                                "type": "string"
                              }
                            },
                            "required": [
                              "resource"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          },
                          "secretKeyRef": {
                            "additionalProperties": false,
                            "properties": {
                              "key": {
                                "type": "string"
                              },
                              "name": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "optional": {
                                "type": [
                                  "boolean",
                                  "null"
                                ]
                              }
                            },
                            "required": [
                              "key"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          }
                        },
                        "type": [
                          "object",
                          "null"
                        ]
                      }
                    },
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "tarball": {
                    "description": "tarballs to unpack",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "mount": {
                          "description": "should it mount a new volume there",
                          "type": [
                            "boolean",
                            "null"
                          ]
                        },
                        "path": {
                          "description": "path where the tarball should be extracted",
                          "type": "string"
                        },
                        "url": {
                          "description": "url for the tarball to extract",
                          "type": "string"
                        }
                      },
                      "required": [
                        "path",
                        "url"
                      ],
                      "type": "object"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  }
                },
                "type": [
                  "object",
                  "null"
                ]
              },
              "delay": {
                "description": "delay before the step",
                "pattern": "^((0|[1-9][0-9]*)h)?((0|[1-9][0-9]*)m)?((0|[1-9][0-9]*)s)?((0|[1-9][0-9]*)ms)?$",
                "type": [
                  "string",
                  "null"
                ]
              },
              "execute": {
                "additionalProperties": false,
                "description": "execute other Testkube resources",
                "properties": {
                  "async": {
                    "description": "only schedule the resources, don't watch the results (unless it is needed for parallelism)",
                    "type": [
                      "boolean",
                      "null"
                    ]
                  },
                  "parallelism": {
                    "description": "how many resources could be scheduled in parallel",
                    "format": "int32",
                    "type": [
                      "integer",
                      "null"
                    ]
                  },
                  "tests": {
                    "description": "tests to run",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "count": {
                          "description": "static number of sharded instances to spawn",
                          "oneOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "integer"
                            },
                            {
                              "type": "null"
                            }
                          ],
                          "x-kubernetes-int-or-string": true
                        },
                        "description": {
                          "description": "test execution description to display",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "executionRequest": {
                          "additionalProperties": false,
                          "description": "pass the execution request overrides",
                          "properties": {
                            "activeDeadlineSeconds": {
                              "description": "Optional duration in seconds the pod may be active on the node relative to\nStartTime before the system will actively try to mark it failed and kill associated containers.\nValue must be a positive integer.",
                              "format": "int64",
                              "type": [
                                "integer",
                                "null"
                              ]
                            },
                            "args": {
                              "description": "additional executor binary arguments",
                              "items": {
                                "type": "string"
                              },
                              "type": [
                                "array",
                                "null"
                              ]
                            },
                            "argsMode": {
                              "description": "usage mode for arguments",
                              "enum": [
                                "append",
                                "override",
                                "replace"
                              ],
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "artifactRequest": {
                              "additionalProperties": false,
                              "description": "artifact request body with test artifacts",
                              "properties": {
                                "dirs": {
                                  "description": "artifact directories for scraping",
                                  "items": {
                                    "type": "string"
                                  },
                                  "type": [
                                    "array",
                                    "null"
                                  ]
                                },
                                "masks": {
                                  "description": "regexp to filter scraped artifacts, single or comma separated",
                                  "items": {
                                    "type": "string"
                                  },
                                  "type": [
                                    "array",
                                    "null"
                                  ]
                                },
                                "omitFolderPerExecution": {
                                  "description": "don't use a separate folder for execution artifacts",
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                },
                                "sharedBetweenPods": {
                                  "description": "whether to share volume between pods",
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                },
                                "sidecarScraper": {
                                  "description": "run scraper as pod sidecar container",
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                },
                                "storageBucket": {
                                  "description": "artifact bucket storage",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "storageClassName": {
                                  "description": "artifact storage class name for container executor",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "useDefaultStorageClassName": {
                                  "description": "whether to use default storage class name",
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                },
                                "volumeMountPath": {
                                  "description": "artifact volume mount path for container executor",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                }
                              },
                              "type": [
                                "object",
                                "null"
                              ]
                            },
                            "command": {
                              "description": "executor binary command",
                              "items": {
                                "type": "string"
                              },
                              "type": [
                                "array",
                                "null"
                              ]
                            },
                            "cronJobTemplate": {
                              "description": "cron job template extensions",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "envConfigMaps": {
                              "description": "config map references",
                              "items": {
                                "additionalProperties": false,
                                "description": "Reference to env resource",
                                "properties": {
                                  "mapToVariables": {
                                    "description": "whether we shoud map to variables from resource",
                                    "type": [
                                      "boolean",
                                      "null"
                                    ]
                                  },
                                  "mount": {
                                    "description": "whether we shoud mount resource",
                                    "type": [
                                      "boolean",
                                      "null"
                                    ]
                                  },
                                  "mountPath": {
                                    "description": "where we shoud mount resource",
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  },
                                  "reference": {
                                    "additionalProperties": false,
                                    "description": "LocalObjectReference contains enough information to let you locate the\nreferenced object inside the same namespace.",
                                    "properties": {
                                      "name": {
                                        "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                                        "type": [
                                          "string",
                                          "null"
                                        ]
                                      }
                                    },
                                    "type": "object",
                                    "x-kubernetes-map-type": "atomic"
                                  }
                                },
                                "required": [
                                  "reference"
                                ],
                                "type": "object"
                              },
                              "type": [
                                "array",
                                "null"
                              ]
                            },
                            "envSecrets": {
                              "description": "secret references",
                              "items": {
                                "additionalProperties": false,
                                "description": "Reference to env resource",
                                "properties": {
                                  "mapToVariables": {
                                    "description": "whether we shoud map to variables from resource",
                                    "type": [
                                      "boolean",
                                      "null"
                                    ]
                                  },
                                  "mount": {
                                    "description": "whether we shoud mount resource",
                                    "type": [
                                      "boolean",
                                      "null"
                                    ]
                                  },
                                  "mountPath": {
                                    "description": "where we shoud mount resource",
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  },
                                  "reference": {
                                    "additionalProperties": false,
                                    "description": "LocalObjectReference contains enough information to let you locate the\nreferenced object inside the same namespace.",
                                    "properties": {
                                      "name": {
                                        "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                                        "type": [
                                          "string",
                                          "null"
                                        ]
                                      }
                                    },
                                    "type": "object",
                                    "x-kubernetes-map-type": "atomic"
                                  }
                                },
                                "required": [
                                  "reference"
                                ],
                                "type": "object"
                              },
                              "type": [
                                "array",
                                "null"
                              ]
                            },
                            "executePostRunScriptBeforeScraping": {
                              "description": "execute post run script before scraping (prebuilt executor only)",
                              "type": [
                                "boolean",
                                "null"
                              ]
                            },
                            "executionLabels": {
                              "additionalProperties": {
                                "type": "string"
                              },
                              "description": "test execution labels",
                              "type": [
                                "object",
                                "null"
                              ]
                            },
                            "executionNamespace": {
                              "description": "namespace for test execution (Pro edition only)",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "httpProxy": {
                              "description": "http proxy for executor containers",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "httpsProxy": {
                              "description": "https proxy for executor containers",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "image": {
                              "description": "container executor image",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "imagePullSecrets": {
                              "description": "container executor image pull secrets",
                              "items": {
                                "additionalProperties": false,
                                "description": "LocalObjectReference contains enough information to let you locate the\nreferenced object inside the same namespace.",
                                "properties": {
                                  "name": {
                                    "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  }
                                },
                                "type": "object",
                                "x-kubernetes-map-type": "atomic"
                              },
                              "type": [
                                "array",
                                "null"
                              ]
                            },
                            "isVariablesFileUploaded": {
                              "type": [
                                "boolean",
                                "null"
                              ]
                            },
                            "jobTemplate": {
                              "description": "job template extensions",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "name": {
                              "description": "test execution custom name",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "negativeTest": {
                              "description": "negative test will fail the execution if it is a success and it will succeed if it is a failure",
                              "type": [
                                "boolean",
                                "null"
                              ]
                            },
                            "postRunScript": {
                              "description": "script to run after test execution",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "preRunScript": {
                              "description": "script to run before test execution",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "scraperTemplate": {
                              "description": "scraper template extensions",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "sourceScripts": {
                              "description": "run scripts using source command (container executor only)",
                              "type": [
                                "boolean",
                                "null"
                              ]
                            },
                            "sync": {
                              "description": "whether to start execution sync or async",
                              "type": [
                                "boolean",
                                "null"
                              ]
                            },
                            "testSecretUUID": {
                              "description": "test secret uuid",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "variables": {
                              "additionalProperties": {
                                "additionalProperties": false,
                                "properties": {
                                  "name": {
                                    "description": "variable name",
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  },
                                  "type": {
                                    "description": "variable type",
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  },
                                  "value": {
                                    "description": "variable string value",
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  },
                                  "valueFrom": {
                                    "additionalProperties": false,
                                    "description": "or load it from var source",
                                    "properties": {
                                      "configMapKeyRef": {
                                        "additionalProperties": false,
                                        "properties": {
                                          "key": {
                                            "type": "string"
                                          },
                                          "name": {
                                            "type": [
                                              "string",
                                              "null"
                                            ]
                                          },
                                          "optional": {
                                            "type": [
                                              "boolean",
                                              "null"
                                            ]
                                          }
                                        },
                                        "required": [
                                          "key"
                                        ],
                                        "type": [
                                          "object",
                                          "null"
                                        ],
                                        "x-kubernetes-map-type": "atomic"
                                      },
                                      "fieldRef": {
                                        "additionalProperties": false,
                                        "properties": {
                                          "apiVersion": {
                                            "type": [
                                              "string",
                                              "null"
                                            ]
                                          },
                                          "fieldPath": {
                                            "type": "string"
                                          }
                                        },
                                        "required": [
                                          "fieldPath"
                                        ],
                                        "type": [
                                          "object",
                                          "null"
                                        ],
                                        "x-kubernetes-map-type": "atomic"
                                      },
                                      "resourceFieldRef": {
                                        "additionalProperties": false,
                                        "properties": {
                                          "containerName": {
                                            "type": [
                                              "string",
                                              "null"
                                            ]
                                          },
                                          "divisor": {
                                            "oneOf": [
                                              {
                                                "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                                "type": "string"
                                              },
                                              {
                                                "type": "integer"
                                              },
                                              {
                                                "type": "null"
                                              }
                                            ],
                                            "x-kubernetes-int-or-string": true
                                          },
                                          "resource": {
                                            "type": "string"
                                          }
                                        },
                                        "required": [
                                          "resource"
                                        ],
                                        "type": [
                                          "object",
                                          "null"
                                        ],
                                        "x-kubernetes-map-type": "atomic"
                                      },
                                      "secretKeyRef": {
                                        "additionalProperties": false,
                                        "properties": {
                                          "key": {
                                            "type": "string"
                                          },
                                          "name": {
                                            "type": [
                                              "string",
                                              "null"
                                            ]
                                          },
                                          "optional": {
                                            "type": [
                                              "boolean",
                                              "null"
                                            ]
                                          }
                                        },
                                        "required": [
                                          "key"
                                        ],
                                        "type": [
                                          "object",
                                          "null"
                                        ],
                                        "x-kubernetes-map-type": "atomic"
                                      }
                                    },
                                    "type": [
                                      "object",
                                      "null"
                                    ]
                                  }
                                },
                                "type": "object"
                              },
                              "type": [
                                "object",
                                "null"
                              ]
                            },
                            "variablesFile": {
                              "description": "variables file content - need to be in format for particular executor (e.g. postman envs file)",
                              "type": [
                                "string",
                                "null"
                              ]
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "matrix": {
                          "description": "matrix of parameters to spawn instances (static)",
                          "type": [
                            "object",
                            "null"
                          ],
                          "x-kubernetes-preserve-unknown-fields": true
                        },
                        "maxCount": {
                          "description": "dynamic number of sharded instances to spawn - it will be lowered if there is not enough sharded values",
                          "oneOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "integer"
                            },
                            {
                              "type": "null"
                            }
                          ],
                          "x-kubernetes-int-or-string": true
                        },
                        "name": {
                          "description": "test name to run",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "shards": {
                          "description": "parameters that should be distributed across sharded instances",
                          "type": [
                            "object",
                            "null"
                          ],
                          "x-kubernetes-preserve-unknown-fields": true
                        },
                        "tarball": {
                          "additionalProperties": {
                            "type": "object",
                            "x-kubernetes-preserve-unknown-fields": true
                          },
                          "description": "pack some data from the original file system to serve them down",
                          "type": [
                            "object",
                            "null"
                          ]
                        }
                      },
                      "type": "object"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "workflows": {
                    "description": "workflows to run",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "config": {
                          "additionalProperties": {
                            "oneOf": [
                              {
                                "type": "string"
                              },
                              {
                                "type": "integer"
                              }
                            ],
                            "x-kubernetes-int-or-string": true
                          },
                          "description": "configuration to pass for the workflow",
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "count": {
                          "description": "static number of sharded instances to spawn",
                          "oneOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "integer"
                            },
                            {
                              "type": "null"
                            }
                          ],
                          "x-kubernetes-int-or-string": true
                        },
                        "description": {
                          "description": "test workflow execution description to display",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "executionName": {
                          "description": "unique execution name to use",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "matrix": {
                          "description": "matrix of parameters to spawn instances (static)",
                          "type": [
                            "object",
                            "null"
                          ],
                          "x-kubernetes-preserve-unknown-fields": true
                        },
                        "maxCount": {
                          "description": "dynamic number of sharded instances to spawn - it will be lowered if there is not enough sharded values",
                          "oneOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "integer"
                            },
                            {
                              "type": "null"
                            }
                          ],
                          "x-kubernetes-int-or-string": true
                        },
                        "name": {
                          "description": "workflow name to run",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "shards": {
                          "description": "parameters that should be distributed across sharded instances",
                          "type": [
                            "object",
                            "null"
                          ],
                          "x-kubernetes-preserve-unknown-fields": true
                        },
                        "tarball": {
                          "additionalProperties": {
                            "type": "object",
                            "x-kubernetes-preserve-unknown-fields": true
                          },
                          "description": "pack some data from the original file system to serve them down",
                          "type": [
                            "object",
                            "null"
                          ]
                        }
                      },
                      "type": "object"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  }
                },
                "type": [
                  "object",
                  "null"
                ]
              },
              "name": {
                "description": "readable name for the step",
                "type": [
                  "string",
                  "null"
                ]
              },
              "negative": {
                "description": "is the step expected to fail",
                "type": [
                  "boolean",
                  "null"
                ]
              },
              "optional": {
                "description": "is the step optional, so its failure won't affect the TestWorkflow result",
                "type": [
                  "boolean",
                  "null"
                ]
              },
              "parallel": {
                "additionalProperties": false,
                "description": "instructions for parallel execution",
                "properties": {
                  "artifacts": {
                    "additionalProperties": false,
                    "description": "scrape artifacts from the volumes",
                    "properties": {
                      "compress": {
                        "additionalProperties": false,
                        "description": "compression options for the artifacts",
                        "properties": {
                          "name": {
                            "description": "artifact name",
                            "minLength": 1,
                            "type": "string"
                          }
                        },
                        "required": [
                          "name"
                        ],
                        "type": [
                          "object",
                          "null"
                        ]
                      },
                      "paths": {
                        "description": "paths to fetch from the container",
                        "items": {
                          "type": "string"
                        },
                        "type": [
                          "array",
                          "null"
                        ]
                      },
                      "workingDir": {
                        "description": "working directory to override, so it will be used as a base dir",
                        "type": [
                          "string",
                          "null"
                        ]
                      }
                    },
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "count": {
                    "description": "static number of sharded instances to spawn",
                    "oneOf": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "integer"
                      },
                      {
                        "type": "null"
                      }
                    ],
                    "x-kubernetes-int-or-string": true
                  },
                  "delay": {
                    "description": "delay before the step",
                    "pattern": "^((0|[1-9][0-9]*)h)?((0|[1-9][0-9]*)m)?((0|[1-9][0-9]*)s)?((0|[1-9][0-9]*)ms)?$",
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "description": {
                    "description": "worker description to display",
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "execute": {
                    "additionalProperties": false,
                    "description": "execute other Testkube resources",
                    "properties": {
                      "async": {
                        "description": "only schedule the resources, don't watch the results (unless it is needed for parallelism)",
                        "type": [
                          "boolean",
                          "null"
                        ]
                      },
                      "parallelism": {
                        "description": "how many resources could be scheduled in parallel",
                        "format": "int32",
                        "type": [
                          "integer",
                          "null"
                        ]
                      },
                      "tests": {
                        "description": "tests to run",
                        "items": {
                          "additionalProperties": false,
                          "properties": {
                            "count": {
                              "description": "static number of sharded instances to spawn",
                              "oneOf": [
                                {
                                  "type": "string"
                                },
                                {
                                  "type": "integer"
                                },
                                {
                                  "type": "null"
                                }
                              ],
                              "x-kubernetes-int-or-string": true
                            },
                            "description": {
                              "description": "test execution description to display",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "executionRequest": {
                              "additionalProperties": false,
                              "description": "pass the execution request overrides",
                              "properties": {
                                "activeDeadlineSeconds": {
                                  "description": "Optional duration in seconds the pod may be active on the node relative to\nStartTime before the system will actively try to mark it failed and kill associated containers.\nValue must be a positive integer.",
                                  "format": "int64",
                                  "type": [
                                    "integer",
                                    "null"
                                  ]
                                },
                                "args": {
                                  "description": "additional executor binary arguments",
                                  "items": {
                                    "type": "string"
                                  },
                                  "type": [
                                    "array",
                                    "null"
                                  ]
                                },
                                "argsMode": {
                                  "description": "usage mode for arguments",
                                  "enum": [
                                    "append",
                                    "override",
                                    "replace"
                                  ],
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "artifactRequest": {
                                  "additionalProperties": false,
                                  "description": "artifact request body with test artifacts",
                                  "properties": {
                                    "dirs": {
                                      "description": "artifact directories for scraping",
                                      "items": {
                                        "type": "string"
                                      },
                                      "type": [
                                        "array",
                                        "null"
                                      ]
                                    },
                                    "masks": {
                                      "description": "regexp to filter scraped artifacts, single or comma separated",
                                      "items": {
                                        "type": "string"
                                      },
                                      "type": [
                                        "array",
                                        "null"
                                      ]
                                    },
                                    "omitFolderPerExecution": {
                                      "description": "don't use a separate folder for execution artifacts",
                                      "type": [
                                        "boolean",
                                        "null"
                                      ]
                                    },
                                    "sharedBetweenPods": {
                                      "description": "whether to share volume between pods",
                                      "type": [
                                        "boolean",
                                        "null"
                                      ]
                                    },
                                    "sidecarScraper": {
                                      "description": "run scraper as pod sidecar container",
                                      "type": [
                                        "boolean",
                                        "null"
                                      ]
                                    },
                                    "storageBucket": {
                                      "description": "artifact bucket storage",
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "storageClassName": {
                                      "description": "artifact storage class name for container executor",
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "useDefaultStorageClassName": {
                                      "description": "whether to use default storage class name",
                                      "type": [
                                        "boolean",
                                        "null"
                                      ]
                                    },
                                    "volumeMountPath": {
                                      "description": "artifact volume mount path for container executor",
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    }
                                  },
                                  "type": [
                                    "object",
                                    "null"
                                  ]
                                },
                                "command": {
                                  "description": "executor binary command",
                                  "items": {
                                    "type": "string"
                                  },
                                  "type": [
                                    "array",
                                    "null"
                                  ]
                                },
                                "cronJobTemplate": {
                                  "description": "cron job template extensions",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "envConfigMaps": {
                                  "description": "config map references",
                                  "items": {
                                    "additionalProperties": false,
                                    "description": "Reference to env resource",
                                    "properties": {
                                      "mapToVariables": {
                                        "description": "whether we shoud map to variables from resource",
                                        "type": [
                                          "boolean",
                                          "null"
                                        ]
                                      },
                                      "mount": {
                                        "description": "whether we shoud mount resource",
                                        "type": [
                                          "boolean",
                                          "null"
                                        ]
                                      },
                                      "mountPath": {
                                        "description": "where we shoud mount resource",
                                        "type": [
                                          "string",
                                          "null"
                                        ]
                                      },
                                      "reference": {
                                        "additionalProperties": false,
                                        "description": "LocalObjectReference contains enough information to let you locate the\nreferenced object inside the same namespace.",
                                        "properties": {
                                          "name": {
                                            "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                                            "type": [
                                              "string",
                                              "null"
                                            ]
                                          }
                                        },
                                        "type": "object",
                                        "x-kubernetes-map-type": "atomic"
                                      }
                                    },
                                    "required": [
                                      "reference"
                                    ],
                                    "type": "object"
                                  },
                                  "type": [
                                    "array",
                                    "null"
                                  ]
                                },
                                "envSecrets": {
                                  "description": "secret references",
                                  "items": {
                                    "additionalProperties": false,
                                    "description": "Reference to env resource",
                                    "properties": {
                                      "mapToVariables": {
                                        "description": "whether we shoud map to variables from resource",
                                        "type": [
                                          "boolean",
                                          "null"
                                        ]
                                      },
                                      "mount": {
                                        "description": "whether we shoud mount resource",
                                        "type": [
                                          "boolean",
                                          "null"
                                        ]
                                      },
                                      "mountPath": {
                                        "description": "where we shoud mount resource",
                                        "type": [
                                          "string",
                                          "null"
                                        ]
                                      },
                                      "reference": {
                                        "additionalProperties": false,
                                        "description": "LocalObjectReference contains enough information to let you locate the\nreferenced object inside the same namespace.",
                                        "properties": {
                                          "name": {
                                            "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                                            "type": [
                                              "string",
                                              "null"
                                            ]
                                          }
                                        },
                                        "type": "object",
                                        "x-kubernetes-map-type": "atomic"
                                      }
                                    },
                                    "required": [
                                      "reference"
                                    ],
                                    "type": "object"
                                  },
                                  "type": [
                                    "array",
                                    "null"
                                  ]
                                },
                                "executePostRunScriptBeforeScraping": {
                                  "description": "execute post run script before scraping (prebuilt executor only)",
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                },
                                "executionLabels": {
                                  "additionalProperties": {
                                    "type": "string"
                                  },
                                  "description": "test execution labels",
                                  "type": [
                                    "object",
                                    "null"
                                  ]
                                },
                                "executionNamespace": {
                                  "description": "namespace for test execution (Pro edition only)",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "httpProxy": {
                                  "description": "http proxy for executor containers",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "httpsProxy": {
                                  "description": "https proxy for executor containers",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "image": {
                                  "description": "container executor image",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "imagePullSecrets": {
                                  "description": "container executor image pull secrets",
                                  "items": {
                                    "additionalProperties": false,
                                    "description": "LocalObjectReference contains enough information to let you locate the\nreferenced object inside the same namespace.",
                                    "properties": {
                                      "name": {
                                        "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                                        "type": [
                                          "string",
                                          "null"
                                        ]
                                      }
                                    },
                                    "type": "object",
                                    "x-kubernetes-map-type": "atomic"
                                  },
                                  "type": [
                                    "array",
                                    "null"
                                  ]
                                },
                                "isVariablesFileUploaded": {
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                },
                                "jobTemplate": {
                                  "description": "job template extensions",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "name": {
                                  "description": "test execution custom name",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "negativeTest": {
                                  "description": "negative test will fail the execution if it is a success and it will succeed if it is a failure",
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                },
                                "postRunScript": {
                                  "description": "script to run after test execution",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "preRunScript": {
                                  "description": "script to run before test execution",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "scraperTemplate": {
                                  "description": "scraper template extensions",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "sourceScripts": {
                                  "description": "run scripts using source command (container executor only)",
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                },
                                "sync": {
                                  "description": "whether to start execution sync or async",
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                },
                                "testSecretUUID": {
                                  "description": "test secret uuid",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "variables": {
                                  "additionalProperties": {
                                    "additionalProperties": false,
                                    "properties": {
                                      "name": {
                                        "description": "variable name",
                                        "type": [
                                          "string",
                                          "null"
                                        ]
                                      },
                                      "type": {
                                        "description": "variable type",
                                        "type": [
                                          "string",
                                          "null"
                                        ]
                                      },
                                      "value": {
                                        "description": "variable string value",
                                        "type": [
                                          "string",
                                          "null"
                                        ]
                                      },
                                      "valueFrom": {
                                        "additionalProperties": false,
                                        "description": "or load it from var source",
                                        "properties": {
                                          "configMapKeyRef": {
                                            "additionalProperties": false,
                                            "properties": {
                                              "key": {
                                                "type": "string"
                                              },
                                              "name": {
                                                "type": [
                                                  "string",
                                                  "null"
                                                ]
                                              },
                                              "optional": {
                                                "type": [
                                                  "boolean",
                                                  "null"
                                                ]
                                              }
                                            },
                                            "required": [
                                              "key"
                                            ],
                                            "type": [
                                              "object",
                                              "null"
                                            ],
                                            "x-kubernetes-map-type": "atomic"
                                          },
                                          "fieldRef": {
                                            "additionalProperties": false,
                                            "properties": {
                                              "apiVersion": {
                                                "type": [
                                                  "string",
                                                  "null"
                                                ]
                                              },
                                              "fieldPath": {
                                                "type": "string"
                                              }
                                            },
                                            "required": [
                                              "fieldPath"
                                            ],
                                            "type": [
                                              "object",
                                              "null"
                                            ],
                                            "x-kubernetes-map-type": "atomic"
                                          },
                                          "resourceFieldRef": {
                                            "additionalProperties": false,
                                            "properties": {
                                              "containerName": {
                                                "type": [
                                                  "string",
                                                  "null"
                                                ]
                                              },
                                              "divisor": {
                                                "oneOf": [
                                                  {
                                                    "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                                    "type": "string"
                                                  },
                                                  {
                                                    "type": "integer"
                                                  },
                                                  {
                                                    "type": "null"
                                                  }
                                                ],
                                                "x-kubernetes-int-or-string": true
                                              },
                                              "resource": {
                                                "type": "string"
                                              }
                                            },
                                            "required": [
                                              "resource"
                                            ],
                                            "type": [
                                              "object",
                                              "null"
                                            ],
                                            "x-kubernetes-map-type": "atomic"
                                          },
                                          "secretKeyRef": {
                                            "additionalProperties": false,
                                            "properties": {
                                              "key": {
                                                "type": "string"
                                              },
                                              "name": {
                                                "type": [
                                                  "string",
                                                  "null"
                                                ]
                                              },
                                              "optional": {
                                                "type": [
                                                  "boolean",
                                                  "null"
                                                ]
                                              }
                                            },
                                            "required": [
                                              "key"
                                            ],
                                            "type": [
                                              "object",
                                              "null"
                                            ],
                                            "x-kubernetes-map-type": "atomic"
                                          }
                                        },
                                        "type": [
                                          "object",
                                          "null"
                                        ]
                                      }
                                    },
                                    "type": "object"
                                  },
                                  "type": [
                                    "object",
                                    "null"
                                  ]
                                },
                                "variablesFile": {
                                  "description": "variables file content - need to be in format for particular executor (e.g. postman envs file)",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                }
                              },
                              "type": [
                                "object",
                                "null"
                              ]
                            },
                            "matrix": {
                              "description": "matrix of parameters to spawn instances (static)",
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-preserve-unknown-fields": true
                            },
                            "maxCount": {
                              "description": "dynamic number of sharded instances to spawn - it will be lowered if there is not enough sharded values",
                              "oneOf": [
                                {
                                  "type": "string"
                                },
                                {
                                  "type": "integer"
                                },
                                {
                                  "type": "null"
                                }
                              ],
                              "x-kubernetes-int-or-string": true
                            },
                            "name": {
                              "description": "test name to run",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "shards": {
                              "description": "parameters that should be distributed across sharded instances",
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-preserve-unknown-fields": true
                            },
                            "tarball": {
                              "additionalProperties": {
                                "type": "object",
                                "x-kubernetes-preserve-unknown-fields": true
                              },
                              "description": "pack some data from the original file system to serve them down",
                              "type": [
                                "object",
                                "null"
                              ]
                            }
                          },
                          "type": "object"
                        },
                        "type": [
                          "array",
                          "null"
                        ]
                      },
                      "workflows": {
                        "description": "workflows to run",
                        "items": {
                          "additionalProperties": false,
                          "properties": {
                            "config": {
                              "additionalProperties": {
                                "oneOf": [
                                  {
                                    "type": "string"
                                  },
                                  {
                                    "type": "integer"
                                  }
                                ],
                                "x-kubernetes-int-or-string": true
                              },
                              "description": "configuration to pass for the workflow",
                              "type": [
                                "object",
                                "null"
                              ]
                            },
                            "count": {
                              "description": "static number of sharded instances to spawn",
                              "oneOf": [
                                {
                                  "type": "string"
                                },
                                {
                                  "type": "integer"
                                },
                                {
                                  "type": "null"
                                }
                              ],
                              "x-kubernetes-int-or-string": true
                            },
                            "description": {
                              "description": "test workflow execution description to display",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "executionName": {
                              "description": "unique execution name to use",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "matrix": {
                              "description": "matrix of parameters to spawn instances (static)",
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-preserve-unknown-fields": true
                            },
                            "maxCount": {
                              "description": "dynamic number of sharded instances to spawn - it will be lowered if there is not enough sharded values",
                              "oneOf": [
                                {
                                  "type": "string"
                                },
                                {
                                  "type": "integer"
                                },
                                {
                                  "type": "null"
                                }
                              ],
                              "x-kubernetes-int-or-string": true
                            },
                            "name": {
                              "description": "workflow name to run",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "shards": {
                              "description": "parameters that should be distributed across sharded instances",
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-preserve-unknown-fields": true
                            },
                            "tarball": {
                              "additionalProperties": {
                                "type": "object",
                                "x-kubernetes-preserve-unknown-fields": true
                              },
                              "description": "pack some data from the original file system to serve them down",
                              "type": [
                                "object",
                                "null"
                              ]
                            }
                          },
                          "type": "object"
                        },
                        "type": [
                          "array",
                          "null"
                        ]
                      }
                    },
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "fetch": {
                    "description": "instructions for fetching files back",
                    "items": {
                      "required": [
                        "from"
                      ],
                      "type": "object",
                      "x-kubernetes-preserve-unknown-fields": true
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "logs": {
                    "description": "should save logs for the parallel step (true if not specified)",
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "matrix": {
                    "description": "matrix of parameters to spawn instances (static)",
                    "type": [
                      "object",
                      "null"
                    ],
                    "x-kubernetes-preserve-unknown-fields": true
                  },
                  "maxCount": {
                    "description": "dynamic number of sharded instances to spawn - it will be lowered if there is not enough sharded values",
                    "oneOf": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "integer"
                      },
                      {
                        "type": "null"
                      }
                    ],
                    "x-kubernetes-int-or-string": true
                  },
                  "negative": {
                    "description": "is the step expected to fail",
                    "type": [
                      "boolean",
                      "null"
                    ]
                  },
                  "optional": {
                    "description": "is the step optional, so its failure won't affect the TestWorkflow result",
                    "type": [
                      "boolean",
                      "null"
                    ]
                  },
                  "parallelism": {
                    "description": "how many resources could be scheduled in parallel",
                    "format": "int32",
                    "type": [
                      "integer",
                      "null"
                    ]
                  },
                  "paused": {
                    "description": "pause the step initially",
                    "type": [
                      "boolean",
                      "null"
                    ]
                  },
                  "retry": {
                    "additionalProperties": false,
                    "description": "policy for retrying the step",
                    "properties": {
                      "count": {
                        "description": "how many times at most it should retry",
                        "format": "int32",
                        "minimum": 1,
                        "type": [
                          "integer",
                          "null"
                        ]
                      },
                      "until": {
                        "description": "until when it should retry (defaults to: \"passed\")",
                        "type": [
                          "string",
                          "null"
                        ]
                      }
                    },
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "run": {
                    "additionalProperties": false,
                    "description": "run specific container in the current step",
                    "properties": {
                      "args": {
                        "description": "override default command in the image (empty string to default CMD of the image)",
                        "items": {
                          "type": "string"
                        },
                        "type": [
                          "array",
                          "null"
                        ]
                      },
                      "command": {
                        "description": "override default command in the image (empty string to default ENTRYPOINT of the image)",
                        "items": {
                          "type": "string"
                        },
                        "type": [
                          "array",
                          "null"
                        ]
                      },
                      "env": {
                        "description": "environment variables to append to the container",
                        "items": {
                          "additionalProperties": false,
                          "description": "EnvVar represents an environment variable present in a Container.",
                          "properties": {
                            "name": {
                              "description": "Name of the environment variable. Must be a C_IDENTIFIER.",
                              "type": "string"
                            },
                            "value": {
                              "description": "Variable references $(VAR_NAME) are expanded\nusing the previously defined environment variables in the container and\nany service environment variables. If a variable cannot be resolved,\nthe reference in the input string will be unchanged. Double $$ are reduced\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e.\n\"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\".\nEscaped references will never be expanded, regardless of whether the variable\nexists or not.\nDefaults to \"\".",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "valueFrom": {
                              "additionalProperties": false,
                              "description": "Source for the environment variable's value. Cannot be used if value is not empty.",
                              "properties": {
                                "configMapKeyRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "key": {
                                      "type": "string"
                                    },
                                    "name": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "optional": {
                                      "type": [
                                        "boolean",
                                        "null"
                                      ]
                                    }
                                  },
                                  "required": [
                                    "key"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                },
                                "fieldRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "apiVersion": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "fieldPath": {
                                      "type": "string"
                                    }
                                  },
                                  "required": [
                                    "fieldPath"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                },
                                "resourceFieldRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "containerName": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "divisor": {
                                      "oneOf": [
                                        {
                                          "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                          "type": "string"
                                        },
                                        {
                                          "type": "integer"
                                        },
                                        {
                                          "type": "null"
                                        }
                                      ],
                                      "x-kubernetes-int-or-string": true
                                    },
                                    "resource": {
                                      "type": "string"
                                    }
                                  },
                                  "required": [
                                    "resource"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                },
                                "secretKeyRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "key": {
                                      "type": "string"
                                    },
                                    "name": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "optional": {
                                      "type": [
                                        "boolean",
                                        "null"
                                      ]
                                    }
                                  },
                                  "required": [
                                    "key"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                }
                              },
                              "type": [
                                "object",
                                "null"
                              ]
                            }
                          },
                          "required": [
                            "name"
                          ],
                          "type": "object"
                        },
                        "type": [
                          "array",
                          "null"
                        ]
                      },
                      "envFrom": {
                        "description": "external environment variables to append to the container",
                        "items": {
                          "additionalProperties": false,
                          "description": "EnvFromSource represents the source of a set of ConfigMaps",
                          "properties": {
                            "configMapRef": {
                              "additionalProperties": false,
                              "description": "The ConfigMap to select from",
                              "properties": {
                                "name": {
                                  "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "optional": {
                                  "description": "Specify whether the ConfigMap must be defined",
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                }
                              },
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-map-type": "atomic"
                            },
                            "prefix": {
                              "description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "secretRef": {
                              "additionalProperties": false,
                              "description": "The Secret to select from",
                              "properties": {
                                "name": {
                                  "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "optional": {
                                  "description": "Specify whether the Secret must be defined",
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                }
                              },
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-map-type": "atomic"
                            }
                          },
                          "type": "object"
                        },
                        "type": [
                          "array",
                          "null"
                        ]
                      },
                      "image": {
                        "description": "image to be used for the container",
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "imagePullPolicy": {
                        "description": "pulling policy for the image",
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "resources": {
                        "additionalProperties": false,
                        "description": "expected resources for the container",
                        "properties": {
                          "limits": {
                            "additionalProperties": {
                              "oneOf": [
                                {
                                  "type": "string"
                                },
                                {
                                  "type": "integer"
                                }
                              ],
                              "x-kubernetes-int-or-string": true
                            },
                            "description": "resource limits for the container",
                            "type": [
                              "object",
                              "null"
                            ]
                          },
                          "requests": {
                            "additionalProperties": {
                              "oneOf": [
                                {
                                  "type": "string"
                                },
                                {
                                  "type": "integer"
                                }
                              ],
                              "x-kubernetes-int-or-string": true
                            },
                            "description": "resource requests for the container",
                            "type": [
                              "object",
                              "null"
                            ]
                          }
                        },
                        "type": [
                          "object",
                          "null"
                        ]
                      },
                      "securityContext": {
                        "additionalProperties": false,
                        "properties": {
                          "allowPrivilegeEscalation": {
                            "type": [
                              "boolean",
                              "null"
                            ]
                          },
                          "capabilities": {
                            "additionalProperties": false,
                            "properties": {
                              "add": {
                                "items": {
                                  "type": "string"
                                },
                                "type": [
                                  "array",
                                  "null"
                                ]
                              },
                              "drop": {
                                "items": {
                                  "type": "string"
                                },
                                "type": [
                                  "array",
                                  "null"
                                ]
                              }
                            },
                            "type": [
                              "object",
                              "null"
                            ]
                          },
                          "privileged": {
                            "type": [
                              "boolean",
                              "null"
                            ]
                          },
                          "procMount": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "readOnlyRootFilesystem": {
                            "type": [
                              "boolean",
                              "null"
                            ]
                          },
                          "runAsGroup": {
                            "format": "int64",
                            "type": [
                              "integer",
                              "null"
                            ]
                          },
                          "runAsNonRoot": {
                            "type": [
                              "boolean",
                              "null"
                            ]
                          },
                          "runAsUser": {
                            "format": "int64",
                            "type": [
                              "integer",
                              "null"
                            ]
                          },
                          "seLinuxOptions": {
                            "additionalProperties": false,
                            "properties": {
                              "level": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "role": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "type": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "user": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              }
                            },
                            "type": [
                              "object",
                              "null"
                            ]
                          },
                          "seccompProfile": {
                            "additionalProperties": false,
                            "properties": {
                              "localhostProfile": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "type": {
                                "type": "string"
                              }
                            },
                            "required": [
                              "type"
                            ],
                            "type": [
                              "object",
                              "null"
                            ]
                          },
                          "windowsOptions": {
                            "additionalProperties": false,
                            "properties": {
                              "gmsaCredentialSpec": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "gmsaCredentialSpecName": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "hostProcess": {
                                "type": [
                                  "boolean",
                                  "null"
                                ]
                              },
                              "runAsUserName": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              }
                            },
                            "type": [
                              "object",
                              "null"
                            ]
                          }
                        },
                        "type": [
                          "object",
                          "null"
                        ]
                      },
                      "shell": {
                        "description": "script to run in a default shell for the container",
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "volumeMounts": {
                        "items": {
                          "additionalProperties": false,
                          "properties": {
                            "mountPath": {
                              "type": "string"
                            },
                            "mountPropagation": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "name": {
                              "type": "string"
                            },
                            "readOnly": {
                              "type": [
                                "boolean",
                                "null"
                              ]
                            },
                            "subPath": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "subPathExpr": {
                              "type": [
                                "string",
                                "null"
                              ]
                            }
                          },
                          "required": [
                            "mountPath",
                            "name"
                          ],
                          "type": "object"
                        },
                        "type": [
                          "array",
                          "null"
                        ]
                      },
                      "workingDir": {
                        "description": "override default working directory in the image (empty string to default WORKDIR for the image)",
                        "type": [
                          "string",
                          "null"
                        ]
                      }
                    },
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "shards": {
                    "description": "parameters that should be distributed across sharded instances",
                    "type": [
                      "object",
                      "null"
                    ],
                    "x-kubernetes-preserve-unknown-fields": true
                  },
                  "shell": {
                    "description": "script to run in a default shell for the container",
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "timeout": {
                    "description": "maximum time this step may take",
                    "pattern": "^((0|[1-9][0-9]*)h)?((0|[1-9][0-9]*)m)?((0|[1-9][0-9]*)s)?((0|[1-9][0-9]*)ms)?$",
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "transfer": {
                    "description": "instructions for transferring files",
                    "items": {
                      "required": [
                        "from"
                      ],
                      "type": "object",
                      "x-kubernetes-preserve-unknown-fields": true
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  }
                },
                "type": [
                  "object",
                  "null"
                ],
                "x-kubernetes-preserve-unknown-fields": true
              },
              "paused": {
                "description": "pause the step initially",
                "type": [
                  "boolean",
                  "null"
                ]
              },
              "pure": {
                "description": "mark the step as pure, applying optimizations to merge the containers together",
                "type": [
                  "boolean",
                  "null"
                ]
              },
              "retry": {
                "additionalProperties": false,
                "description": "policy for retrying the step",
                "properties": {
                  "count": {
                    "description": "how many times at most it should retry",
                    "format": "int32",
                    "minimum": 1,
                    "type": [
                      "integer",
                      "null"
                    ]
                  },
                  "until": {
                    "description": "until when it should retry (defaults to: \"passed\")",
                    "type": [
                      "string",
                      "null"
                    ]
                  }
                },
                "type": [
                  "object",
                  "null"
                ]
              },
              "run": {
                "additionalProperties": false,
                "description": "run specific container in the current step",
                "properties": {
                  "args": {
                    "description": "override default command in the image (empty string to default CMD of the image)",
                    "items": {
                      "type": "string"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "command": {
                    "description": "override default command in the image (empty string to default ENTRYPOINT of the image)",
                    "items": {
                      "type": "string"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "env": {
                    "description": "environment variables to append to the container",
                    "items": {
                      "additionalProperties": false,
                      "description": "EnvVar represents an environment variable present in a Container.",
                      "properties": {
                        "name": {
                          "description": "Name of the environment variable. Must be a C_IDENTIFIER.",
                          "type": "string"
                        },
                        "value": {
                          "description": "Variable references $(VAR_NAME) are expanded\nusing the previously defined environment variables in the container and\nany service environment variables. If a variable cannot be resolved,\nthe reference in the input string will be unchanged. Double $$ are reduced\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e.\n\"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\".\nEscaped references will never be expanded, regardless of whether the variable\nexists or not.\nDefaults to \"\".",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "valueFrom": {
                          "additionalProperties": false,
                          "description": "Source for the environment variable's value. Cannot be used if value is not empty.",
                          "properties": {
                            "configMapKeyRef": {
                              "additionalProperties": false,
                              "properties": {
                                "key": {
                                  "type": "string"
                                },
                                "name": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "optional": {
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                }
                              },
                              "required": [
                                "key"
                              ],
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-map-type": "atomic"
                            },
                            "fieldRef": {
                              "additionalProperties": false,
                              "properties": {
                                "apiVersion": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "fieldPath": {
                                  "type": "string"
                                }
                              },
                              "required": [
                                "fieldPath"
                              ],
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-map-type": "atomic"
                            },
                            "resourceFieldRef": {
                              "additionalProperties": false,
                              "properties": {
                                "containerName": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "divisor": {
                                  "oneOf": [
                                    {
                                      "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                      "type": "string"
                                    },
                                    {
                                      "type": "integer"
                                    },
                                    {
                                      "type": "null"
                                    }
                                  ],
                                  "x-kubernetes-int-or-string": true
                                },
                                "resource": {
                                  "type": "string"
                                }
                              },
                              "required": [
                                "resource"
                              ],
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-map-type": "atomic"
                            },
                            "secretKeyRef": {
                              "additionalProperties": false,
                              "properties": {
                                "key": {
                                  "type": "string"
                                },
                                "name": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "optional": {
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                }
                              },
                              "required": [
                                "key"
                              ],
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-map-type": "atomic"
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ]
                        }
                      },
                      "required": [
                        "name"
                      ],
                      "type": "object"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "envFrom": {
                    "description": "external environment variables to append to the container",
                    "items": {
                      "additionalProperties": false,
                      "description": "EnvFromSource represents the source of a set of ConfigMaps",
                      "properties": {
                        "configMapRef": {
                          "additionalProperties": false,
                          "description": "The ConfigMap to select from",
                          "properties": {
                            "name": {
                              "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "optional": {
                              "description": "Specify whether the ConfigMap must be defined",
                              "type": [
                                "boolean",
                                "null"
                              ]
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ],
                          "x-kubernetes-map-type": "atomic"
                        },
                        "prefix": {
                          "description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "secretRef": {
                          "additionalProperties": false,
                          "description": "The Secret to select from",
                          "properties": {
                            "name": {
                              "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "optional": {
                              "description": "Specify whether the Secret must be defined",
                              "type": [
                                "boolean",
                                "null"
                              ]
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ],
                          "x-kubernetes-map-type": "atomic"
                        }
                      },
                      "type": "object"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "image": {
                    "description": "image to be used for the container",
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "imagePullPolicy": {
                    "description": "pulling policy for the image",
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "resources": {
                    "additionalProperties": false,
                    "description": "expected resources for the container",
                    "properties": {
                      "limits": {
                        "additionalProperties": {
                          "oneOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "integer"
                            }
                          ],
                          "x-kubernetes-int-or-string": true
                        },
                        "description": "resource limits for the container",
                        "type": [
                          "object",
                          "null"
                        ]
                      },
                      "requests": {
                        "additionalProperties": {
                          "oneOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "integer"
                            }
                          ],
                          "x-kubernetes-int-or-string": true
                        },
                        "description": "resource requests for the container",
                        "type": [
                          "object",
                          "null"
                        ]
                      }
                    },
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "securityContext": {
                    "additionalProperties": false,
                    "properties": {
                      "allowPrivilegeEscalation": {
                        "type": [
                          "boolean",
                          "null"
                        ]
                      },
                      "capabilities": {
                        "additionalProperties": false,
                        "properties": {
                          "add": {
                            "items": {
                              "type": "string"
                            },
                            "type": [
                              "array",
                              "null"
                            ]
                          },
                          "drop": {
                            "items": {
                              "type": "string"
                            },
                            "type": [
                              "array",
                              "null"
                            ]
                          }
                        },
                        "type": [
                          "object",
                          "null"
                        ]
                      },
                      "privileged": {
                        "type": [
                          "boolean",
                          "null"
                        ]
                      },
                      "procMount": {
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "readOnlyRootFilesystem": {
                        "type": [
                          "boolean",
                          "null"
                        ]
                      },
                      "runAsGroup": {
                        "format": "int64",
                        "type": [
                          "integer",
                          "null"
                        ]
                      },
                      "runAsNonRoot": {
                        "type": [
                          "boolean",
                          "null"
                        ]
                      },
                      "runAsUser": {
                        "format": "int64",
                        "type": [
                          "integer",
                          "null"
                        ]
                      },
                      "seLinuxOptions": {
                        "additionalProperties": false,
                        "properties": {
                          "level": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "role": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "type": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "user": {
                            "type": [
                              "string",
                              "null"
                            ]
                          }
                        },
                        "type": [
                          "object",
                          "null"
                        ]
                      },
                      "seccompProfile": {
                        "additionalProperties": false,
                        "properties": {
                          "localhostProfile": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "type": {
                            "type": "string"
                          }
                        },
                        "required": [
                          "type"
                        ],
                        "type": [
                          "object",
                          "null"
                        ]
                      },
                      "windowsOptions": {
                        "additionalProperties": false,
                        "properties": {
                          "gmsaCredentialSpec": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "gmsaCredentialSpecName": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "hostProcess": {
                            "type": [
                              "boolean",
                              "null"
                            ]
                          },
                          "runAsUserName": {
                            "type": [
                              "string",
                              "null"
                            ]
                          }
                        },
                        "type": [
                          "object",
                          "null"
                        ]
                      }
                    },
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "shell": {
                    "description": "script to run in a default shell for the container",
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "volumeMounts": {
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "mountPath": {
                          "type": "string"
                        },
                        "mountPropagation": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "name": {
                          "type": "string"
                        },
                        "readOnly": {
                          "type": [
                            "boolean",
                            "null"
                          ]
                        },
                        "subPath": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "subPathExpr": {
                          "type": [
                            "string",
                            "null"
                          ]
                        }
                      },
                      "required": [
                        "mountPath",
                        "name"
                      ],
                      "type": "object"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "workingDir": {
                    "description": "override default working directory in the image (empty string to default WORKDIR for the image)",
                    "type": [
                      "string",
                      "null"
                    ]
                  }
                },
                "type": [
                  "object",
                  "null"
                ]
              },
              "services": {
                "additionalProperties": {
                  "additionalProperties": false,
                  "properties": {
                    "args": {
                      "description": "override default command in the image (empty string to default CMD of the image)",
                      "items": {
                        "type": "string"
                      },
                      "type": [
                        "array",
                        "null"
                      ]
                    },
                    "command": {
                      "description": "override default command in the image (empty string to default ENTRYPOINT of the image)",
                      "items": {
                        "type": "string"
                      },
                      "type": [
                        "array",
                        "null"
                      ]
                    },
                    "content": {
                      "additionalProperties": false,
                      "description": "global content that should be fetched into all containers",
                      "properties": {
                        "files": {
                          "description": "files to load",
                          "items": {
                            "additionalProperties": false,
                            "properties": {
                              "content": {
                                "description": "plain-text content to put inside",
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "contentFrom": {
                                "additionalProperties": false,
                                "description": "external source to use",
                                "properties": {
                                  "configMapKeyRef": {
                                    "additionalProperties": false,
                                    "properties": {
                                      "key": {
                                        "type": "string"
                                      },
                                      "name": {
                                        "type": [
                                          "string",
                                          "null"
                                        ]
                                      },
                                      "optional": {
                                        "type": [
                                          "boolean",
                                          "null"
                                        ]
                                      }
                                    },
                                    "required": [
                                      "key"
                                    ],
                                    "type": [
                                      "object",
                                      "null"
                                    ],
                                    "x-kubernetes-map-type": "atomic"
                                  },
                                  "fieldRef": {
                                    "additionalProperties": false,
                                    "properties": {
                                      "apiVersion": {
                                        "type": [
                                          "string",
                                          "null"
                                        ]
                                      },
                                      "fieldPath": {
                                        "type": "string"
                                      }
                                    },
                                    "required": [
                                      "fieldPath"
                                    ],
                                    "type": [
                                      "object",
                                      "null"
                                    ],
                                    "x-kubernetes-map-type": "atomic"
                                  },
                                  "resourceFieldRef": {
                                    "additionalProperties": false,
                                    "properties": {
                                      "containerName": {
                                        "type": [
                                          "string",
                                          "null"
                                        ]
                                      },
                                      "divisor": {
                                        "oneOf": [
                                          {
                                            "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                            "type": "string"
                                          },
                                          {
                                            "type": "integer"
                                          },
                                          {
                                            "type": "null"
                                          }
                                        ],
                                        "x-kubernetes-int-or-string": true
                                      },
                                      "resource": {
                                        "type": "string"
                                      }
                                    },
                                    "required": [
                                      "resource"
                                    ],
                                    "type": [
                                      "object",
                                      "null"
                                    ],
                                    "x-kubernetes-map-type": "atomic"
                                  },
                                  "secretKeyRef": {
                                    "additionalProperties": false,
                                    "properties": {
                                      "key": {
                                        "type": "string"
                                      },
                                      "name": {
                                        "type": [
                                          "string",
                                          "null"
                                        ]
                                      },
                                      "optional": {
                                        "type": [
                                          "boolean",
                                          "null"
                                        ]
                                      }
                                    },
                                    "required": [
                                      "key"
                                    ],
                                    "type": [
                                      "object",
                                      "null"
                                    ],
                                    "x-kubernetes-map-type": "atomic"
                                  }
                                },
                                "type": [
                                  "object",
                                  "null"
                                ]
                              },
                              "mode": {
                                "description": "mode to use for the file",
                                "format": "int32",
                                "type": [
                                  "integer",
                                  "null"
                                ]
                              },
                              "path": {
                                "description": "path where the file should be accessible at",
                                "minLength": 1,
                                "type": "string"
                              }
                            },
                            "required": [
                              "path"
                            ],
                            "type": "object"
                          },
                          "type": [
                            "array",
                            "null"
                          ]
                        },
                        "git": {
                          "additionalProperties": false,
                          "description": "git repository details",
                          "properties": {
                            "authType": {
                              "description": "authorization type for the credentials",
                              "enum": [
                                "basic",
                                "header"
                              ],
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "mountPath": {
                              "description": "where to mount the fetched repository contents (defaults to \"repo\" directory in the data volume)",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "paths": {
                              "description": "paths to fetch for the sparse checkout",
                              "items": {
                                "type": "string"
                              },
                              "type": [
                                "array",
                                "null"
                              ]
                            },
                            "revision": {
                              "description": "branch, commit or a tag name to fetch",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "sshKey": {
                              "description": "plain text SSH private key to fetch with",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "sshKeyFrom": {
                              "additionalProperties": false,
                              "description": "external SSH private key to fetch with",
                              "properties": {
                                "configMapKeyRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "key": {
                                      "type": "string"
                                    },
                                    "name": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "optional": {
                                      "type": [
                                        "boolean",
                                        "null"
                                      ]
                                    }
                                  },
                                  "required": [
                                    "key"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                },
                                "fieldRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "apiVersion": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "fieldPath": {
                                      "type": "string"
                                    }
                                  },
                                  "required": [
                                    "fieldPath"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                },
                                "resourceFieldRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "containerName": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "divisor": {
                                      "oneOf": [
                                        {
                                          "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                          "type": "string"
                                        },
                                        {
                                          "type": "integer"
                                        },
                                        {
                                          "type": "null"
                                        }
                                      ],
                                      "x-kubernetes-int-or-string": true
                                    },
                                    "resource": {
                                      "type": "string"
                                    }
                                  },
                                  "required": [
                                    "resource"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                },
                                "secretKeyRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "key": {
                                      "type": "string"
                                    },
                                    "name": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "optional": {
                                      "type": [
                                        "boolean",
                                        "null"
                                      ]
                                    }
                                  },
                                  "required": [
                                    "key"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                }
                              },
                              "type": [
                                "object",
                                "null"
                              ]
                            },
                            "token": {
                              "description": "plain text token to fetch with",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "tokenFrom": {
                              "additionalProperties": false,
                              "description": "external token to fetch with",
                              "properties": {
                                "configMapKeyRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "key": {
                                      "type": "string"
                                    },
                                    "name": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "optional": {
                                      "type": [
                                        "boolean",
                                        "null"
                                      ]
                                    }
                                  },
                                  "required": [
                                    "key"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                },
                                "fieldRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "apiVersion": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "fieldPath": {
                                      "type": "string"
                                    }
                                  },
                                  "required": [
                                    "fieldPath"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                },
                                "resourceFieldRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "containerName": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "divisor": {
                                      "oneOf": [
                                        {
                                          "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                          "type": "string"
                                        },
                                        {
                                          "type": "integer"
                                        },
                                        {
                                          "type": "null"
                                        }
                                      ],
                                      "x-kubernetes-int-or-string": true
                                    },
                                    "resource": {
                                      "type": "string"
                                    }
                                  },
                                  "required": [
                                    "resource"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                },
                                "secretKeyRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "key": {
                                      "type": "string"
                                    },
                                    "name": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "optional": {
                                      "type": [
                                        "boolean",
                                        "null"
                                      ]
                                    }
                                  },
                                  "required": [
                                    "key"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                }
                              },
                              "type": [
                                "object",
                                "null"
                              ]
                            },
                            "uri": {
                              "description": "uri for the Git repository",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "username": {
                              "description": "plain text username to fetch with",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "usernameFrom": {
                              "additionalProperties": false,
                              "description": "external username to fetch with",
                              "properties": {
                                "configMapKeyRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "key": {
                                      "type": "string"
                                    },
                                    "name": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "optional": {
                                      "type": [
                                        "boolean",
                                        "null"
                                      ]
                                    }
                                  },
                                  "required": [
                                    "key"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                },
                                "fieldRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "apiVersion": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "fieldPath": {
                                      "type": "string"
                                    }
                                  },
                                  "required": [
                                    "fieldPath"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                },
                                "resourceFieldRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "containerName": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "divisor": {
                                      "oneOf": [
                                        {
                                          "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                          "type": "string"
                                        },
                                        {
                                          "type": "integer"
                                        },
                                        {
                                          "type": "null"
                                        }
                                      ],
                                      "x-kubernetes-int-or-string": true
                                    },
                                    "resource": {
                                      "type": "string"
                                    }
                                  },
                                  "required": [
                                    "resource"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                },
                                "secretKeyRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "key": {
                                      "type": "string"
                                    },
                                    "name": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "optional": {
                                      "type": [
                                        "boolean",
                                        "null"
                                      ]
                                    }
                                  },
                                  "required": [
                                    "key"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                }
                              },
                              "type": [
                                "object",
                                "null"
                              ]
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "tarball": {
                          "description": "tarballs to unpack",
                          "items": {
                            "additionalProperties": false,
                            "properties": {
                              "mount": {
                                "description": "should it mount a new volume there",
                                "type": [
                                  "boolean",
                                  "null"
                                ]
                              },
                              "path": {
                                "description": "path where the tarball should be extracted",
                                "type": "string"
                              },
                              "url": {
                                "description": "url for the tarball to extract",
                                "type": "string"
                              }
                            },
                            "required": [
                              "path",
                              "url"
                            ],
                            "type": "object"
                          },
                          "type": [
                            "array",
                            "null"
                          ]
                        }
                      },
                      "type": [
                        "object",
                        "null"
                      ]
                    },
                    "count": {
                      "description": "static number of sharded instances to spawn",
                      "oneOf": [
                        {
                          "type": "string"
                        },
                        {
                          "type": "integer"
                        },
                        {
                          "type": "null"
                        }
                      ],
                      "x-kubernetes-int-or-string": true
                    },
                    "description": {
                      "description": "service description to display",
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "env": {
                      "description": "environment variables to append to the container",
                      "items": {
                        "additionalProperties": false,
                        "description": "EnvVar represents an environment variable present in a Container.",
                        "properties": {
                          "name": {
                            "description": "Name of the environment variable. Must be a C_IDENTIFIER.",
                            "type": "string"
                          },
                          "value": {
                            "description": "Variable references $(VAR_NAME) are expanded\nusing the previously defined environment variables in the container and\nany service environment variables. If a variable cannot be resolved,\nthe reference in the input string will be unchanged. Double $$ are reduced\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e.\n\"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\".\nEscaped references will never be expanded, regardless of whether the variable\nexists or not.\nDefaults to \"\".",
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "valueFrom": {
                            "additionalProperties": false,
                            "description": "Source for the environment variable's value. Cannot be used if value is not empty.",
                            "properties": {
                              "configMapKeyRef": {
                                "additionalProperties": false,
                                "properties": {
                                  "key": {
                                    "type": "string"
                                  },
                                  "name": {
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  },
                                  "optional": {
                                    "type": [
                                      "boolean",
                                      "null"
                                    ]
                                  }
                                },
                                "required": [
                                  "key"
                                ],
                                "type": [
                                  "object",
                                  "null"
                                ],
                                "x-kubernetes-map-type": "atomic"
                              },
                              "fieldRef": {
                                "additionalProperties": false,
                                "properties": {
                                  "apiVersion": {
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  },
                                  "fieldPath": {
                                    "type": "string"
                                  }
                                },
                                "required": [
                                  "fieldPath"
                                ],
                                "type": [
                                  "object",
                                  "null"
                                ],
                                "x-kubernetes-map-type": "atomic"
                              },
                              "resourceFieldRef": {
                                "additionalProperties": false,
                                "properties": {
                                  "containerName": {
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  },
                                  "divisor": {
                                    "oneOf": [
                                      {
                                        "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                        "type": "string"
                                      },
                                      {
                                        "type": "integer"
                                      },
                                      {
                                        "type": "null"
                                      }
                                    ],
                                    "x-kubernetes-int-or-string": true
                                  },
                                  "resource": {
                                    "type": "string"
                                  }
                                },
                                "required": [
                                  "resource"
                                ],
                                "type": [
                                  "object",
                                  "null"
                                ],
                                "x-kubernetes-map-type": "atomic"
                              },
                              "secretKeyRef": {
                                "additionalProperties": false,
                                "properties": {
                                  "key": {
                                    "type": "string"
                                  },
                                  "name": {
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  },
                                  "optional": {
                                    "type": [
                                      "boolean",
                                      "null"
                                    ]
                                  }
                                },
                                "required": [
                                  "key"
                                ],
                                "type": [
                                  "object",
                                  "null"
                                ],
                                "x-kubernetes-map-type": "atomic"
                              }
                            },
                            "type": [
                              "object",
                              "null"
                            ]
                          }
                        },
                        "required": [
                          "name"
                        ],
                        "type": "object"
                      },
                      "type": [
                        "array",
                        "null"
                      ]
                    },
                    "envFrom": {
                      "description": "external environment variables to append to the container",
                      "items": {
                        "additionalProperties": false,
                        "description": "EnvFromSource represents the source of a set of ConfigMaps",
                        "properties": {
                          "configMapRef": {
                            "additionalProperties": false,
                            "description": "The ConfigMap to select from",
                            "properties": {
                              "name": {
                                "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "optional": {
                                "description": "Specify whether the ConfigMap must be defined",
                                "type": [
                                  "boolean",
                                  "null"
                                ]
                              }
                            },
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          },
                          "prefix": {
                            "description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.",
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "secretRef": {
                            "additionalProperties": false,
                            "description": "The Secret to select from",
                            "properties": {
                              "name": {
                                "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "optional": {
                                "description": "Specify whether the Secret must be defined",
                                "type": [
                                  "boolean",
                                  "null"
                                ]
                              }
                            },
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          }
                        },
                        "type": "object"
                      },
                      "type": [
                        "array",
                        "null"
                      ]
                    },
                    "image": {
                      "description": "image to be used for the container",
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "imagePullPolicy": {
                      "description": "pulling policy for the image",
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "logs": {
                      "description": "should save logs for the service (false if not specified)",
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "matrix": {
                      "description": "matrix of parameters to spawn instances (static)",
                      "type": [
                        "object",
                        "null"
                      ],
                      "x-kubernetes-preserve-unknown-fields": true
                    },
                    "maxCount": {
                      "description": "dynamic number of sharded instances to spawn - it will be lowered if there is not enough sharded values",
                      "oneOf": [
                        {
                          "type": "string"
                        },
                        {
                          "type": "integer"
                        },
                        {
                          "type": "null"
                        }
                      ],
                      "x-kubernetes-int-or-string": true
                    },
                    "pod": {
                      "additionalProperties": false,
                      "description": "configuration for the scheduled pod",
                      "properties": {
                        "activeDeadlineSeconds": {
                          "description": "duration in seconds the pod may be active on the node",
                          "format": "int64",
                          "type": [
                            "integer",
                            "null"
                          ]
                        },
                        "affinity": {
                          "x-kubernetes-preserve-unknown-fields": true
                        },
                        "annotations": {
                          "additionalProperties": {
                            "type": "string"
                          },
                          "description": "annotations added to the scheduled pod",
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "dnsConfig": {
                          "additionalProperties": false,
                          "properties": {
                            "nameservers": {
                              "items": {
                                "type": "string"
                              },
                              "type": [
                                "array",
                                "null"
                              ]
                            },
                            "options": {
                              "items": {
                                "additionalProperties": false,
                                "properties": {
                                  "name": {
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  },
                                  "value": {
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  }
                                },
                                "type": "object"
                              },
                              "type": [
                                "array",
                                "null"
                              ]
                            },
                            "searches": {
                              "items": {
                                "type": "string"
                              },
                              "type": [
                                "array",
                                "null"
                              ]
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "dnsPolicy": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "hostAliases": {
                          "items": {
                            "additionalProperties": false,
                            "properties": {
                              "hostnames": {
                                "items": {
                                  "type": "string"
                                },
                                "type": [
                                  "array",
                                  "null"
                                ]
                              },
                              "ip": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              }
                            },
                            "type": "object"
                          },
                          "type": [
                            "array",
                            "null"
                          ]
                        },
                        "hostname": {
                          "description": "Specifies the hostname of the Pod",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "imagePullSecrets": {
                          "description": "references to secrets with credentials for pulling the images from registry",
                          "items": {
                            "additionalProperties": false,
                            "description": "LocalObjectReference contains enough information to let you locate the\nreferenced object inside the same namespace.",
                            "properties": {
                              "name": {
                                "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                                "type": [
                                  "string",
                                  "null"
                                ]
                              }
                            },
                            "type": "object",
                            "x-kubernetes-map-type": "atomic"
                          },
                          "type": [
                            "array",
                            "null"
                          ]
                        },
                        "labels": {
                          "additionalProperties": {
                            "type": "string"
                          },
                          "description": "labels added to the scheduled pod",
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "nodeName": {
                          "description": "NodeName is a request to schedule this pod onto a specific node.",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "nodeSelector": {
                          "additionalProperties": {
                            "type": "string"
                          },
                          "description": "node selector to define on which node the pod should land",
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "preemptionPolicy": {
                          "description": "PreemptionPolicy is the Policy for preempting pods with lower priority.",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "priority": {
                          "description": "The priority value. Various system components use this field to find the priority of the pod.",
                          "format": "int32",
                          "type": [
                            "integer",
                            "null"
                          ]
                        },
                        "priorityClassName": {
                          "description": "If specified, indicates the pod's priority.",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "resourceClaims": {
                          "items": {
                            "additionalProperties": false,
                            "properties": {
                              "name": {
                                "type": "string"
                              },
                              "source": {
                                "additionalProperties": false,
                                "properties": {
                                  "resourceClaimName": {
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  },
                                  "resourceClaimTemplateName": {
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  }
                                },
                                "type": [
                                  "object",
                                  "null"
                                ]
                              }
                            },
                            "required": [
                              "name"
                            ],
                            "type": "object"
                          },
                          "type": [
                            "array",
                            "null"
                          ]
                        },
                        "schedulingGates": {
                          "items": {
                            "additionalProperties": false,
                            "properties": {
                              "name": {
                                "type": "string"
                              }
                            },
                            "required": [
                              "name"
                            ],
                            "type": "object"
                          },
                          "type": [
                            "array",
                            "null"
                          ]
                        },
                        "securityContext": {
                          "additionalProperties": false,
                          "properties": {
                            "fsGroup": {
                              "format": "int64",
                              "type": [
                                "integer",
                                "null"
                              ]
                            },
                            "fsGroupChangePolicy": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "runAsGroup": {
                              "format": "int64",
                              "type": [
                                "integer",
                                "null"
                              ]
                            },
                            "runAsNonRoot": {
                              "type": [
                                "boolean",
                                "null"
                              ]
                            },
                            "runAsUser": {
                              "format": "int64",
                              "type": [
                                "integer",
                                "null"
                              ]
                            },
                            "seLinuxOptions": {
                              "additionalProperties": false,
                              "properties": {
                                "level": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "role": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "type": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "user": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                }
                              },
                              "type": [
                                "object",
                                "null"
                              ]
                            },
                            "seccompProfile": {
                              "additionalProperties": false,
                              "properties": {
                                "localhostProfile": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "type": {
                                  "type": "string"
                                }
                              },
                              "required": [
                                "type"
                              ],
                              "type": [
                                "object",
                                "null"
                              ]
                            },
                            "supplementalGroups": {
                              "items": {
                                "format": "int64",
                                "type": "integer"
                              },
                              "type": [
                                "array",
                                "null"
                              ]
                            },
                            "sysctls": {
                              "items": {
                                "additionalProperties": false,
                                "properties": {
                                  "name": {
                                    "type": "string"
                                  },
                                  "value": {
                                    "type": "string"
                                  }
                                },
                                "required": [
                                  "name",
                                  "value"
                                ],
                                "type": "object"
                              },
                              "type": [
                                "array",
                                "null"
                              ]
                            },
                            "windowsOptions": {
                              "additionalProperties": false,
                              "properties": {
                                "gmsaCredentialSpec": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "gmsaCredentialSpecName": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "hostProcess": {
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                },
                                "runAsUserName": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                }
                              },
                              "type": [
                                "object",
                                "null"
                              ]
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "serviceAccountName": {
                          "description": "default service account name for the scheduled pod",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "subdomain": {
                          "description": "If specified, the fully qualified Pod hostname will be \"\u003chostname\u003e.\u003csubdomain\u003e.\u003cpod namespace\u003e.svc.\u003ccluster domain\u003e\".",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "tolerations": {
                          "items": {
                            "additionalProperties": false,
                            "properties": {
                              "effect": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "key": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "operator": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "tolerationSeconds": {
                                "format": "int64",
                                "type": [
                                  "integer",
                                  "null"
                                ]
                              },
                              "value": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              }
                            },
                            "type": "object"
                          },
                          "type": [
                            "array",
                            "null"
                          ]
                        },
                        "topologySpreadConstraints": {
                          "x-kubernetes-preserve-unknown-fields": true
                        },
                        "volumes": {
                          "x-kubernetes-preserve-unknown-fields": true
                        }
                      },
                      "type": [
                        "object",
                        "null"
                      ]
                    },
                    "readinessProbe": {
                      "additionalProperties": false,
                      "description": "Probe to check if the service has started correctly",
                      "properties": {
                        "exec": {
                          "additionalProperties": false,
                          "description": "Exec specifies the action to take.",
                          "properties": {
                            "command": {
                              "description": "Command is the command line to execute inside the container, the working directory for the\ncommand  is root ('/') in the container's filesystem. The command is simply exec'd, it is\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\na shell, you need to explicitly call out to that shell.\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.",
                              "items": {
                                "type": "string"
                              },
                              "type": [
                                "array",
                                "null"
                              ]
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "failureThreshold": {
                          "description": "Minimum consecutive failures for the probe to be considered failed after having succeeded.\nDefaults to 3. Minimum value is 1.",
                          "format": "int32",
                          "type": [
                            "integer",
                            "null"
                          ]
                        },
                        "grpc": {
                          "additionalProperties": false,
                          "description": "GRPC specifies an action involving a GRPC port.",
                          "properties": {
                            "port": {
                              "description": "Port number of the gRPC service. Number must be in the range 1 to 65535.",
                              "format": "int32",
                              "type": "integer"
                            },
                            "service": {
                              "description": "Service is the name of the service to place in the gRPC HealthCheckRequest\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\n\n\nIf this is not specified, the default behavior is defined by gRPC.",
                              "type": [
                                "string",
                                "null"
                              ]
                            }
                          },
                          "required": [
                            "port"
                          ],
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "httpGet": {
                          "additionalProperties": false,
                          "description": "HTTPGet specifies the http request to perform.",
                          "properties": {
                            "host": {
                              "description": "Host name to connect to, defaults to the pod IP. You probably want to set\n\"Host\" in httpHeaders instead.",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "httpHeaders": {
                              "description": "Custom headers to set in the request. HTTP allows repeated headers.",
                              "items": {
                                "additionalProperties": false,
                                "description": "HTTPHeader describes a custom header to be used in HTTP probes",
                                "properties": {
                                  "name": {
                                    "description": "The header field name.\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.",
                                    "type": "string"
                                  },
                                  "value": {
                                    "description": "The header field value",
                                    "type": "string"
                                  }
                                },
                                "required": [
                                  "name",
                                  "value"
                                ],
                                "type": "object"
                              },
                              "type": [
                                "array",
                                "null"
                              ]
                            },
                            "path": {
                              "description": "Path to access on the HTTP server.",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "port": {
                              "description": "Name or number of the port to access on the container.\nNumber must be in the range 1 to 65535.\nName must be an IANA_SVC_NAME.",
                              "oneOf": [
                                {
                                  "type": "string"
                                },
                                {
                                  "type": "integer"
                                }
                              ],
                              "x-kubernetes-int-or-string": true
                            },
                            "scheme": {
                              "description": "Scheme to use for connecting to the host.\nDefaults to HTTP.",
                              "type": [
                                "string",
                                "null"
                              ]
                            }
                          },
                          "required": [
                            "port"
                          ],
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "initialDelaySeconds": {
                          "description": "Number of seconds after the container has started before liveness probes are initiated.\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes",
                          "format": "int32",
                          "type": [
                            "integer",
                            "null"
                          ]
                        },
                        "periodSeconds": {
                          "description": "How often (in seconds) to perform the probe.\nDefault to 10 seconds. Minimum value is 1.",
                          "format": "int32",
                          "type": [
                            "integer",
                            "null"
                          ]
                        },
                        "successThreshold": {
                          "description": "Minimum consecutive successes for the probe to be considered successful after having failed.\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.",
                          "format": "int32",
                          "type": [
                            "integer",
                            "null"
                          ]
                        },
                        "tcpSocket": {
                          "additionalProperties": false,
                          "description": "TCPSocket specifies an action involving a TCP port.",
                          "properties": {
                            "host": {
                              "description": "Optional: Host name to connect to, defaults to the pod IP.",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "port": {
                              "description": "Number or name of the port to access on the container.\nNumber must be in the range 1 to 65535.\nName must be an IANA_SVC_NAME.",
                              "oneOf": [
                                {
                                  "type": "string"
                                },
                                {
                                  "type": "integer"
                                }
                              ],
                              "x-kubernetes-int-or-string": true
                            }
                          },
                          "required": [
                            "port"
                          ],
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "terminationGracePeriodSeconds": {
                          "description": "Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\nThe grace period is the duration in seconds after the processes running in the pod are sent\na termination signal and the time when the processes are forcibly halted with a kill signal.\nSet this value longer than the expected cleanup time for your process.\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\nvalue overrides the value provided by the pod spec.\nValue must be non-negative integer. The value zero indicates stop immediately via\nthe kill signal (no opportunity to shut down).\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.",
                          "format": "int64",
                          "type": [
                            "integer",
                            "null"
                          ]
                        },
                        "timeoutSeconds": {
                          "description": "Number of seconds after which the probe times out.\nDefaults to 1 second. Minimum value is 1.\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes",
                          "format": "int32",
                          "type": [
                            "integer",
                            "null"
                          ]
                        }
                      },
                      "type": [
                        "object",
                        "null"
                      ]
                    },
                    "resources": {
                      "additionalProperties": false,
                      "description": "expected resources for the container",
                      "properties": {
                        "limits": {
                          "additionalProperties": {
                            "oneOf": [
                              {
                                "type": "string"
                              },
                              {
                                "type": "integer"
                              }
                            ],
                            "x-kubernetes-int-or-string": true
                          },
                          "description": "resource limits for the container",
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "requests": {
                          "additionalProperties": {
                            "oneOf": [
                              {
                                "type": "string"
                              },
                              {
                                "type": "integer"
                              }
                            ],
                            "x-kubernetes-int-or-string": true
                          },
                          "description": "resource requests for the container",
                          "type": [
                            "object",
                            "null"
                          ]
                        }
                      },
                      "type": [
                        "object",
                        "null"
                      ]
                    },
                    "restartPolicy": {
                      "description": "Restart policy for the main container in the pod. One of OnFailure or Never.",
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "securityContext": {
                      "additionalProperties": false,
                      "properties": {
                        "allowPrivilegeEscalation": {
                          "type": [
                            "boolean",
                            "null"
                          ]
                        },
                        "capabilities": {
                          "additionalProperties": false,
                          "properties": {
                            "add": {
                              "items": {
                                "type": "string"
                              },
                              "type": [
                                "array",
                                "null"
                              ]
                            },
                            "drop": {
                              "items": {
                                "type": "string"
                              },
                              "type": [
                                "array",
                                "null"
                              ]
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "privileged": {
                          "type": [
                            "boolean",
                            "null"
                          ]
                        },
                        "procMount": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "readOnlyRootFilesystem": {
                          "type": [
                            "boolean",
                            "null"
                          ]
                        },
                        "runAsGroup": {
                          "format": "int64",
                          "type": [
                            "integer",
                            "null"
                          ]
                        },
                        "runAsNonRoot": {
                          "type": [
                            "boolean",
                            "null"
                          ]
                        },
                        "runAsUser": {
                          "format": "int64",
                          "type": [
                            "integer",
                            "null"
                          ]
                        },
                        "seLinuxOptions": {
                          "additionalProperties": false,
                          "properties": {
                            "level": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "role": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "type": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "user": {
                              "type": [
                                "string",
                                "null"
                              ]
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "seccompProfile": {
                          "additionalProperties": false,
                          "properties": {
                            "localhostProfile": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "type": {
                              "type": "string"
                            }
                          },
                          "required": [
                            "type"
                          ],
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "windowsOptions": {
                          "additionalProperties": false,
                          "properties": {
                            "gmsaCredentialSpec": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "gmsaCredentialSpecName": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "hostProcess": {
                              "type": [
                                "boolean",
                                "null"
                              ]
                            },
                            "runAsUserName": {
                              "type": [
                                "string",
                                "null"
                              ]
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ]
                        }
                      },
                      "type": [
                        "object",
                        "null"
                      ]
                    },
                    "shards": {
                      "description": "parameters that should be distributed across sharded instances",
                      "type": [
                        "object",
                        "null"
                      ],
                      "x-kubernetes-preserve-unknown-fields": true
                    },
                    "shell": {
                      "description": "script to run in a default shell for the container",
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "timeout": {
                      "description": "maximum time until reaching readiness",
                      "pattern": "^((0|[1-9][0-9]*)h)?((0|[1-9][0-9]*)m)?((0|[1-9][0-9]*)s)?((0|[1-9][0-9]*)ms)?$",
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "transfer": {
                      "description": "instructions for transferring files",
                      "items": {
                        "required": [
                          "from"
                        ],
                        "type": "object",
                        "x-kubernetes-preserve-unknown-fields": true
                      },
                      "type": [
                        "array",
                        "null"
                      ]
                    },
                    "volumeMounts": {
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "mountPath": {
                            "type": "string"
                          },
                          "mountPropagation": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "name": {
                            "type": "string"
                          },
                          "readOnly": {
                            "type": [
                              "boolean",
                              "null"
                            ]
                          },
                          "subPath": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "subPathExpr": {
                            "type": [
                              "string",
                              "null"
                            ]
                          }
                        },
                        "required": [
                          "mountPath",
                          "name"
                        ],
                        "type": "object"
                      },
                      "type": [
                        "array",
                        "null"
                      ]
                    },
                    "workingDir": {
                      "description": "override default working directory in the image (empty string to default WORKDIR for the image)",
                      "type": [
                        "string",
                        "null"
                      ]
                    }
                  },
                  "type": "object"
                },
                "description": "list of accompanying services to start",
                "type": [
                  "object",
                  "null"
                ]
              },
              "setup": {
                "description": "steps to run before other operations in this step",
                "x-kubernetes-preserve-unknown-fields": true
              },
              "shell": {
                "description": "script to run in a default shell for the container",
                "type": [
                  "string",
                  "null"
                ]
              },
              "steps": {
                "description": "sub-steps to run",
                "x-kubernetes-preserve-unknown-fields": true
              },
              "timeout": {
                "description": "maximum time this step may take",
                "pattern": "^((0|[1-9][0-9]*)h)?((0|[1-9][0-9]*)m)?((0|[1-9][0-9]*)s)?((0|[1-9][0-9]*)ms)?$",
                "type": [
                  "string",
                  "null"
                ]
              },
              "workingDir": {
                "description": "working directory to use for this step",
                "type": [
                  "string",
                  "null"
                ]
              }
            },
            "type": "object"
          },
          "type": [
            "array",
            "null"
          ]
        },
        "config": {
          "additionalProperties": {
            "additionalProperties": false,
            "properties": {
              "default": {
                "description": "default value - if not provided, the parameter is required",
                "oneOf": [
                  {
                    "type": "string"
                  },
                  {
                    "type": "integer"
                  },
                  {
                    "type": "null"
                  }
                ],
                "x-kubernetes-int-or-string": true
              },
              "description": {
                "description": "parameter description",
                "type": [
                  "string",
                  "null"
                ]
              },
              "enum": {
                "description": "the list of allowed values, when limited",
                "items": {
                  "type": "string"
                },
                "type": [
                  "array",
                  "null"
                ]
              },
              "example": {
                "description": "exemplary value",
                "oneOf": [
                  {
                    "type": "string"
                  },
                  {
                    "type": "integer"
                  },
                  {
                    "type": "null"
                  }
                ],
                "x-kubernetes-int-or-string": true
              },
              "exclusiveMaximum": {
                "description": "maximum value for the number (exclusive)",
                "format": "int64",
                "type": [
                  "integer",
                  "null"
                ]
              },
              "exclusiveMinimum": {
                "description": "minimum value for the number (exclusive)",
                "format": "int64",
                "type": [
                  "integer",
                  "null"
                ]
              },
              "format": {
                "description": "predefined format for the string",
                "type": [
                  "string",
                  "null"
                ]
              },
              "maxLength": {
                "description": "maximum length for the string",
                "format": "int64",
                "type": [
                  "integer",
                  "null"
                ]
              },
              "maximum": {
                "description": "maximum value for the number (inclusive)",
                "format": "int64",
                "type": [
                  "integer",
                  "null"
                ]
              },
              "minLength": {
                "description": "minimum length for the string",
                "format": "int64",
                "type": [
                  "integer",
                  "null"
                ]
              },
              "minimum": {
                "description": "minimum value for the number (inclusive)",
                "format": "int64",
                "type": [
                  "integer",
                  "null"
                ]
              },
              "multipleOf": {
                "description": "the number needs to be multiple of this value",
                "format": "int64",
                "type": [
                  "integer",
                  "null"
                ]
              },
              "pattern": {
                "description": "regular expression to match",
                "type": [
                  "string",
                  "null"
                ]
              },
              "type": {
                "default": "string",
                "description": "type of the parameter",
                "enum": [
                  "string",
                  "integer",
                  "number",
                  "boolean"
                ],
                "type": [
                  "string",
                  "null"
                ]
              }
            },
            "type": "object"
          },
          "description": "make the instance configurable with some input data for scheduling it",
          "type": [
            "object",
            "null"
          ]
        },
        "container": {
          "additionalProperties": false,
          "description": "defaults for the containers for all the TestWorkflow steps",
          "properties": {
            "args": {
              "description": "override default command in the image (empty string to default CMD of the image)",
              "items": {
                "type": "string"
              },
              "type": [
                "array",
                "null"
              ]
            },
            "command": {
              "description": "override default command in the image (empty string to default ENTRYPOINT of the image)",
              "items": {
                "type": "string"
              },
              "type": [
                "array",
                "null"
              ]
            },
            "env": {
              "description": "environment variables to append to the container",
              "items": {
                "additionalProperties": false,
                "description": "EnvVar represents an environment variable present in a Container.",
                "properties": {
                  "name": {
                    "description": "Name of the environment variable. Must be a C_IDENTIFIER.",
                    "type": "string"
                  },
                  "value": {
                    "description": "Variable references $(VAR_NAME) are expanded\nusing the previously defined environment variables in the container and\nany service environment variables. If a variable cannot be resolved,\nthe reference in the input string will be unchanged. Double $$ are reduced\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e.\n\"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\".\nEscaped references will never be expanded, regardless of whether the variable\nexists or not.\nDefaults to \"\".",
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "valueFrom": {
                    "additionalProperties": false,
                    "description": "Source for the environment variable's value. Cannot be used if value is not empty.",
                    "properties": {
                      "configMapKeyRef": {
                        "additionalProperties": false,
                        "properties": {
                          "key": {
                            "type": "string"
                          },
                          "name": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "optional": {
                            "type": [
                              "boolean",
                              "null"
                            ]
                          }
                        },
                        "required": [
                          "key"
                        ],
                        "type": [
                          "object",
                          "null"
                        ],
                        "x-kubernetes-map-type": "atomic"
                      },
                      "fieldRef": {
                        "additionalProperties": false,
                        "properties": {
                          "apiVersion": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "fieldPath": {
                            "type": "string"
                          }
                        },
                        "required": [
                          "fieldPath"
                        ],
                        "type": [
                          "object",
                          "null"
                        ],
                        "x-kubernetes-map-type": "atomic"
                      },
                      "resourceFieldRef": {
                        "additionalProperties": false,
                        "properties": {
                          "containerName": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "divisor": {
                            "oneOf": [
                              {
                                "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                "type": "string"
                              },
                              {
                                "type": "integer"
                              },
                              {
                                "type": "null"
                              }
                            ],
                            "x-kubernetes-int-or-string": true
                          },
                          "resource": {
                            "type": "string"
                          }
                        },
                        "required": [
                          "resource"
                        ],
                        "type": [
                          "object",
                          "null"
                        ],
                        "x-kubernetes-map-type": "atomic"
                      },
                      "secretKeyRef": {
                        "additionalProperties": false,
                        "properties": {
                          "key": {
                            "type": "string"
                          },
                          "name": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "optional": {
                            "type": [
                              "boolean",
                              "null"
                            ]
                          }
                        },
                        "required": [
                          "key"
                        ],
                        "type": [
                          "object",
                          "null"
                        ],
                        "x-kubernetes-map-type": "atomic"
                      }
                    },
                    "type": [
                      "object",
                      "null"
                    ]
                  }
                },
                "required": [
                  "name"
                ],
                "type": "object"
              },
              "type": [
                "array",
                "null"
              ]
            },
            "envFrom": {
              "description": "external environment variables to append to the container",
              "items": {
                "additionalProperties": false,
                "description": "EnvFromSource represents the source of a set of ConfigMaps",
                "properties": {
                  "configMapRef": {
                    "additionalProperties": false,
                    "description": "The ConfigMap to select from",
                    "properties": {
                      "name": {
                        "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "optional": {
                        "description": "Specify whether the ConfigMap must be defined",
                        "type": [
                          "boolean",
                          "null"
                        ]
                      }
                    },
                    "type": [
                      "object",
                      "null"
                    ],
                    "x-kubernetes-map-type": "atomic"
                  },
                  "prefix": {
                    "description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.",
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "secretRef": {
                    "additionalProperties": false,
                    "description": "The Secret to select from",
                    "properties": {
                      "name": {
                        "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "optional": {
                        "description": "Specify whether the Secret must be defined",
                        "type": [
                          "boolean",
                          "null"
                        ]
                      }
                    },
                    "type": [
                      "object",
                      "null"
                    ],
                    "x-kubernetes-map-type": "atomic"
                  }
                },
                "type": "object"
              },
              "type": [
                "array",
                "null"
              ]
            },
            "image": {
              "description": "image to be used for the container",
              "type": [
                "string",
                "null"
              ]
            },
            "imagePullPolicy": {
              "description": "pulling policy for the image",
              "type": [
                "string",
                "null"
              ]
            },
            "resources": {
              "additionalProperties": false,
              "description": "expected resources for the container",
              "properties": {
                "limits": {
                  "additionalProperties": {
                    "oneOf": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "integer"
                      }
                    ],
                    "x-kubernetes-int-or-string": true
                  },
                  "description": "resource limits for the container",
                  "type": [
                    "object",
                    "null"
                  ]
                },
                "requests": {
                  "additionalProperties": {
                    "oneOf": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "integer"
                      }
                    ],
                    "x-kubernetes-int-or-string": true
                  },
                  "description": "resource requests for the container",
                  "type": [
                    "object",
                    "null"
                  ]
                }
              },
              "type": [
                "object",
                "null"
              ]
            },
            "securityContext": {
              "additionalProperties": false,
              "properties": {
                "allowPrivilegeEscalation": {
                  "type": [
                    "boolean",
                    "null"
                  ]
                },
                "capabilities": {
                  "additionalProperties": false,
                  "properties": {
                    "add": {
                      "items": {
                        "type": "string"
                      },
                      "type": [
                        "array",
                        "null"
                      ]
                    },
                    "drop": {
                      "items": {
                        "type": "string"
                      },
                      "type": [
                        "array",
                        "null"
                      ]
                    }
                  },
                  "type": [
                    "object",
                    "null"
                  ]
                },
                "privileged": {
                  "type": [
                    "boolean",
                    "null"
                  ]
                },
                "procMount": {
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "readOnlyRootFilesystem": {
                  "type": [
                    "boolean",
                    "null"
                  ]
                },
                "runAsGroup": {
                  "format": "int64",
                  "type": [
                    "integer",
                    "null"
                  ]
                },
                "runAsNonRoot": {
                  "type": [
                    "boolean",
                    "null"
                  ]
                },
                "runAsUser": {
                  "format": "int64",
                  "type": [
                    "integer",
                    "null"
                  ]
                },
                "seLinuxOptions": {
                  "additionalProperties": false,
                  "properties": {
                    "level": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "role": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "type": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "user": {
                      "type": [
                        "string",
                        "null"
                      ]
                    }
                  },
                  "type": [
                    "object",
                    "null"
                  ]
                },
                "seccompProfile": {
                  "additionalProperties": false,
                  "properties": {
                    "localhostProfile": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "type": {
                      "type": "string"
                    }
                  },
                  "required": [
                    "type"
                  ],
                  "type": [
                    "object",
                    "null"
                  ]
                },
                "windowsOptions": {
                  "additionalProperties": false,
                  "properties": {
                    "gmsaCredentialSpec": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "gmsaCredentialSpecName": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "hostProcess": {
                      "type": [
                        "boolean",
                        "null"
                      ]
                    },
                    "runAsUserName": {
                      "type": [
                        "string",
                        "null"
                      ]
                    }
                  },
                  "type": [
                    "object",
                    "null"
                  ]
                }
              },
              "type": [
                "object",
                "null"
              ]
            },
            "volumeMounts": {
              "items": {
                "additionalProperties": false,
                "properties": {
                  "mountPath": {
                    "type": "string"
                  },
                  "mountPropagation": {
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "name": {
                    "type": "string"
                  },
                  "readOnly": {
                    "type": [
                      "boolean",
                      "null"
                    ]
                  },
                  "subPath": {
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "subPathExpr": {
                    "type": [
                      "string",
                      "null"
                    ]
                  }
                },
                "required": [
                  "mountPath",
                  "name"
                ],
                "type": "object"
              },
              "type": [
                "array",
                "null"
              ]
            },
            "workingDir": {
              "description": "override default working directory in the image (empty string to default WORKDIR for the image)",
              "type": [
                "string",
                "null"
              ]
            }
          },
          "type": [
            "object",
            "null"
          ]
        },
        "content": {
          "additionalProperties": false,
          "description": "global content that should be fetched into all containers",
          "properties": {
            "files": {
              "description": "files to load",
              "items": {
                "additionalProperties": false,
                "properties": {
                  "content": {
                    "description": "plain-text content to put inside",
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "contentFrom": {
                    "additionalProperties": false,
                    "description": "external source to use",
                    "properties": {
                      "configMapKeyRef": {
                        "additionalProperties": false,
                        "properties": {
                          "key": {
                            "type": "string"
                          },
                          "name": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "optional": {
                            "type": [
                              "boolean",
                              "null"
                            ]
                          }
                        },
                        "required": [
                          "key"
                        ],
                        "type": [
                          "object",
                          "null"
                        ],
                        "x-kubernetes-map-type": "atomic"
                      },
                      "fieldRef": {
                        "additionalProperties": false,
                        "properties": {
                          "apiVersion": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "fieldPath": {
                            "type": "string"
                          }
                        },
                        "required": [
                          "fieldPath"
                        ],
                        "type": [
                          "object",
                          "null"
                        ],
                        "x-kubernetes-map-type": "atomic"
                      },
                      "resourceFieldRef": {
                        "additionalProperties": false,
                        "properties": {
                          "containerName": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "divisor": {
                            "oneOf": [
                              {
                                "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                "type": "string"
                              },
                              {
                                "type": "integer"
                              },
                              {
                                "type": "null"
                              }
                            ],
                            "x-kubernetes-int-or-string": true
                          },
                          "resource": {
                            "type": "string"
                          }
                        },
                        "required": [
                          "resource"
                        ],
                        "type": [
                          "object",
                          "null"
                        ],
                        "x-kubernetes-map-type": "atomic"
                      },
                      "secretKeyRef": {
                        "additionalProperties": false,
                        "properties": {
                          "key": {
                            "type": "string"
                          },
                          "name": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "optional": {
                            "type": [
                              "boolean",
                              "null"
                            ]
                          }
                        },
                        "required": [
                          "key"
                        ],
                        "type": [
                          "object",
                          "null"
                        ],
                        "x-kubernetes-map-type": "atomic"
                      }
                    },
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "mode": {
                    "description": "mode to use for the file",
                    "format": "int32",
                    "type": [
                      "integer",
                      "null"
                    ]
                  },
                  "path": {
                    "description": "path where the file should be accessible at",
                    "minLength": 1,
                    "type": "string"
                  }
                },
                "required": [
                  "path"
                ],
                "type": "object"
              },
              "type": [
                "array",
                "null"
              ]
            },
            "git": {
              "additionalProperties": false,
              "description": "git repository details",
              "properties": {
                "authType": {
                  "description": "authorization type for the credentials",
                  "enum": [
                    "basic",
                    "header"
                  ],
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "mountPath": {
                  "description": "where to mount the fetched repository contents (defaults to \"repo\" directory in the data volume)",
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "paths": {
                  "description": "paths to fetch for the sparse checkout",
                  "items": {
                    "type": "string"
                  },
                  "type": [
                    "array",
                    "null"
                  ]
                },
                "revision": {
                  "description": "branch, commit or a tag name to fetch",
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "sshKey": {
                  "description": "plain text SSH private key to fetch with",
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "sshKeyFrom": {
                  "additionalProperties": false,
                  "description": "external SSH private key to fetch with",
                  "properties": {
                    "configMapKeyRef": {
                      "additionalProperties": false,
                      "properties": {
                        "key": {
                          "type": "string"
                        },
                        "name": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "optional": {
                          "type": [
                            "boolean",
                            "null"
                          ]
                        }
                      },
                      "required": [
                        "key"
                      ],
                      "type": [
                        "object",
                        "null"
                      ],
                      "x-kubernetes-map-type": "atomic"
                    },
                    "fieldRef": {
                      "additionalProperties": false,
                      "properties": {
                        "apiVersion": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "fieldPath": {
                          "type": "string"
                        }
                      },
                      "required": [
                        "fieldPath"
                      ],
                      "type": [
                        "object",
                        "null"
                      ],
                      "x-kubernetes-map-type": "atomic"
                    },
                    "resourceFieldRef": {
                      "additionalProperties": false,
                      "properties": {
                        "containerName": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "divisor": {
                          "oneOf": [
                            {
                              "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                              "type": "string"
                            },
                            {
                              "type": "integer"
                            },
                            {
                              "type": "null"
                            }
                          ],
                          "x-kubernetes-int-or-string": true
                        },
                        "resource": {
                          "type": "string"
                        }
                      },
                      "required": [
                        "resource"
                      ],
                      "type": [
                        "object",
                        "null"
                      ],
                      "x-kubernetes-map-type": "atomic"
                    },
                    "secretKeyRef": {
                      "additionalProperties": false,
                      "properties": {
                        "key": {
                          "type": "string"
                        },
                        "name": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "optional": {
                          "type": [
                            "boolean",
                            "null"
                          ]
                        }
                      },
                      "required": [
                        "key"
                      ],
                      "type": [
                        "object",
                        "null"
                      ],
                      "x-kubernetes-map-type": "atomic"
                    }
                  },
                  "type": [
                    "object",
                    "null"
                  ]
                },
                "token": {
                  "description": "plain text token to fetch with",
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "tokenFrom": {
                  "additionalProperties": false,
                  "description": "external token to fetch with",
                  "properties": {
                    "configMapKeyRef": {
                      "additionalProperties": false,
                      "properties": {
                        "key": {
                          "type": "string"
                        },
                        "name": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "optional": {
                          "type": [
                            "boolean",
                            "null"
                          ]
                        }
                      },
                      "required": [
                        "key"
                      ],
                      "type": [
                        "object",
                        "null"
                      ],
                      "x-kubernetes-map-type": "atomic"
                    },
                    "fieldRef": {
                      "additionalProperties": false,
                      "properties": {
                        "apiVersion": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "fieldPath": {
                          "type": "string"
                        }
                      },
                      "required": [
                        "fieldPath"
                      ],
                      "type": [
                        "object",
                        "null"
                      ],
                      "x-kubernetes-map-type": "atomic"
                    },
                    "resourceFieldRef": {
                      "additionalProperties": false,
                      "properties": {
                        "containerName": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "divisor": {
                          "oneOf": [
                            {
                              "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                              "type": "string"
                            },
                            {
                              "type": "integer"
                            },
                            {
                              "type": "null"
                            }
                          ],
                          "x-kubernetes-int-or-string": true
                        },
                        "resource": {
                          "type": "string"
                        }
                      },
                      "required": [
                        "resource"
                      ],
                      "type": [
                        "object",
                        "null"
                      ],
                      "x-kubernetes-map-type": "atomic"
                    },
                    "secretKeyRef": {
                      "additionalProperties": false,
                      "properties": {
                        "key": {
                          "type": "string"
                        },
                        "name": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "optional": {
                          "type": [
                            "boolean",
                            "null"
                          ]
                        }
                      },
                      "required": [
                        "key"
                      ],
                      "type": [
                        "object",
                        "null"
                      ],
                      "x-kubernetes-map-type": "atomic"
                    }
                  },
                  "type": [
                    "object",
                    "null"
                  ]
                },
                "uri": {
                  "description": "uri for the Git repository",
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "username": {
                  "description": "plain text username to fetch with",
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "usernameFrom": {
                  "additionalProperties": false,
                  "description": "external username to fetch with",
                  "properties": {
                    "configMapKeyRef": {
                      "additionalProperties": false,
                      "properties": {
                        "key": {
                          "type": "string"
                        },
                        "name": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "optional": {
                          "type": [
                            "boolean",
                            "null"
                          ]
                        }
                      },
                      "required": [
                        "key"
                      ],
                      "type": [
                        "object",
                        "null"
                      ],
                      "x-kubernetes-map-type": "atomic"
                    },
                    "fieldRef": {
                      "additionalProperties": false,
                      "properties": {
                        "apiVersion": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "fieldPath": {
                          "type": "string"
                        }
                      },
                      "required": [
                        "fieldPath"
                      ],
                      "type": [
                        "object",
                        "null"
                      ],
                      "x-kubernetes-map-type": "atomic"
                    },
                    "resourceFieldRef": {
                      "additionalProperties": false,
                      "properties": {
                        "containerName": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "divisor": {
                          "oneOf": [
                            {
                              "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                              "type": "string"
                            },
                            {
                              "type": "integer"
                            },
                            {
                              "type": "null"
                            }
                          ],
                          "x-kubernetes-int-or-string": true
                        },
                        "resource": {
                          "type": "string"
                        }
                      },
                      "required": [
                        "resource"
                      ],
                      "type": [
                        "object",
                        "null"
                      ],
                      "x-kubernetes-map-type": "atomic"
                    },
                    "secretKeyRef": {
                      "additionalProperties": false,
                      "properties": {
                        "key": {
                          "type": "string"
                        },
                        "name": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "optional": {
                          "type": [
                            "boolean",
                            "null"
                          ]
                        }
                      },
                      "required": [
                        "key"
                      ],
                      "type": [
                        "object",
                        "null"
                      ],
                      "x-kubernetes-map-type": "atomic"
                    }
                  },
                  "type": [
                    "object",
                    "null"
                  ]
                }
              },
              "type": [
                "object",
                "null"
              ]
            },
            "tarball": {
              "description": "tarballs to unpack",
              "items": {
                "additionalProperties": false,
                "properties": {
                  "mount": {
                    "description": "should it mount a new volume there",
                    "type": [
                      "boolean",
                      "null"
                    ]
                  },
                  "path": {
                    "description": "path where the tarball should be extracted",
                    "type": "string"
                  },
                  "url": {
                    "description": "url for the tarball to extract",
                    "type": "string"
                  }
                },
                "required": [
                  "path",
                  "url"
                ],
                "type": "object"
              },
              "type": [
                "array",
                "null"
              ]
            }
          },
          "type": [
            "object",
            "null"
          ]
        },
        "events": {
          "description": "events triggering execution of the test workflow",
          "items": {
            "additionalProperties": false,
            "properties": {
              "cronjob": {
                "additionalProperties": false,
                "description": "cron job configuration",
                "properties": {
                  "annotations": {
                    "additionalProperties": {
                      "type": "string"
                    },
                    "description": "annotations to attach to the cron job",
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "cron": {
                    "description": "cron schedule to run a test workflow",
                    "type": "string"
                  },
                  "labels": {
                    "additionalProperties": {
                      "type": "string"
                    },
                    "description": "labels to attach to the cron job",
                    "type": [
                      "object",
                      "null"
                    ]
                  }
                },
                "required": [
                  "cron"
                ],
                "type": [
                  "object",
                  "null"
                ]
              }
            },
            "type": "object"
          },
          "type": [
            "array",
            "null"
          ]
        },
        "job": {
          "additionalProperties": false,
          "description": "configuration for the scheduled job",
          "properties": {
            "activeDeadlineSeconds": {
              "description": "duration in seconds the job may be active on the node",
              "format": "int64",
              "type": [
                "integer",
                "null"
              ]
            },
            "annotations": {
              "additionalProperties": {
                "type": "string"
              },
              "description": "annotations added to the scheduled job",
              "type": [
                "object",
                "null"
              ]
            },
            "labels": {
              "additionalProperties": {
                "type": "string"
              },
              "description": "labels added to the scheduled job",
              "type": [
                "object",
                "null"
              ]
            },
            "namespace": {
              "description": "namespace for execution of test workflow",
              "type": [
                "string",
                "null"
              ]
            }
          },
          "type": [
            "object",
            "null"
          ]
        },
        "notifications": {
          "additionalProperties": false,
          "description": "configuration for notifications\nDeprecated: field is not used",
          "properties": {
            "disableWebhooks": {
              "type": [
                "boolean",
                "null"
              ]
            }
          },
          "type": [
            "object",
            "null"
          ]
        },
        "pod": {
          "additionalProperties": false,
          "description": "configuration for the scheduled pod",
          "properties": {
            "activeDeadlineSeconds": {
              "description": "duration in seconds the pod may be active on the node",
              "format": "int64",
              "type": [
                "integer",
                "null"
              ]
            },
            "affinity": {
              "x-kubernetes-preserve-unknown-fields": true
            },
            "annotations": {
              "additionalProperties": {
                "type": "string"
              },
              "description": "annotations added to the scheduled pod",
              "type": [
                "object",
                "null"
              ]
            },
            "dnsConfig": {
              "additionalProperties": false,
              "properties": {
                "nameservers": {
                  "items": {
                    "type": "string"
                  },
                  "type": [
                    "array",
                    "null"
                  ]
                },
                "options": {
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "name": {
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "value": {
                        "type": [
                          "string",
                          "null"
                        ]
                      }
                    },
                    "type": "object"
                  },
                  "type": [
                    "array",
                    "null"
                  ]
                },
                "searches": {
                  "items": {
                    "type": "string"
                  },
                  "type": [
                    "array",
                    "null"
                  ]
                }
              },
              "type": [
                "object",
                "null"
              ]
            },
            "dnsPolicy": {
              "type": [
                "string",
                "null"
              ]
            },
            "hostAliases": {
              "items": {
                "additionalProperties": false,
                "properties": {
                  "hostnames": {
                    "items": {
                      "type": "string"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "ip": {
                    "type": [
                      "string",
                      "null"
                    ]
                  }
                },
                "type": "object"
              },
              "type": [
                "array",
                "null"
              ]
            },
            "hostname": {
              "description": "Specifies the hostname of the Pod",
              "type": [
                "string",
                "null"
              ]
            },
            "imagePullSecrets": {
              "description": "references to secrets with credentials for pulling the images from registry",
              "items": {
                "additionalProperties": false,
                "description": "LocalObjectReference contains enough information to let you locate the\nreferenced object inside the same namespace.",
                "properties": {
                  "name": {
                    "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                    "type": [
                      "string",
                      "null"
                    ]
                  }
                },
                "type": "object",
                "x-kubernetes-map-type": "atomic"
              },
              "type": [
                "array",
                "null"
              ]
            },
            "labels": {
              "additionalProperties": {
                "type": "string"
              },
              "description": "labels added to the scheduled pod",
              "type": [
                "object",
                "null"
              ]
            },
            "nodeName": {
              "description": "NodeName is a request to schedule this pod onto a specific node.",
              "type": [
                "string",
                "null"
              ]
            },
            "nodeSelector": {
              "additionalProperties": {
                "type": "string"
              },
              "description": "node selector to define on which node the pod should land",
              "type": [
                "object",
                "null"
              ]
            },
            "preemptionPolicy": {
              "description": "PreemptionPolicy is the Policy for preempting pods with lower priority.",
              "type": [
                "string",
                "null"
              ]
            },
            "priority": {
              "description": "The priority value. Various system components use this field to find the priority of the pod.",
              "format": "int32",
              "type": [
                "integer",
                "null"
              ]
            },
            "priorityClassName": {
              "description": "If specified, indicates the pod's priority.",
              "type": [
                "string",
                "null"
              ]
            },
            "resourceClaims": {
              "items": {
                "additionalProperties": false,
                "properties": {
                  "name": {
                    "type": "string"
                  },
                  "source": {
                    "additionalProperties": false,
                    "properties": {
                      "resourceClaimName": {
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "resourceClaimTemplateName": {
                        "type": [
                          "string",
                          "null"
                        ]
                      }
                    },
                    "type": [
                      "object",
                      "null"
                    ]
                  }
                },
                "required": [
                  "name"
                ],
                "type": "object"
              },
              "type": [
                "array",
                "null"
              ]
            },
            "schedulingGates": {
              "items": {
                "additionalProperties": false,
                "properties": {
                  "name": {
                    "type": "string"
                  }
                },
                "required": [
                  "name"
                ],
                "type": "object"
              },
              "type": [
                "array",
                "null"
              ]
            },
            "securityContext": {
              "additionalProperties": false,
              "properties": {
                "fsGroup": {
                  "format": "int64",
                  "type": [
                    "integer",
                    "null"
                  ]
                },
                "fsGroupChangePolicy": {
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "runAsGroup": {
                  "format": "int64",
                  "type": [
                    "integer",
                    "null"
                  ]
                },
                "runAsNonRoot": {
                  "type": [
                    "boolean",
                    "null"
                  ]
                },
                "runAsUser": {
                  "format": "int64",
                  "type": [
                    "integer",
                    "null"
                  ]
                },
                "seLinuxOptions": {
                  "additionalProperties": false,
                  "properties": {
                    "level": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "role": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "type": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "user": {
                      "type": [
                        "string",
                        "null"
                      ]
                    }
                  },
                  "type": [
                    "object",
                    "null"
                  ]
                },
                "seccompProfile": {
                  "additionalProperties": false,
                  "properties": {
                    "localhostProfile": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "type": {
                      "type": "string"
                    }
                  },
                  "required": [
                    "type"
                  ],
                  "type": [
                    "object",
                    "null"
                  ]
                },
                "supplementalGroups": {
                  "items": {
                    "format": "int64",
                    "type": "integer"
                  },
                  "type": [
                    "array",
                    "null"
                  ]
                },
                "sysctls": {
                  "items": {
                    "additionalProperties": false,
                    "properties": {
                      "name": {
                        "type": "string"
                      },
                      "value": {
                        "type": "string"
                      }
                    },
                    "required": [
                      "name",
                      "value"
                    ],
                    "type": "object"
                  },
                  "type": [
                    "array",
                    "null"
                  ]
                },
                "windowsOptions": {
                  "additionalProperties": false,
                  "properties": {
                    "gmsaCredentialSpec": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "gmsaCredentialSpecName": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "hostProcess": {
                      "type": [
                        "boolean",
                        "null"
                      ]
                    },
                    "runAsUserName": {
                      "type": [
                        "string",
                        "null"
                      ]
                    }
                  },
                  "type": [
                    "object",
                    "null"
                  ]
                }
              },
              "type": [
                "object",
                "null"
              ]
            },
            "serviceAccountName": {
              "description": "default service account name for the scheduled pod",
              "type": [
                "string",
                "null"
              ]
            },
            "subdomain": {
              "description": "If specified, the fully qualified Pod hostname will be \"\u003chostname\u003e.\u003csubdomain\u003e.\u003cpod namespace\u003e.svc.\u003ccluster domain\u003e\".",
              "type": [
                "string",
                "null"
              ]
            },
            "tolerations": {
              "items": {
                "additionalProperties": false,
                "properties": {
                  "effect": {
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "key": {
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "operator": {
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "tolerationSeconds": {
                    "format": "int64",
                    "type": [
                      "integer",
                      "null"
                    ]
                  },
                  "value": {
                    "type": [
                      "string",
                      "null"
                    ]
                  }
                },
                "type": "object"
              },
              "type": [
                "array",
                "null"
              ]
            },
            "topologySpreadConstraints": {
              "x-kubernetes-preserve-unknown-fields": true
            },
            "volumes": {
              "x-kubernetes-preserve-unknown-fields": true
            }
          },
          "type": [
            "object",
            "null"
          ]
        },
        "services": {
          "additionalProperties": {
            "additionalProperties": false,
            "properties": {
              "args": {
                "description": "override default command in the image (empty string to default CMD of the image)",
                "items": {
                  "type": "string"
                },
                "type": [
                  "array",
                  "null"
                ]
              },
              "command": {
                "description": "override default command in the image (empty string to default ENTRYPOINT of the image)",
                "items": {
                  "type": "string"
                },
                "type": [
                  "array",
                  "null"
                ]
              },
              "content": {
                "additionalProperties": false,
                "description": "global content that should be fetched into all containers",
                "properties": {
                  "files": {
                    "description": "files to load",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "content": {
                          "description": "plain-text content to put inside",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "contentFrom": {
                          "additionalProperties": false,
                          "description": "external source to use",
                          "properties": {
                            "configMapKeyRef": {
                              "additionalProperties": false,
                              "properties": {
                                "key": {
                                  "type": "string"
                                },
                                "name": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "optional": {
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                }
                              },
                              "required": [
                                "key"
                              ],
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-map-type": "atomic"
                            },
                            "fieldRef": {
                              "additionalProperties": false,
                              "properties": {
                                "apiVersion": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "fieldPath": {
                                  "type": "string"
                                }
                              },
                              "required": [
                                "fieldPath"
                              ],
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-map-type": "atomic"
                            },
                            "resourceFieldRef": {
                              "additionalProperties": false,
                              "properties": {
                                "containerName": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "divisor": {
                                  "oneOf": [
                                    {
                                      "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                      "type": "string"
                                    },
                                    {
                                      "type": "integer"
                                    },
                                    {
                                      "type": "null"
                                    }
                                  ],
                                  "x-kubernetes-int-or-string": true
                                },
                                "resource": {
                                  "type": "string"
                                }
                              },
                              "required": [
                                "resource"
                              ],
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-map-type": "atomic"
                            },
                            "secretKeyRef": {
                              "additionalProperties": false,
                              "properties": {
                                "key": {
                                  "type": "string"
                                },
                                "name": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "optional": {
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                }
                              },
                              "required": [
                                "key"
                              ],
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-map-type": "atomic"
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "mode": {
                          "description": "mode to use for the file",
                          "format": "int32",
                          "type": [
                            "integer",
                            "null"
                          ]
                        },
                        "path": {
                          "description": "path where the file should be accessible at",
                          "minLength": 1,
                          "type": "string"
                        }
                      },
                      "required": [
                        "path"
                      ],
                      "type": "object"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "git": {
                    "additionalProperties": false,
                    "description": "git repository details",
                    "properties": {
                      "authType": {
                        "description": "authorization type for the credentials",
                        "enum": [
                          "basic",
                          "header"
                        ],
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "mountPath": {
                        "description": "where to mount the fetched repository contents (defaults to \"repo\" directory in the data volume)",
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "paths": {
                        "description": "paths to fetch for the sparse checkout",
                        "items": {
                          "type": "string"
                        },
                        "type": [
                          "array",
                          "null"
                        ]
                      },
                      "revision": {
                        "description": "branch, commit or a tag name to fetch",
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "sshKey": {
                        "description": "plain text SSH private key to fetch with",
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "sshKeyFrom": {
                        "additionalProperties": false,
                        "description": "external SSH private key to fetch with",
                        "properties": {
                          "configMapKeyRef": {
                            "additionalProperties": false,
                            "properties": {
                              "key": {
                                "type": "string"
                              },
                              "name": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "optional": {
                                "type": [
                                  "boolean",
                                  "null"
                                ]
                              }
                            },
                            "required": [
                              "key"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          },
                          "fieldRef": {
                            "additionalProperties": false,
                            "properties": {
                              "apiVersion": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "fieldPath": {
                                "type": "string"
                              }
                            },
                            "required": [
                              "fieldPath"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          },
                          "resourceFieldRef": {
                            "additionalProperties": false,
                            "properties": {
                              "containerName": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "divisor": {
                                "oneOf": [
                                  {
                                    "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                    "type": "string"
                                  },
                                  {
                                    "type": "integer"
                                  },
                                  {
                                    "type": "null"
                                  }
                                ],
                                "x-kubernetes-int-or-string": true
                              },
                              "resource": {
                                "type": "string"
                              }
                            },
                            "required": [
                              "resource"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          },
                          "secretKeyRef": {
                            "additionalProperties": false,
                            "properties": {
                              "key": {
                                "type": "string"
                              },
                              "name": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "optional": {
                                "type": [
                                  "boolean",
                                  "null"
                                ]
                              }
                            },
                            "required": [
                              "key"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          }
                        },
                        "type": [
                          "object",
                          "null"
                        ]
                      },
                      "token": {
                        "description": "plain text token to fetch with",
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "tokenFrom": {
                        "additionalProperties": false,
                        "description": "external token to fetch with",
                        "properties": {
                          "configMapKeyRef": {
                            "additionalProperties": false,
                            "properties": {
                              "key": {
                                "type": "string"
                              },
                              "name": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "optional": {
                                "type": [
                                  "boolean",
                                  "null"
                                ]
                              }
                            },
                            "required": [
                              "key"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          },
                          "fieldRef": {
                            "additionalProperties": false,
                            "properties": {
                              "apiVersion": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "fieldPath": {
                                "type": "string"
                              }
                            },
                            "required": [
                              "fieldPath"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          },
                          "resourceFieldRef": {
                            "additionalProperties": false,
                            "properties": {
                              "containerName": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "divisor": {
                                "oneOf": [
                                  {
                                    "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                    "type": "string"
                                  },
                                  {
                                    "type": "integer"
                                  },
                                  {
                                    "type": "null"
                                  }
                                ],
                                "x-kubernetes-int-or-string": true
                              },
                              "resource": {
                                "type": "string"
                              }
                            },
                            "required": [
                              "resource"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          },
                          "secretKeyRef": {
                            "additionalProperties": false,
                            "properties": {
                              "key": {
                                "type": "string"
                              },
                              "name": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "optional": {
                                "type": [
                                  "boolean",
                                  "null"
                                ]
                              }
                            },
                            "required": [
                              "key"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          }
                        },
                        "type": [
                          "object",
                          "null"
                        ]
                      },
                      "uri": {
                        "description": "uri for the Git repository",
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "username": {
                        "description": "plain text username to fetch with",
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "usernameFrom": {
                        "additionalProperties": false,
                        "description": "external username to fetch with",
                        "properties": {
                          "configMapKeyRef": {
                            "additionalProperties": false,
                            "properties": {
                              "key": {
                                "type": "string"
                              },
                              "name": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "optional": {
                                "type": [
                                  "boolean",
                                  "null"
                                ]
                              }
                            },
                            "required": [
                              "key"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          },
                          "fieldRef": {
                            "additionalProperties": false,
                            "properties": {
                              "apiVersion": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "fieldPath": {
                                "type": "string"
                              }
                            },
                            "required": [
                              "fieldPath"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          },
                          "resourceFieldRef": {
                            "additionalProperties": false,
                            "properties": {
                              "containerName": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "divisor": {
                                "oneOf": [
                                  {
                                    "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                    "type": "string"
                                  },
                                  {
                                    "type": "integer"
                                  },
                                  {
                                    "type": "null"
                                  }
                                ],
                                "x-kubernetes-int-or-string": true
                              },
                              "resource": {
                                "type": "string"
                              }
                            },
                            "required": [
                              "resource"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          },
                          "secretKeyRef": {
                            "additionalProperties": false,
                            "properties": {
                              "key": {
                                "type": "string"
                              },
                              "name": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "optional": {
                                "type": [
                                  "boolean",
                                  "null"
                                ]
                              }
                            },
                            "required": [
                              "key"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          }
                        },
                        "type": [
                          "object",
                          "null"
                        ]
                      }
                    },
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "tarball": {
                    "description": "tarballs to unpack",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "mount": {
                          "description": "should it mount a new volume there",
                          "type": [
                            "boolean",
                            "null"
                          ]
                        },
                        "path": {
                          "description": "path where the tarball should be extracted",
                          "type": "string"
                        },
                        "url": {
                          "description": "url for the tarball to extract",
                          "type": "string"
                        }
                      },
                      "required": [
                        "path",
                        "url"
                      ],
                      "type": "object"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  }
                },
                "type": [
                  "object",
                  "null"
                ]
              },
              "count": {
                "description": "static number of sharded instances to spawn",
                "oneOf": [
                  {
                    "type": "string"
                  },
                  {
                    "type": "integer"
                  },
                  {
                    "type": "null"
                  }
                ],
                "x-kubernetes-int-or-string": true
              },
              "description": {
                "description": "service description to display",
                "type": [
                  "string",
                  "null"
                ]
              },
              "env": {
                "description": "environment variables to append to the container",
                "items": {
                  "additionalProperties": false,
                  "description": "EnvVar represents an environment variable present in a Container.",
                  "properties": {
                    "name": {
                      "description": "Name of the environment variable. Must be a C_IDENTIFIER.",
                      "type": "string"
                    },
                    "value": {
                      "description": "Variable references $(VAR_NAME) are expanded\nusing the previously defined environment variables in the container and\nany service environment variables. If a variable cannot be resolved,\nthe reference in the input string will be unchanged. Double $$ are reduced\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e.\n\"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\".\nEscaped references will never be expanded, regardless of whether the variable\nexists or not.\nDefaults to \"\".",
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "valueFrom": {
                      "additionalProperties": false,
                      "description": "Source for the environment variable's value. Cannot be used if value is not empty.",
                      "properties": {
                        "configMapKeyRef": {
                          "additionalProperties": false,
                          "properties": {
                            "key": {
                              "type": "string"
                            },
                            "name": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "optional": {
                              "type": [
                                "boolean",
                                "null"
                              ]
                            }
                          },
                          "required": [
                            "key"
                          ],
                          "type": [
                            "object",
                            "null"
                          ],
                          "x-kubernetes-map-type": "atomic"
                        },
                        "fieldRef": {
                          "additionalProperties": false,
                          "properties": {
                            "apiVersion": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "fieldPath": {
                              "type": "string"
                            }
                          },
                          "required": [
                            "fieldPath"
                          ],
                          "type": [
                            "object",
                            "null"
                          ],
                          "x-kubernetes-map-type": "atomic"
                        },
                        "resourceFieldRef": {
                          "additionalProperties": false,
                          "properties": {
                            "containerName": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "divisor": {
                              "oneOf": [
                                {
                                  "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                  "type": "string"
                                },
                                {
                                  "type": "integer"
                                },
                                {
                                  "type": "null"
                                }
                              ],
                              "x-kubernetes-int-or-string": true
                            },
                            "resource": {
                              "type": "string"
                            }
                          },
                          "required": [
                            "resource"
                          ],
                          "type": [
                            "object",
                            "null"
                          ],
                          "x-kubernetes-map-type": "atomic"
                        },
                        "secretKeyRef": {
                          "additionalProperties": false,
                          "properties": {
                            "key": {
                              "type": "string"
                            },
                            "name": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "optional": {
                              "type": [
                                "boolean",
                                "null"
                              ]
                            }
                          },
                          "required": [
                            "key"
                          ],
                          "type": [
                            "object",
                            "null"
                          ],
                          "x-kubernetes-map-type": "atomic"
                        }
                      },
                      "type": [
                        "object",
                        "null"
                      ]
                    }
                  },
                  "required": [
                    "name"
                  ],
                  "type": "object"
                },
                "type": [
                  "array",
                  "null"
                ]
              },
              "envFrom": {
                "description": "external environment variables to append to the container",
                "items": {
                  "additionalProperties": false,
                  "description": "EnvFromSource represents the source of a set of ConfigMaps",
                  "properties": {
                    "configMapRef": {
                      "additionalProperties": false,
                      "description": "The ConfigMap to select from",
                      "properties": {
                        "name": {
                          "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "optional": {
                          "description": "Specify whether the ConfigMap must be defined",
                          "type": [
                            "boolean",
                            "null"
                          ]
                        }
                      },
                      "type": [
                        "object",
                        "null"
                      ],
                      "x-kubernetes-map-type": "atomic"
                    },
                    "prefix": {
                      "description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.",
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "secretRef": {
                      "additionalProperties": false,
                      "description": "The Secret to select from",
                      "properties": {
                        "name": {
                          "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "optional": {
                          "description": "Specify whether the Secret must be defined",
                          "type": [
                            "boolean",
                            "null"
                          ]
                        }
                      },
                      "type": [
                        "object",
                        "null"
                      ],
                      "x-kubernetes-map-type": "atomic"
                    }
                  },
                  "type": "object"
                },
                "type": [
                  "array",
                  "null"
                ]
              },
              "image": {
                "description": "image to be used for the container",
                "type": [
                  "string",
                  "null"
                ]
              },
              "imagePullPolicy": {
                "description": "pulling policy for the image",
                "type": [
                  "string",
                  "null"
                ]
              },
              "logs": {
                "description": "should save logs for the service (false if not specified)",
                "type": [
                  "string",
                  "null"
                ]
              },
              "matrix": {
                "description": "matrix of parameters to spawn instances (static)",
                "type": [
                  "object",
                  "null"
                ],
                "x-kubernetes-preserve-unknown-fields": true
              },
              "maxCount": {
                "description": "dynamic number of sharded instances to spawn - it will be lowered if there is not enough sharded values",
                "oneOf": [
                  {
                    "type": "string"
                  },
                  {
                    "type": "integer"
                  },
                  {
                    "type": "null"
                  }
                ],
                "x-kubernetes-int-or-string": true
              },
              "pod": {
                "additionalProperties": false,
                "description": "configuration for the scheduled pod",
                "properties": {
                  "activeDeadlineSeconds": {
                    "description": "duration in seconds the pod may be active on the node",
                    "format": "int64",
                    "type": [
                      "integer",
                      "null"
                    ]
                  },
                  "affinity": {
                    "x-kubernetes-preserve-unknown-fields": true
                  },
                  "annotations": {
                    "additionalProperties": {
                      "type": "string"
                    },
                    "description": "annotations added to the scheduled pod",
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "dnsConfig": {
                    "additionalProperties": false,
                    "properties": {
                      "nameservers": {
                        "items": {
                          "type": "string"
                        },
                        "type": [
                          "array",
                          "null"
                        ]
                      },
                      "options": {
                        "items": {
                          "additionalProperties": false,
                          "properties": {
                            "name": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "value": {
                              "type": [
                                "string",
                                "null"
                              ]
                            }
                          },
                          "type": "object"
                        },
                        "type": [
                          "array",
                          "null"
                        ]
                      },
                      "searches": {
                        "items": {
                          "type": "string"
                        },
                        "type": [
                          "array",
                          "null"
                        ]
                      }
                    },
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "dnsPolicy": {
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "hostAliases": {
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "hostnames": {
                          "items": {
                            "type": "string"
                          },
                          "type": [
                            "array",
                            "null"
                          ]
                        },
                        "ip": {
                          "type": [
                            "string",
                            "null"
                          ]
                        }
                      },
                      "type": "object"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "hostname": {
                    "description": "Specifies the hostname of the Pod",
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "imagePullSecrets": {
                    "description": "references to secrets with credentials for pulling the images from registry",
                    "items": {
                      "additionalProperties": false,
                      "description": "LocalObjectReference contains enough information to let you locate the\nreferenced object inside the same namespace.",
                      "properties": {
                        "name": {
                          "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                          "type": [
                            "string",
                            "null"
                          ]
                        }
                      },
                      "type": "object",
                      "x-kubernetes-map-type": "atomic"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "labels": {
                    "additionalProperties": {
                      "type": "string"
                    },
                    "description": "labels added to the scheduled pod",
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "nodeName": {
                    "description": "NodeName is a request to schedule this pod onto a specific node.",
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "nodeSelector": {
                    "additionalProperties": {
                      "type": "string"
                    },
                    "description": "node selector to define on which node the pod should land",
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "preemptionPolicy": {
                    "description": "PreemptionPolicy is the Policy for preempting pods with lower priority.",
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "priority": {
                    "description": "The priority value. Various system components use this field to find the priority of the pod.",
                    "format": "int32",
                    "type": [
                      "integer",
                      "null"
                    ]
                  },
                  "priorityClassName": {
                    "description": "If specified, indicates the pod's priority.",
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "resourceClaims": {
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "name": {
                          "type": "string"
                        },
                        "source": {
                          "additionalProperties": false,
                          "properties": {
                            "resourceClaimName": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "resourceClaimTemplateName": {
                              "type": [
                                "string",
                                "null"
                              ]
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ]
                        }
                      },
                      "required": [
                        "name"
                      ],
                      "type": "object"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "schedulingGates": {
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "name": {
                          "type": "string"
                        }
                      },
                      "required": [
                        "name"
                      ],
                      "type": "object"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "securityContext": {
                    "additionalProperties": false,
                    "properties": {
                      "fsGroup": {
                        "format": "int64",
                        "type": [
                          "integer",
                          "null"
                        ]
                      },
                      "fsGroupChangePolicy": {
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "runAsGroup": {
                        "format": "int64",
                        "type": [
                          "integer",
                          "null"
                        ]
                      },
                      "runAsNonRoot": {
                        "type": [
                          "boolean",
                          "null"
                        ]
                      },
                      "runAsUser": {
                        "format": "int64",
                        "type": [
                          "integer",
                          "null"
                        ]
                      },
                      "seLinuxOptions": {
                        "additionalProperties": false,
                        "properties": {
                          "level": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "role": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "type": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "user": {
                            "type": [
                              "string",
                              "null"
                            ]
                          }
                        },
                        "type": [
                          "object",
                          "null"
                        ]
                      },
                      "seccompProfile": {
                        "additionalProperties": false,
                        "properties": {
                          "localhostProfile": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "type": {
                            "type": "string"
                          }
                        },
                        "required": [
                          "type"
                        ],
                        "type": [
                          "object",
                          "null"
                        ]
                      },
                      "supplementalGroups": {
                        "items": {
                          "format": "int64",
                          "type": "integer"
                        },
                        "type": [
                          "array",
                          "null"
                        ]
                      },
                      "sysctls": {
                        "items": {
                          "additionalProperties": false,
                          "properties": {
                            "name": {
                              "type": "string"
                            },
                            "value": {
                              "type": "string"
                            }
                          },
                          "required": [
                            "name",
                            "value"
                          ],
                          "type": "object"
                        },
                        "type": [
                          "array",
                          "null"
                        ]
                      },
                      "windowsOptions": {
                        "additionalProperties": false,
                        "properties": {
                          "gmsaCredentialSpec": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "gmsaCredentialSpecName": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "hostProcess": {
                            "type": [
                              "boolean",
                              "null"
                            ]
                          },
                          "runAsUserName": {
                            "type": [
                              "string",
                              "null"
                            ]
                          }
                        },
                        "type": [
                          "object",
                          "null"
                        ]
                      }
                    },
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "serviceAccountName": {
                    "description": "default service account name for the scheduled pod",
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "subdomain": {
                    "description": "If specified, the fully qualified Pod hostname will be \"\u003chostname\u003e.\u003csubdomain\u003e.\u003cpod namespace\u003e.svc.\u003ccluster domain\u003e\".",
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "tolerations": {
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "effect": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "key": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "operator": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "tolerationSeconds": {
                          "format": "int64",
                          "type": [
                            "integer",
                            "null"
                          ]
                        },
                        "value": {
                          "type": [
                            "string",
                            "null"
                          ]
                        }
                      },
                      "type": "object"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "topologySpreadConstraints": {
                    "x-kubernetes-preserve-unknown-fields": true
                  },
                  "volumes": {
                    "x-kubernetes-preserve-unknown-fields": true
                  }
                },
                "type": [
                  "object",
                  "null"
                ]
              },
              "readinessProbe": {
                "additionalProperties": false,
                "description": "Probe to check if the service has started correctly",
                "properties": {
                  "exec": {
                    "additionalProperties": false,
                    "description": "Exec specifies the action to take.",
                    "properties": {
                      "command": {
                        "description": "Command is the command line to execute inside the container, the working directory for the\ncommand  is root ('/') in the container's filesystem. The command is simply exec'd, it is\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\na shell, you need to explicitly call out to that shell.\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.",
                        "items": {
                          "type": "string"
                        },
                        "type": [
                          "array",
                          "null"
                        ]
                      }
                    },
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "failureThreshold": {
                    "description": "Minimum consecutive failures for the probe to be considered failed after having succeeded.\nDefaults to 3. Minimum value is 1.",
                    "format": "int32",
                    "type": [
                      "integer",
                      "null"
                    ]
                  },
                  "grpc": {
                    "additionalProperties": false,
                    "description": "GRPC specifies an action involving a GRPC port.",
                    "properties": {
                      "port": {
                        "description": "Port number of the gRPC service. Number must be in the range 1 to 65535.",
                        "format": "int32",
                        "type": "integer"
                      },
                      "service": {
                        "description": "Service is the name of the service to place in the gRPC HealthCheckRequest\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\n\n\nIf this is not specified, the default behavior is defined by gRPC.",
                        "type": [
                          "string",
                          "null"
                        ]
                      }
                    },
                    "required": [
                      "port"
                    ],
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "httpGet": {
                    "additionalProperties": false,
                    "description": "HTTPGet specifies the http request to perform.",
                    "properties": {
                      "host": {
                        "description": "Host name to connect to, defaults to the pod IP. You probably want to set\n\"Host\" in httpHeaders instead.",
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "httpHeaders": {
                        "description": "Custom headers to set in the request. HTTP allows repeated headers.",
                        "items": {
                          "additionalProperties": false,
                          "description": "HTTPHeader describes a custom header to be used in HTTP probes",
                          "properties": {
                            "name": {
                              "description": "The header field name.\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.",
                              "type": "string"
                            },
                            "value": {
                              "description": "The header field value",
                              "type": "string"
                            }
                          },
                          "required": [
                            "name",
                            "value"
                          ],
                          "type": "object"
                        },
                        "type": [
                          "array",
                          "null"
                        ]
                      },
                      "path": {
                        "description": "Path to access on the HTTP server.",
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "port": {
                        "description": "Name or number of the port to access on the container.\nNumber must be in the range 1 to 65535.\nName must be an IANA_SVC_NAME.",
                        "oneOf": [
                          {
                            "type": "string"
                          },
                          {
                            "type": "integer"
                          }
                        ],
                        "x-kubernetes-int-or-string": true
                      },
                      "scheme": {
                        "description": "Scheme to use for connecting to the host.\nDefaults to HTTP.",
                        "type": [
                          "string",
                          "null"
                        ]
                      }
                    },
                    "required": [
                      "port"
                    ],
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "initialDelaySeconds": {
                    "description": "Number of seconds after the container has started before liveness probes are initiated.\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes",
                    "format": "int32",
                    "type": [
                      "integer",
                      "null"
                    ]
                  },
                  "periodSeconds": {
                    "description": "How often (in seconds) to perform the probe.\nDefault to 10 seconds. Minimum value is 1.",
                    "format": "int32",
                    "type": [
                      "integer",
                      "null"
                    ]
                  },
                  "successThreshold": {
                    "description": "Minimum consecutive successes for the probe to be considered successful after having failed.\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.",
                    "format": "int32",
                    "type": [
                      "integer",
                      "null"
                    ]
                  },
                  "tcpSocket": {
                    "additionalProperties": false,
                    "description": "TCPSocket specifies an action involving a TCP port.",
                    "properties": {
                      "host": {
                        "description": "Optional: Host name to connect to, defaults to the pod IP.",
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "port": {
                        "description": "Number or name of the port to access on the container.\nNumber must be in the range 1 to 65535.\nName must be an IANA_SVC_NAME.",
                        "oneOf": [
                          {
                            "type": "string"
                          },
                          {
                            "type": "integer"
                          }
                        ],
                        "x-kubernetes-int-or-string": true
                      }
                    },
                    "required": [
                      "port"
                    ],
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "terminationGracePeriodSeconds": {
                    "description": "Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\nThe grace period is the duration in seconds after the processes running in the pod are sent\na termination signal and the time when the processes are forcibly halted with a kill signal.\nSet this value longer than the expected cleanup time for your process.\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\nvalue overrides the value provided by the pod spec.\nValue must be non-negative integer. The value zero indicates stop immediately via\nthe kill signal (no opportunity to shut down).\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.",
                    "format": "int64",
                    "type": [
                      "integer",
                      "null"
                    ]
                  },
                  "timeoutSeconds": {
                    "description": "Number of seconds after which the probe times out.\nDefaults to 1 second. Minimum value is 1.\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes",
                    "format": "int32",
                    "type": [
                      "integer",
                      "null"
                    ]
                  }
                },
                "type": [
                  "object",
                  "null"
                ]
              },
              "resources": {
                "additionalProperties": false,
                "description": "expected resources for the container",
                "properties": {
                  "limits": {
                    "additionalProperties": {
                      "oneOf": [
                        {
                          "type": "string"
                        },
                        {
                          "type": "integer"
                        }
                      ],
                      "x-kubernetes-int-or-string": true
                    },
                    "description": "resource limits for the container",
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "requests": {
                    "additionalProperties": {
                      "oneOf": [
                        {
                          "type": "string"
                        },
                        {
                          "type": "integer"
                        }
                      ],
                      "x-kubernetes-int-or-string": true
                    },
                    "description": "resource requests for the container",
                    "type": [
                      "object",
                      "null"
                    ]
                  }
                },
                "type": [
                  "object",
                  "null"
                ]
              },
              "restartPolicy": {
                "description": "Restart policy for the main container in the pod. One of OnFailure or Never.",
                "type": [
                  "string",
                  "null"
                ]
              },
              "securityContext": {
                "additionalProperties": false,
                "properties": {
                  "allowPrivilegeEscalation": {
                    "type": [
                      "boolean",
                      "null"
                    ]
                  },
                  "capabilities": {
                    "additionalProperties": false,
                    "properties": {
                      "add": {
                        "items": {
                          "type": "string"
                        },
                        "type": [
                          "array",
                          "null"
                        ]
                      },
                      "drop": {
                        "items": {
                          "type": "string"
                        },
                        "type": [
                          "array",
                          "null"
                        ]
                      }
                    },
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "privileged": {
                    "type": [
                      "boolean",
                      "null"
                    ]
                  },
                  "procMount": {
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "readOnlyRootFilesystem": {
                    "type": [
                      "boolean",
                      "null"
                    ]
                  },
                  "runAsGroup": {
                    "format": "int64",
                    "type": [
                      "integer",
                      "null"
                    ]
                  },
                  "runAsNonRoot": {
                    "type": [
                      "boolean",
                      "null"
                    ]
                  },
                  "runAsUser": {
                    "format": "int64",
                    "type": [
                      "integer",
                      "null"
                    ]
                  },
                  "seLinuxOptions": {
                    "additionalProperties": false,
                    "properties": {
                      "level": {
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "role": {
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "type": {
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "user": {
                        "type": [
                          "string",
                          "null"
                        ]
                      }
                    },
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "seccompProfile": {
                    "additionalProperties": false,
                    "properties": {
                      "localhostProfile": {
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "type": {
                        "type": "string"
                      }
                    },
                    "required": [
                      "type"
                    ],
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "windowsOptions": {
                    "additionalProperties": false,
                    "properties": {
                      "gmsaCredentialSpec": {
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "gmsaCredentialSpecName": {
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "hostProcess": {
                        "type": [
                          "boolean",
                          "null"
                        ]
                      },
                      "runAsUserName": {
                        "type": [
                          "string",
                          "null"
                        ]
                      }
                    },
                    "type": [
                      "object",
                      "null"
                    ]
                  }
                },
                "type": [
                  "object",
                  "null"
                ]
              },
              "shards": {
                "description": "parameters that should be distributed across sharded instances",
                "type": [
                  "object",
                  "null"
                ],
                "x-kubernetes-preserve-unknown-fields": true
              },
              "shell": {
                "description": "script to run in a default shell for the container",
                "type": [
                  "string",
                  "null"
                ]
              },
              "timeout": {
                "description": "maximum time until reaching readiness",
                "pattern": "^((0|[1-9][0-9]*)h)?((0|[1-9][0-9]*)m)?((0|[1-9][0-9]*)s)?((0|[1-9][0-9]*)ms)?$",
                "type": [
                  "string",
                  "null"
                ]
              },
              "transfer": {
                "description": "instructions for transferring files",
                "items": {
                  "required": [
                    "from"
                  ],
                  "type": "object",
                  "x-kubernetes-preserve-unknown-fields": true
                },
                "type": [
                  "array",
                  "null"
                ]
              },
              "volumeMounts": {
                "items": {
                  "additionalProperties": false,
                  "properties": {
                    "mountPath": {
                      "type": "string"
                    },
                    "mountPropagation": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "name": {
                      "type": "string"
                    },
                    "readOnly": {
                      "type": [
                        "boolean",
                        "null"
                      ]
                    },
                    "subPath": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "subPathExpr": {
                      "type": [
                        "string",
                        "null"
                      ]
                    }
                  },
                  "required": [
                    "mountPath",
                    "name"
                  ],
                  "type": "object"
                },
                "type": [
                  "array",
                  "null"
                ]
              },
              "workingDir": {
                "description": "override default working directory in the image (empty string to default WORKDIR for the image)",
                "type": [
                  "string",
                  "null"
                ]
              }
            },
            "type": "object"
          },
          "description": "list of accompanying services to start",
          "type": [
            "object",
            "null"
          ]
        },
        "setup": {
          "description": "steps for setting up the workflow",
          "items": {
            "additionalProperties": false,
            "properties": {
              "artifacts": {
                "additionalProperties": false,
                "description": "scrape artifacts from the volumes",
                "properties": {
                  "compress": {
                    "additionalProperties": false,
                    "description": "compression options for the artifacts",
                    "properties": {
                      "name": {
                        "description": "artifact name",
                        "minLength": 1,
                        "type": "string"
                      }
                    },
                    "required": [
                      "name"
                    ],
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "paths": {
                    "description": "paths to fetch from the container",
                    "items": {
                      "type": "string"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "workingDir": {
                    "description": "working directory to override, so it will be used as a base dir",
                    "type": [
                      "string",
                      "null"
                    ]
                  }
                },
                "type": [
                  "object",
                  "null"
                ]
              },
              "condition": {
                "description": "expression to declare under which conditions the step should be run\ndefaults to: \"passed\", except artifacts where it defaults to \"always\"",
                "type": [
                  "string",
                  "null"
                ]
              },
              "container": {
                "additionalProperties": false,
                "description": "defaults for the containers in this step",
                "properties": {
                  "args": {
                    "description": "override default command in the image (empty string to default CMD of the image)",
                    "items": {
                      "type": "string"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "command": {
                    "description": "override default command in the image (empty string to default ENTRYPOINT of the image)",
                    "items": {
                      "type": "string"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "env": {
                    "description": "environment variables to append to the container",
                    "items": {
                      "additionalProperties": false,
                      "description": "EnvVar represents an environment variable present in a Container.",
                      "properties": {
                        "name": {
                          "description": "Name of the environment variable. Must be a C_IDENTIFIER.",
                          "type": "string"
                        },
                        "value": {
                          "description": "Variable references $(VAR_NAME) are expanded\nusing the previously defined environment variables in the container and\nany service environment variables. If a variable cannot be resolved,\nthe reference in the input string will be unchanged. Double $$ are reduced\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e.\n\"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\".\nEscaped references will never be expanded, regardless of whether the variable\nexists or not.\nDefaults to \"\".",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "valueFrom": {
                          "additionalProperties": false,
                          "description": "Source for the environment variable's value. Cannot be used if value is not empty.",
                          "properties": {
                            "configMapKeyRef": {
                              "additionalProperties": false,
                              "properties": {
                                "key": {
                                  "type": "string"
                                },
                                "name": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "optional": {
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                }
                              },
                              "required": [
                                "key"
                              ],
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-map-type": "atomic"
                            },
                            "fieldRef": {
                              "additionalProperties": false,
                              "properties": {
                                "apiVersion": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "fieldPath": {
                                  "type": "string"
                                }
                              },
                              "required": [
                                "fieldPath"
                              ],
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-map-type": "atomic"
                            },
                            "resourceFieldRef": {
                              "additionalProperties": false,
                              "properties": {
                                "containerName": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "divisor": {
                                  "oneOf": [
                                    {
                                      "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                      "type": "string"
                                    },
                                    {
                                      "type": "integer"
                                    },
                                    {
                                      "type": "null"
                                    }
                                  ],
                                  "x-kubernetes-int-or-string": true
                                },
                                "resource": {
                                  "type": "string"
                                }
                              },
                              "required": [
                                "resource"
                              ],
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-map-type": "atomic"
                            },
                            "secretKeyRef": {
                              "additionalProperties": false,
                              "properties": {
                                "key": {
                                  "type": "string"
                                },
                                "name": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "optional": {
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                }
                              },
                              "required": [
                                "key"
                              ],
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-map-type": "atomic"
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ]
                        }
                      },
                      "required": [
                        "name"
                      ],
                      "type": "object"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "envFrom": {
                    "description": "external environment variables to append to the container",
                    "items": {
                      "additionalProperties": false,
                      "description": "EnvFromSource represents the source of a set of ConfigMaps",
                      "properties": {
                        "configMapRef": {
                          "additionalProperties": false,
                          "description": "The ConfigMap to select from",
                          "properties": {
                            "name": {
                              "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "optional": {
                              "description": "Specify whether the ConfigMap must be defined",
                              "type": [
                                "boolean",
                                "null"
                              ]
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ],
                          "x-kubernetes-map-type": "atomic"
                        },
                        "prefix": {
                          "description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "secretRef": {
                          "additionalProperties": false,
                          "description": "The Secret to select from",
                          "properties": {
                            "name": {
                              "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "optional": {
                              "description": "Specify whether the Secret must be defined",
                              "type": [
                                "boolean",
                                "null"
                              ]
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ],
                          "x-kubernetes-map-type": "atomic"
                        }
                      },
                      "type": "object"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "image": {
                    "description": "image to be used for the container",
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "imagePullPolicy": {
                    "description": "pulling policy for the image",
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "resources": {
                    "additionalProperties": false,
                    "description": "expected resources for the container",
                    "properties": {
                      "limits": {
                        "additionalProperties": {
                          "oneOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "integer"
                            }
                          ],
                          "x-kubernetes-int-or-string": true
                        },
                        "description": "resource limits for the container",
                        "type": [
                          "object",
                          "null"
                        ]
                      },
                      "requests": {
                        "additionalProperties": {
                          "oneOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "integer"
                            }
                          ],
                          "x-kubernetes-int-or-string": true
                        },
                        "description": "resource requests for the container",
                        "type": [
                          "object",
                          "null"
                        ]
                      }
                    },
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "securityContext": {
                    "additionalProperties": false,
                    "properties": {
                      "allowPrivilegeEscalation": {
                        "type": [
                          "boolean",
                          "null"
                        ]
                      },
                      "capabilities": {
                        "additionalProperties": false,
                        "properties": {
                          "add": {
                            "items": {
                              "type": "string"
                            },
                            "type": [
                              "array",
                              "null"
                            ]
                          },
                          "drop": {
                            "items": {
                              "type": "string"
                            },
                            "type": [
                              "array",
                              "null"
                            ]
                          }
                        },
                        "type": [
                          "object",
                          "null"
                        ]
                      },
                      "privileged": {
                        "type": [
                          "boolean",
                          "null"
                        ]
                      },
                      "procMount": {
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "readOnlyRootFilesystem": {
                        "type": [
                          "boolean",
                          "null"
                        ]
                      },
                      "runAsGroup": {
                        "format": "int64",
                        "type": [
                          "integer",
                          "null"
                        ]
                      },
                      "runAsNonRoot": {
                        "type": [
                          "boolean",
                          "null"
                        ]
                      },
                      "runAsUser": {
                        "format": "int64",
                        "type": [
                          "integer",
                          "null"
                        ]
                      },
                      "seLinuxOptions": {
                        "additionalProperties": false,
                        "properties": {
                          "level": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "role": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "type": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "user": {
                            "type": [
                              "string",
                              "null"
                            ]
                          }
                        },
                        "type": [
                          "object",
                          "null"
                        ]
                      },
                      "seccompProfile": {
                        "additionalProperties": false,
                        "properties": {
                          "localhostProfile": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "type": {
                            "type": "string"
                          }
                        },
                        "required": [
                          "type"
                        ],
                        "type": [
                          "object",
                          "null"
                        ]
                      },
                      "windowsOptions": {
                        "additionalProperties": false,
                        "properties": {
                          "gmsaCredentialSpec": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "gmsaCredentialSpecName": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "hostProcess": {
                            "type": [
                              "boolean",
                              "null"
                            ]
                          },
                          "runAsUserName": {
                            "type": [
                              "string",
                              "null"
                            ]
                          }
                        },
                        "type": [
                          "object",
                          "null"
                        ]
                      }
                    },
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "volumeMounts": {
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "mountPath": {
                          "type": "string"
                        },
                        "mountPropagation": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "name": {
                          "type": "string"
                        },
                        "readOnly": {
                          "type": [
                            "boolean",
                            "null"
                          ]
                        },
                        "subPath": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "subPathExpr": {
                          "type": [
                            "string",
                            "null"
                          ]
                        }
                      },
                      "required": [
                        "mountPath",
                        "name"
                      ],
                      "type": "object"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "workingDir": {
                    "description": "override default working directory in the image (empty string to default WORKDIR for the image)",
                    "type": [
                      "string",
                      "null"
                    ]
                  }
                },
                "type": [
                  "object",
                  "null"
                ]
              },
              "content": {
                "additionalProperties": false,
                "description": "content that should be fetched for this step",
                "properties": {
                  "files": {
                    "description": "files to load",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "content": {
                          "description": "plain-text content to put inside",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "contentFrom": {
                          "additionalProperties": false,
                          "description": "external source to use",
                          "properties": {
                            "configMapKeyRef": {
                              "additionalProperties": false,
                              "properties": {
                                "key": {
                                  "type": "string"
                                },
                                "name": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "optional": {
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                }
                              },
                              "required": [
                                "key"
                              ],
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-map-type": "atomic"
                            },
                            "fieldRef": {
                              "additionalProperties": false,
                              "properties": {
                                "apiVersion": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "fieldPath": {
                                  "type": "string"
                                }
                              },
                              "required": [
                                "fieldPath"
                              ],
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-map-type": "atomic"
                            },
                            "resourceFieldRef": {
                              "additionalProperties": false,
                              "properties": {
                                "containerName": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "divisor": {
                                  "oneOf": [
                                    {
                                      "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                      "type": "string"
                                    },
                                    {
                                      "type": "integer"
                                    },
                                    {
                                      "type": "null"
                                    }
                                  ],
                                  "x-kubernetes-int-or-string": true
                                },
                                "resource": {
                                  "type": "string"
                                }
                              },
                              "required": [
                                "resource"
                              ],
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-map-type": "atomic"
                            },
                            "secretKeyRef": {
                              "additionalProperties": false,
                              "properties": {
                                "key": {
                                  "type": "string"
                                },
                                "name": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "optional": {
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                }
                              },
                              "required": [
                                "key"
                              ],
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-map-type": "atomic"
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "mode": {
                          "description": "mode to use for the file",
                          "format": "int32",
                          "type": [
                            "integer",
                            "null"
                          ]
                        },
                        "path": {
                          "description": "path where the file should be accessible at",
                          "minLength": 1,
                          "type": "string"
                        }
                      },
                      "required": [
                        "path"
                      ],
                      "type": "object"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "git": {
                    "additionalProperties": false,
                    "description": "git repository details",
                    "properties": {
                      "authType": {
                        "description": "authorization type for the credentials",
                        "enum": [
                          "basic",
                          "header"
                        ],
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "mountPath": {
                        "description": "where to mount the fetched repository contents (defaults to \"repo\" directory in the data volume)",
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "paths": {
                        "description": "paths to fetch for the sparse checkout",
                        "items": {
                          "type": "string"
                        },
                        "type": [
                          "array",
                          "null"
                        ]
                      },
                      "revision": {
                        "description": "branch, commit or a tag name to fetch",
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "sshKey": {
                        "description": "plain text SSH private key to fetch with",
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "sshKeyFrom": {
                        "additionalProperties": false,
                        "description": "external SSH private key to fetch with",
                        "properties": {
                          "configMapKeyRef": {
                            "additionalProperties": false,
                            "properties": {
                              "key": {
                                "type": "string"
                              },
                              "name": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "optional": {
                                "type": [
                                  "boolean",
                                  "null"
                                ]
                              }
                            },
                            "required": [
                              "key"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          },
                          "fieldRef": {
                            "additionalProperties": false,
                            "properties": {
                              "apiVersion": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "fieldPath": {
                                "type": "string"
                              }
                            },
                            "required": [
                              "fieldPath"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          },
                          "resourceFieldRef": {
                            "additionalProperties": false,
                            "properties": {
                              "containerName": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "divisor": {
                                "oneOf": [
                                  {
                                    "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                    "type": "string"
                                  },
                                  {
                                    "type": "integer"
                                  },
                                  {
                                    "type": "null"
                                  }
                                ],
                                "x-kubernetes-int-or-string": true
                              },
                              "resource": {
                                "type": "string"
                              }
                            },
                            "required": [
                              "resource"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          },
                          "secretKeyRef": {
                            "additionalProperties": false,
                            "properties": {
                              "key": {
                                "type": "string"
                              },
                              "name": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "optional": {
                                "type": [
                                  "boolean",
                                  "null"
                                ]
                              }
                            },
                            "required": [
                              "key"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          }
                        },
                        "type": [
                          "object",
                          "null"
                        ]
                      },
                      "token": {
                        "description": "plain text token to fetch with",
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "tokenFrom": {
                        "additionalProperties": false,
                        "description": "external token to fetch with",
                        "properties": {
                          "configMapKeyRef": {
                            "additionalProperties": false,
                            "properties": {
                              "key": {
                                "type": "string"
                              },
                              "name": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "optional": {
                                "type": [
                                  "boolean",
                                  "null"
                                ]
                              }
                            },
                            "required": [
                              "key"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          },
                          "fieldRef": {
                            "additionalProperties": false,
                            "properties": {
                              "apiVersion": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "fieldPath": {
                                "type": "string"
                              }
                            },
                            "required": [
                              "fieldPath"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          },
                          "resourceFieldRef": {
                            "additionalProperties": false,
                            "properties": {
                              "containerName": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "divisor": {
                                "oneOf": [
                                  {
                                    "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                    "type": "string"
                                  },
                                  {
                                    "type": "integer"
                                  },
                                  {
                                    "type": "null"
                                  }
                                ],
                                "x-kubernetes-int-or-string": true
                              },
                              "resource": {
                                "type": "string"
                              }
                            },
                            "required": [
                              "resource"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          },
                          "secretKeyRef": {
                            "additionalProperties": false,
                            "properties": {
                              "key": {
                                "type": "string"
                              },
                              "name": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "optional": {
                                "type": [
                                  "boolean",
                                  "null"
                                ]
                              }
                            },
                            "required": [
                              "key"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          }
                        },
                        "type": [
                          "object",
                          "null"
                        ]
                      },
                      "uri": {
                        "description": "uri for the Git repository",
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "username": {
                        "description": "plain text username to fetch with",
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "usernameFrom": {
                        "additionalProperties": false,
                        "description": "external username to fetch with",
                        "properties": {
                          "configMapKeyRef": {
                            "additionalProperties": false,
                            "properties": {
                              "key": {
                                "type": "string"
                              },
                              "name": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "optional": {
                                "type": [
                                  "boolean",
                                  "null"
                                ]
                              }
                            },
                            "required": [
                              "key"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          },
                          "fieldRef": {
                            "additionalProperties": false,
                            "properties": {
                              "apiVersion": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "fieldPath": {
                                "type": "string"
                              }
                            },
                            "required": [
                              "fieldPath"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          },
                          "resourceFieldRef": {
                            "additionalProperties": false,
                            "properties": {
                              "containerName": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "divisor": {
                                "oneOf": [
                                  {
                                    "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                    "type": "string"
                                  },
                                  {
                                    "type": "integer"
                                  },
                                  {
                                    "type": "null"
                                  }
                                ],
                                "x-kubernetes-int-or-string": true
                              },
                              "resource": {
                                "type": "string"
                              }
                            },
                            "required": [
                              "resource"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          },
                          "secretKeyRef": {
                            "additionalProperties": false,
                            "properties": {
                              "key": {
                                "type": "string"
                              },
                              "name": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "optional": {
                                "type": [
                                  "boolean",
                                  "null"
                                ]
                              }
                            },
                            "required": [
                              "key"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          }
                        },
                        "type": [
                          "object",
                          "null"
                        ]
                      }
                    },
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "tarball": {
                    "description": "tarballs to unpack",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "mount": {
                          "description": "should it mount a new volume there",
                          "type": [
                            "boolean",
                            "null"
                          ]
                        },
                        "path": {
                          "description": "path where the tarball should be extracted",
                          "type": "string"
                        },
                        "url": {
                          "description": "url for the tarball to extract",
                          "type": "string"
                        }
                      },
                      "required": [
                        "path",
                        "url"
                      ],
                      "type": "object"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  }
                },
                "type": [
                  "object",
                  "null"
                ]
              },
              "delay": {
                "description": "delay before the step",
                "pattern": "^((0|[1-9][0-9]*)h)?((0|[1-9][0-9]*)m)?((0|[1-9][0-9]*)s)?((0|[1-9][0-9]*)ms)?$",
                "type": [
                  "string",
                  "null"
                ]
              },
              "execute": {
                "additionalProperties": false,
                "description": "execute other Testkube resources",
                "properties": {
                  "async": {
                    "description": "only schedule the resources, don't watch the results (unless it is needed for parallelism)",
                    "type": [
                      "boolean",
                      "null"
                    ]
                  },
                  "parallelism": {
                    "description": "how many resources could be scheduled in parallel",
                    "format": "int32",
                    "type": [
                      "integer",
                      "null"
                    ]
                  },
                  "tests": {
                    "description": "tests to run",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "count": {
                          "description": "static number of sharded instances to spawn",
                          "oneOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "integer"
                            },
                            {
                              "type": "null"
                            }
                          ],
                          "x-kubernetes-int-or-string": true
                        },
                        "description": {
                          "description": "test execution description to display",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "executionRequest": {
                          "additionalProperties": false,
                          "description": "pass the execution request overrides",
                          "properties": {
                            "activeDeadlineSeconds": {
                              "description": "Optional duration in seconds the pod may be active on the node relative to\nStartTime before the system will actively try to mark it failed and kill associated containers.\nValue must be a positive integer.",
                              "format": "int64",
                              "type": [
                                "integer",
                                "null"
                              ]
                            },
                            "args": {
                              "description": "additional executor binary arguments",
                              "items": {
                                "type": "string"
                              },
                              "type": [
                                "array",
                                "null"
                              ]
                            },
                            "argsMode": {
                              "description": "usage mode for arguments",
                              "enum": [
                                "append",
                                "override",
                                "replace"
                              ],
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "artifactRequest": {
                              "additionalProperties": false,
                              "description": "artifact request body with test artifacts",
                              "properties": {
                                "dirs": {
                                  "description": "artifact directories for scraping",
                                  "items": {
                                    "type": "string"
                                  },
                                  "type": [
                                    "array",
                                    "null"
                                  ]
                                },
                                "masks": {
                                  "description": "regexp to filter scraped artifacts, single or comma separated",
                                  "items": {
                                    "type": "string"
                                  },
                                  "type": [
                                    "array",
                                    "null"
                                  ]
                                },
                                "omitFolderPerExecution": {
                                  "description": "don't use a separate folder for execution artifacts",
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                },
                                "sharedBetweenPods": {
                                  "description": "whether to share volume between pods",
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                },
                                "sidecarScraper": {
                                  "description": "run scraper as pod sidecar container",
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                },
                                "storageBucket": {
                                  "description": "artifact bucket storage",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "storageClassName": {
                                  "description": "artifact storage class name for container executor",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "useDefaultStorageClassName": {
                                  "description": "whether to use default storage class name",
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                },
                                "volumeMountPath": {
                                  "description": "artifact volume mount path for container executor",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                }
                              },
                              "type": [
                                "object",
                                "null"
                              ]
                            },
                            "command": {
                              "description": "executor binary command",
                              "items": {
                                "type": "string"
                              },
                              "type": [
                                "array",
                                "null"
                              ]
                            },
                            "cronJobTemplate": {
                              "description": "cron job template extensions",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "envConfigMaps": {
                              "description": "config map references",
                              "items": {
                                "additionalProperties": false,
                                "description": "Reference to env resource",
                                "properties": {
                                  "mapToVariables": {
                                    "description": "whether we shoud map to variables from resource",
                                    "type": [
                                      "boolean",
                                      "null"
                                    ]
                                  },
                                  "mount": {
                                    "description": "whether we shoud mount resource",
                                    "type": [
                                      "boolean",
                                      "null"
                                    ]
                                  },
                                  "mountPath": {
                                    "description": "where we shoud mount resource",
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  },
                                  "reference": {
                                    "additionalProperties": false,
                                    "description": "LocalObjectReference contains enough information to let you locate the\nreferenced object inside the same namespace.",
                                    "properties": {
                                      "name": {
                                        "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                                        "type": [
                                          "string",
                                          "null"
                                        ]
                                      }
                                    },
                                    "type": "object",
                                    "x-kubernetes-map-type": "atomic"
                                  }
                                },
                                "required": [
                                  "reference"
                                ],
                                "type": "object"
                              },
                              "type": [
                                "array",
                                "null"
                              ]
                            },
                            "envSecrets": {
                              "description": "secret references",
                              "items": {
                                "additionalProperties": false,
                                "description": "Reference to env resource",
                                "properties": {
                                  "mapToVariables": {
                                    "description": "whether we shoud map to variables from resource",
                                    "type": [
                                      "boolean",
                                      "null"
                                    ]
                                  },
                                  "mount": {
                                    "description": "whether we shoud mount resource",
                                    "type": [
                                      "boolean",
                                      "null"
                                    ]
                                  },
                                  "mountPath": {
                                    "description": "where we shoud mount resource",
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  },
                                  "reference": {
                                    "additionalProperties": false,
                                    "description": "LocalObjectReference contains enough information to let you locate the\nreferenced object inside the same namespace.",
                                    "properties": {
                                      "name": {
                                        "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                                        "type": [
                                          "string",
                                          "null"
                                        ]
                                      }
                                    },
                                    "type": "object",
                                    "x-kubernetes-map-type": "atomic"
                                  }
                                },
                                "required": [
                                  "reference"
                                ],
                                "type": "object"
                              },
                              "type": [
                                "array",
                                "null"
                              ]
                            },
                            "executePostRunScriptBeforeScraping": {
                              "description": "execute post run script before scraping (prebuilt executor only)",
                              "type": [
                                "boolean",
                                "null"
                              ]
                            },
                            "executionLabels": {
                              "additionalProperties": {
                                "type": "string"
                              },
                              "description": "test execution labels",
                              "type": [
                                "object",
                                "null"
                              ]
                            },
                            "executionNamespace": {
                              "description": "namespace for test execution (Pro edition only)",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "httpProxy": {
                              "description": "http proxy for executor containers",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "httpsProxy": {
                              "description": "https proxy for executor containers",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "image": {
                              "description": "container executor image",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "imagePullSecrets": {
                              "description": "container executor image pull secrets",
                              "items": {
                                "additionalProperties": false,
                                "description": "LocalObjectReference contains enough information to let you locate the\nreferenced object inside the same namespace.",
                                "properties": {
                                  "name": {
                                    "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  }
                                },
                                "type": "object",
                                "x-kubernetes-map-type": "atomic"
                              },
                              "type": [
                                "array",
                                "null"
                              ]
                            },
                            "isVariablesFileUploaded": {
                              "type": [
                                "boolean",
                                "null"
                              ]
                            },
                            "jobTemplate": {
                              "description": "job template extensions",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "name": {
                              "description": "test execution custom name",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "negativeTest": {
                              "description": "negative test will fail the execution if it is a success and it will succeed if it is a failure",
                              "type": [
                                "boolean",
                                "null"
                              ]
                            },
                            "postRunScript": {
                              "description": "script to run after test execution",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "preRunScript": {
                              "description": "script to run before test execution",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "scraperTemplate": {
                              "description": "scraper template extensions",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "sourceScripts": {
                              "description": "run scripts using source command (container executor only)",
                              "type": [
                                "boolean",
                                "null"
                              ]
                            },
                            "sync": {
                              "description": "whether to start execution sync or async",
                              "type": [
                                "boolean",
                                "null"
                              ]
                            },
                            "testSecretUUID": {
                              "description": "test secret uuid",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "variables": {
                              "additionalProperties": {
                                "additionalProperties": false,
                                "properties": {
                                  "name": {
                                    "description": "variable name",
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  },
                                  "type": {
                                    "description": "variable type",
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  },
                                  "value": {
                                    "description": "variable string value",
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  },
                                  "valueFrom": {
                                    "additionalProperties": false,
                                    "description": "or load it from var source",
                                    "properties": {
                                      "configMapKeyRef": {
                                        "additionalProperties": false,
                                        "properties": {
                                          "key": {
                                            "type": "string"
                                          },
                                          "name": {
                                            "type": [
                                              "string",
                                              "null"
                                            ]
                                          },
                                          "optional": {
                                            "type": [
                                              "boolean",
                                              "null"
                                            ]
                                          }
                                        },
                                        "required": [
                                          "key"
                                        ],
                                        "type": [
                                          "object",
                                          "null"
                                        ],
                                        "x-kubernetes-map-type": "atomic"
                                      },
                                      "fieldRef": {
                                        "additionalProperties": false,
                                        "properties": {
                                          "apiVersion": {
                                            "type": [
                                              "string",
                                              "null"
                                            ]
                                          },
                                          "fieldPath": {
                                            "type": "string"
                                          }
                                        },
                                        "required": [
                                          "fieldPath"
                                        ],
                                        "type": [
                                          "object",
                                          "null"
                                        ],
                                        "x-kubernetes-map-type": "atomic"
                                      },
                                      "resourceFieldRef": {
                                        "additionalProperties": false,
                                        "properties": {
                                          "containerName": {
                                            "type": [
                                              "string",
                                              "null"
                                            ]
                                          },
                                          "divisor": {
                                            "oneOf": [
                                              {
                                                "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                                "type": "string"
                                              },
                                              {
                                                "type": "integer"
                                              },
                                              {
                                                "type": "null"
                                              }
                                            ],
                                            "x-kubernetes-int-or-string": true
                                          },
                                          "resource": {
                                            "type": "string"
                                          }
                                        },
                                        "required": [
                                          "resource"
                                        ],
                                        "type": [
                                          "object",
                                          "null"
                                        ],
                                        "x-kubernetes-map-type": "atomic"
                                      },
                                      "secretKeyRef": {
                                        "additionalProperties": false,
                                        "properties": {
                                          "key": {
                                            "type": "string"
                                          },
                                          "name": {
                                            "type": [
                                              "string",
                                              "null"
                                            ]
                                          },
                                          "optional": {
                                            "type": [
                                              "boolean",
                                              "null"
                                            ]
                                          }
                                        },
                                        "required": [
                                          "key"
                                        ],
                                        "type": [
                                          "object",
                                          "null"
                                        ],
                                        "x-kubernetes-map-type": "atomic"
                                      }
                                    },
                                    "type": [
                                      "object",
                                      "null"
                                    ]
                                  }
                                },
                                "type": "object"
                              },
                              "type": [
                                "object",
                                "null"
                              ]
                            },
                            "variablesFile": {
                              "description": "variables file content - need to be in format for particular executor (e.g. postman envs file)",
                              "type": [
                                "string",
                                "null"
                              ]
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "matrix": {
                          "description": "matrix of parameters to spawn instances (static)",
                          "type": [
                            "object",
                            "null"
                          ],
                          "x-kubernetes-preserve-unknown-fields": true
                        },
                        "maxCount": {
                          "description": "dynamic number of sharded instances to spawn - it will be lowered if there is not enough sharded values",
                          "oneOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "integer"
                            },
                            {
                              "type": "null"
                            }
                          ],
                          "x-kubernetes-int-or-string": true
                        },
                        "name": {
                          "description": "test name to run",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "shards": {
                          "description": "parameters that should be distributed across sharded instances",
                          "type": [
                            "object",
                            "null"
                          ],
                          "x-kubernetes-preserve-unknown-fields": true
                        },
                        "tarball": {
                          "additionalProperties": {
                            "type": "object",
                            "x-kubernetes-preserve-unknown-fields": true
                          },
                          "description": "pack some data from the original file system to serve them down",
                          "type": [
                            "object",
                            "null"
                          ]
                        }
                      },
                      "type": "object"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "workflows": {
                    "description": "workflows to run",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "config": {
                          "additionalProperties": {
                            "oneOf": [
                              {
                                "type": "string"
                              },
                              {
                                "type": "integer"
                              }
                            ],
                            "x-kubernetes-int-or-string": true
                          },
                          "description": "configuration to pass for the workflow",
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "count": {
                          "description": "static number of sharded instances to spawn",
                          "oneOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "integer"
                            },
                            {
                              "type": "null"
                            }
                          ],
                          "x-kubernetes-int-or-string": true
                        },
                        "description": {
                          "description": "test workflow execution description to display",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "executionName": {
                          "description": "unique execution name to use",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "matrix": {
                          "description": "matrix of parameters to spawn instances (static)",
                          "type": [
                            "object",
                            "null"
                          ],
                          "x-kubernetes-preserve-unknown-fields": true
                        },
                        "maxCount": {
                          "description": "dynamic number of sharded instances to spawn - it will be lowered if there is not enough sharded values",
                          "oneOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "integer"
                            },
                            {
                              "type": "null"
                            }
                          ],
                          "x-kubernetes-int-or-string": true
                        },
                        "name": {
                          "description": "workflow name to run",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "shards": {
                          "description": "parameters that should be distributed across sharded instances",
                          "type": [
                            "object",
                            "null"
                          ],
                          "x-kubernetes-preserve-unknown-fields": true
                        },
                        "tarball": {
                          "additionalProperties": {
                            "type": "object",
                            "x-kubernetes-preserve-unknown-fields": true
                          },
                          "description": "pack some data from the original file system to serve them down",
                          "type": [
                            "object",
                            "null"
                          ]
                        }
                      },
                      "type": "object"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  }
                },
                "type": [
                  "object",
                  "null"
                ]
              },
              "name": {
                "description": "readable name for the step",
                "type": [
                  "string",
                  "null"
                ]
              },
              "negative": {
                "description": "is the step expected to fail",
                "type": [
                  "boolean",
                  "null"
                ]
              },
              "optional": {
                "description": "is the step optional, so its failure won't affect the TestWorkflow result",
                "type": [
                  "boolean",
                  "null"
                ]
              },
              "parallel": {
                "additionalProperties": false,
                "description": "instructions for parallel execution",
                "properties": {
                  "artifacts": {
                    "additionalProperties": false,
                    "description": "scrape artifacts from the volumes",
                    "properties": {
                      "compress": {
                        "additionalProperties": false,
                        "description": "compression options for the artifacts",
                        "properties": {
                          "name": {
                            "description": "artifact name",
                            "minLength": 1,
                            "type": "string"
                          }
                        },
                        "required": [
                          "name"
                        ],
                        "type": [
                          "object",
                          "null"
                        ]
                      },
                      "paths": {
                        "description": "paths to fetch from the container",
                        "items": {
                          "type": "string"
                        },
                        "type": [
                          "array",
                          "null"
                        ]
                      },
                      "workingDir": {
                        "description": "working directory to override, so it will be used as a base dir",
                        "type": [
                          "string",
                          "null"
                        ]
                      }
                    },
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "count": {
                    "description": "static number of sharded instances to spawn",
                    "oneOf": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "integer"
                      },
                      {
                        "type": "null"
                      }
                    ],
                    "x-kubernetes-int-or-string": true
                  },
                  "delay": {
                    "description": "delay before the step",
                    "pattern": "^((0|[1-9][0-9]*)h)?((0|[1-9][0-9]*)m)?((0|[1-9][0-9]*)s)?((0|[1-9][0-9]*)ms)?$",
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "description": {
                    "description": "worker description to display",
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "execute": {
                    "additionalProperties": false,
                    "description": "execute other Testkube resources",
                    "properties": {
                      "async": {
                        "description": "only schedule the resources, don't watch the results (unless it is needed for parallelism)",
                        "type": [
                          "boolean",
                          "null"
                        ]
                      },
                      "parallelism": {
                        "description": "how many resources could be scheduled in parallel",
                        "format": "int32",
                        "type": [
                          "integer",
                          "null"
                        ]
                      },
                      "tests": {
                        "description": "tests to run",
                        "items": {
                          "additionalProperties": false,
                          "properties": {
                            "count": {
                              "description": "static number of sharded instances to spawn",
                              "oneOf": [
                                {
                                  "type": "string"
                                },
                                {
                                  "type": "integer"
                                },
                                {
                                  "type": "null"
                                }
                              ],
                              "x-kubernetes-int-or-string": true
                            },
                            "description": {
                              "description": "test execution description to display",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "executionRequest": {
                              "additionalProperties": false,
                              "description": "pass the execution request overrides",
                              "properties": {
                                "activeDeadlineSeconds": {
                                  "description": "Optional duration in seconds the pod may be active on the node relative to\nStartTime before the system will actively try to mark it failed and kill associated containers.\nValue must be a positive integer.",
                                  "format": "int64",
                                  "type": [
                                    "integer",
                                    "null"
                                  ]
                                },
                                "args": {
                                  "description": "additional executor binary arguments",
                                  "items": {
                                    "type": "string"
                                  },
                                  "type": [
                                    "array",
                                    "null"
                                  ]
                                },
                                "argsMode": {
                                  "description": "usage mode for arguments",
                                  "enum": [
                                    "append",
                                    "override",
                                    "replace"
                                  ],
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "artifactRequest": {
                                  "additionalProperties": false,
                                  "description": "artifact request body with test artifacts",
                                  "properties": {
                                    "dirs": {
                                      "description": "artifact directories for scraping",
                                      "items": {
                                        "type": "string"
                                      },
                                      "type": [
                                        "array",
                                        "null"
                                      ]
                                    },
                                    "masks": {
                                      "description": "regexp to filter scraped artifacts, single or comma separated",
                                      "items": {
                                        "type": "string"
                                      },
                                      "type": [
                                        "array",
                                        "null"
                                      ]
                                    },
                                    "omitFolderPerExecution": {
                                      "description": "don't use a separate folder for execution artifacts",
                                      "type": [
                                        "boolean",
                                        "null"
                                      ]
                                    },
                                    "sharedBetweenPods": {
                                      "description": "whether to share volume between pods",
                                      "type": [
                                        "boolean",
                                        "null"
                                      ]
                                    },
                                    "sidecarScraper": {
                                      "description": "run scraper as pod sidecar container",
                                      "type": [
                                        "boolean",
                                        "null"
                                      ]
                                    },
                                    "storageBucket": {
                                      "description": "artifact bucket storage",
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "storageClassName": {
                                      "description": "artifact storage class name for container executor",
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "useDefaultStorageClassName": {
                                      "description": "whether to use default storage class name",
                                      "type": [
                                        "boolean",
                                        "null"
                                      ]
                                    },
                                    "volumeMountPath": {
                                      "description": "artifact volume mount path for container executor",
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    }
                                  },
                                  "type": [
                                    "object",
                                    "null"
                                  ]
                                },
                                "command": {
                                  "description": "executor binary command",
                                  "items": {
                                    "type": "string"
                                  },
                                  "type": [
                                    "array",
                                    "null"
                                  ]
                                },
                                "cronJobTemplate": {
                                  "description": "cron job template extensions",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "envConfigMaps": {
                                  "description": "config map references",
                                  "items": {
                                    "additionalProperties": false,
                                    "description": "Reference to env resource",
                                    "properties": {
                                      "mapToVariables": {
                                        "description": "whether we shoud map to variables from resource",
                                        "type": [
                                          "boolean",
                                          "null"
                                        ]
                                      },
                                      "mount": {
                                        "description": "whether we shoud mount resource",
                                        "type": [
                                          "boolean",
                                          "null"
                                        ]
                                      },
                                      "mountPath": {
                                        "description": "where we shoud mount resource",
                                        "type": [
                                          "string",
                                          "null"
                                        ]
                                      },
                                      "reference": {
                                        "additionalProperties": false,
                                        "description": "LocalObjectReference contains enough information to let you locate the\nreferenced object inside the same namespace.",
                                        "properties": {
                                          "name": {
                                            "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                                            "type": [
                                              "string",
                                              "null"
                                            ]
                                          }
                                        },
                                        "type": "object",
                                        "x-kubernetes-map-type": "atomic"
                                      }
                                    },
                                    "required": [
                                      "reference"
                                    ],
                                    "type": "object"
                                  },
                                  "type": [
                                    "array",
                                    "null"
                                  ]
                                },
                                "envSecrets": {
                                  "description": "secret references",
                                  "items": {
                                    "additionalProperties": false,
                                    "description": "Reference to env resource",
                                    "properties": {
                                      "mapToVariables": {
                                        "description": "whether we shoud map to variables from resource",
                                        "type": [
                                          "boolean",
                                          "null"
                                        ]
                                      },
                                      "mount": {
                                        "description": "whether we shoud mount resource",
                                        "type": [
                                          "boolean",
                                          "null"
                                        ]
                                      },
                                      "mountPath": {
                                        "description": "where we shoud mount resource",
                                        "type": [
                                          "string",
                                          "null"
                                        ]
                                      },
                                      "reference": {
                                        "additionalProperties": false,
                                        "description": "LocalObjectReference contains enough information to let you locate the\nreferenced object inside the same namespace.",
                                        "properties": {
                                          "name": {
                                            "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                                            "type": [
                                              "string",
                                              "null"
                                            ]
                                          }
                                        },
                                        "type": "object",
                                        "x-kubernetes-map-type": "atomic"
                                      }
                                    },
                                    "required": [
                                      "reference"
                                    ],
                                    "type": "object"
                                  },
                                  "type": [
                                    "array",
                                    "null"
                                  ]
                                },
                                "executePostRunScriptBeforeScraping": {
                                  "description": "execute post run script before scraping (prebuilt executor only)",
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                },
                                "executionLabels": {
                                  "additionalProperties": {
                                    "type": "string"
                                  },
                                  "description": "test execution labels",
                                  "type": [
                                    "object",
                                    "null"
                                  ]
                                },
                                "executionNamespace": {
                                  "description": "namespace for test execution (Pro edition only)",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "httpProxy": {
                                  "description": "http proxy for executor containers",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "httpsProxy": {
                                  "description": "https proxy for executor containers",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "image": {
                                  "description": "container executor image",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "imagePullSecrets": {
                                  "description": "container executor image pull secrets",
                                  "items": {
                                    "additionalProperties": false,
                                    "description": "LocalObjectReference contains enough information to let you locate the\nreferenced object inside the same namespace.",
                                    "properties": {
                                      "name": {
                                        "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                                        "type": [
                                          "string",
                                          "null"
                                        ]
                                      }
                                    },
                                    "type": "object",
                                    "x-kubernetes-map-type": "atomic"
                                  },
                                  "type": [
                                    "array",
                                    "null"
                                  ]
                                },
                                "isVariablesFileUploaded": {
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                },
                                "jobTemplate": {
                                  "description": "job template extensions",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "name": {
                                  "description": "test execution custom name",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "negativeTest": {
                                  "description": "negative test will fail the execution if it is a success and it will succeed if it is a failure",
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                },
                                "postRunScript": {
                                  "description": "script to run after test execution",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "preRunScript": {
                                  "description": "script to run before test execution",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "scraperTemplate": {
                                  "description": "scraper template extensions",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "sourceScripts": {
                                  "description": "run scripts using source command (container executor only)",
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                },
                                "sync": {
                                  "description": "whether to start execution sync or async",
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                },
                                "testSecretUUID": {
                                  "description": "test secret uuid",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "variables": {
                                  "additionalProperties": {
                                    "additionalProperties": false,
                                    "properties": {
                                      "name": {
                                        "description": "variable name",
                                        "type": [
                                          "string",
                                          "null"
                                        ]
                                      },
                                      "type": {
                                        "description": "variable type",
                                        "type": [
                                          "string",
                                          "null"
                                        ]
                                      },
                                      "value": {
                                        "description": "variable string value",
                                        "type": [
                                          "string",
                                          "null"
                                        ]
                                      },
                                      "valueFrom": {
                                        "additionalProperties": false,
                                        "description": "or load it from var source",
                                        "properties": {
                                          "configMapKeyRef": {
                                            "additionalProperties": false,
                                            "properties": {
                                              "key": {
                                                "type": "string"
                                              },
                                              "name": {
                                                "type": [
                                                  "string",
                                                  "null"
                                                ]
                                              },
                                              "optional": {
                                                "type": [
                                                  "boolean",
                                                  "null"
                                                ]
                                              }
                                            },
                                            "required": [
                                              "key"
                                            ],
                                            "type": [
                                              "object",
                                              "null"
                                            ],
                                            "x-kubernetes-map-type": "atomic"
                                          },
                                          "fieldRef": {
                                            "additionalProperties": false,
                                            "properties": {
                                              "apiVersion": {
                                                "type": [
                                                  "string",
                                                  "null"
                                                ]
                                              },
                                              "fieldPath": {
                                                "type": "string"
                                              }
                                            },
                                            "required": [
                                              "fieldPath"
                                            ],
                                            "type": [
                                              "object",
                                              "null"
                                            ],
                                            "x-kubernetes-map-type": "atomic"
                                          },
                                          "resourceFieldRef": {
                                            "additionalProperties": false,
                                            "properties": {
                                              "containerName": {
                                                "type": [
                                                  "string",
                                                  "null"
                                                ]
                                              },
                                              "divisor": {
                                                "oneOf": [
                                                  {
                                                    "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                                    "type": "string"
                                                  },
                                                  {
                                                    "type": "integer"
                                                  },
                                                  {
                                                    "type": "null"
                                                  }
                                                ],
                                                "x-kubernetes-int-or-string": true
                                              },
                                              "resource": {
                                                "type": "string"
                                              }
                                            },
                                            "required": [
                                              "resource"
                                            ],
                                            "type": [
                                              "object",
                                              "null"
                                            ],
                                            "x-kubernetes-map-type": "atomic"
                                          },
                                          "secretKeyRef": {
                                            "additionalProperties": false,
                                            "properties": {
                                              "key": {
                                                "type": "string"
                                              },
                                              "name": {
                                                "type": [
                                                  "string",
                                                  "null"
                                                ]
                                              },
                                              "optional": {
                                                "type": [
                                                  "boolean",
                                                  "null"
                                                ]
                                              }
                                            },
                                            "required": [
                                              "key"
                                            ],
                                            "type": [
                                              "object",
                                              "null"
                                            ],
                                            "x-kubernetes-map-type": "atomic"
                                          }
                                        },
                                        "type": [
                                          "object",
                                          "null"
                                        ]
                                      }
                                    },
                                    "type": "object"
                                  },
                                  "type": [
                                    "object",
                                    "null"
                                  ]
                                },
                                "variablesFile": {
                                  "description": "variables file content - need to be in format for particular executor (e.g. postman envs file)",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                }
                              },
                              "type": [
                                "object",
                                "null"
                              ]
                            },
                            "matrix": {
                              "description": "matrix of parameters to spawn instances (static)",
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-preserve-unknown-fields": true
                            },
                            "maxCount": {
                              "description": "dynamic number of sharded instances to spawn - it will be lowered if there is not enough sharded values",
                              "oneOf": [
                                {
                                  "type": "string"
                                },
                                {
                                  "type": "integer"
                                },
                                {
                                  "type": "null"
                                }
                              ],
                              "x-kubernetes-int-or-string": true
                            },
                            "name": {
                              "description": "test name to run",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "shards": {
                              "description": "parameters that should be distributed across sharded instances",
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-preserve-unknown-fields": true
                            },
                            "tarball": {
                              "additionalProperties": {
                                "type": "object",
                                "x-kubernetes-preserve-unknown-fields": true
                              },
                              "description": "pack some data from the original file system to serve them down",
                              "type": [
                                "object",
                                "null"
                              ]
                            }
                          },
                          "type": "object"
                        },
                        "type": [
                          "array",
                          "null"
                        ]
                      },
                      "workflows": {
                        "description": "workflows to run",
                        "items": {
                          "additionalProperties": false,
                          "properties": {
                            "config": {
                              "additionalProperties": {
                                "oneOf": [
                                  {
                                    "type": "string"
                                  },
                                  {
                                    "type": "integer"
                                  }
                                ],
                                "x-kubernetes-int-or-string": true
                              },
                              "description": "configuration to pass for the workflow",
                              "type": [
                                "object",
                                "null"
                              ]
                            },
                            "count": {
                              "description": "static number of sharded instances to spawn",
                              "oneOf": [
                                {
                                  "type": "string"
                                },
                                {
                                  "type": "integer"
                                },
                                {
                                  "type": "null"
                                }
                              ],
                              "x-kubernetes-int-or-string": true
                            },
                            "description": {
                              "description": "test workflow execution description to display",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "executionName": {
                              "description": "unique execution name to use",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "matrix": {
                              "description": "matrix of parameters to spawn instances (static)",
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-preserve-unknown-fields": true
                            },
                            "maxCount": {
                              "description": "dynamic number of sharded instances to spawn - it will be lowered if there is not enough sharded values",
                              "oneOf": [
                                {
                                  "type": "string"
                                },
                                {
                                  "type": "integer"
                                },
                                {
                                  "type": "null"
                                }
                              ],
                              "x-kubernetes-int-or-string": true
                            },
                            "name": {
                              "description": "workflow name to run",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "shards": {
                              "description": "parameters that should be distributed across sharded instances",
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-preserve-unknown-fields": true
                            },
                            "tarball": {
                              "additionalProperties": {
                                "type": "object",
                                "x-kubernetes-preserve-unknown-fields": true
                              },
                              "description": "pack some data from the original file system to serve them down",
                              "type": [
                                "object",
                                "null"
                              ]
                            }
                          },
                          "type": "object"
                        },
                        "type": [
                          "array",
                          "null"
                        ]
                      }
                    },
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "fetch": {
                    "description": "instructions for fetching files back",
                    "items": {
                      "required": [
                        "from"
                      ],
                      "type": "object",
                      "x-kubernetes-preserve-unknown-fields": true
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "logs": {
                    "description": "should save logs for the parallel step (true if not specified)",
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "matrix": {
                    "description": "matrix of parameters to spawn instances (static)",
                    "type": [
                      "object",
                      "null"
                    ],
                    "x-kubernetes-preserve-unknown-fields": true
                  },
                  "maxCount": {
                    "description": "dynamic number of sharded instances to spawn - it will be lowered if there is not enough sharded values",
                    "oneOf": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "integer"
                      },
                      {
                        "type": "null"
                      }
                    ],
                    "x-kubernetes-int-or-string": true
                  },
                  "negative": {
                    "description": "is the step expected to fail",
                    "type": [
                      "boolean",
                      "null"
                    ]
                  },
                  "optional": {
                    "description": "is the step optional, so its failure won't affect the TestWorkflow result",
                    "type": [
                      "boolean",
                      "null"
                    ]
                  },
                  "parallelism": {
                    "description": "how many resources could be scheduled in parallel",
                    "format": "int32",
                    "type": [
                      "integer",
                      "null"
                    ]
                  },
                  "paused": {
                    "description": "pause the step initially",
                    "type": [
                      "boolean",
                      "null"
                    ]
                  },
                  "retry": {
                    "additionalProperties": false,
                    "description": "policy for retrying the step",
                    "properties": {
                      "count": {
                        "description": "how many times at most it should retry",
                        "format": "int32",
                        "minimum": 1,
                        "type": [
                          "integer",
                          "null"
                        ]
                      },
                      "until": {
                        "description": "until when it should retry (defaults to: \"passed\")",
                        "type": [
                          "string",
                          "null"
                        ]
                      }
                    },
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "run": {
                    "additionalProperties": false,
                    "description": "run specific container in the current step",
                    "properties": {
                      "args": {
                        "description": "override default command in the image (empty string to default CMD of the image)",
                        "items": {
                          "type": "string"
                        },
                        "type": [
                          "array",
                          "null"
                        ]
                      },
                      "command": {
                        "description": "override default command in the image (empty string to default ENTRYPOINT of the image)",
                        "items": {
                          "type": "string"
                        },
                        "type": [
                          "array",
                          "null"
                        ]
                      },
                      "env": {
                        "description": "environment variables to append to the container",
                        "items": {
                          "additionalProperties": false,
                          "description": "EnvVar represents an environment variable present in a Container.",
                          "properties": {
                            "name": {
                              "description": "Name of the environment variable. Must be a C_IDENTIFIER.",
                              "type": "string"
                            },
                            "value": {
                              "description": "Variable references $(VAR_NAME) are expanded\nusing the previously defined environment variables in the container and\nany service environment variables. If a variable cannot be resolved,\nthe reference in the input string will be unchanged. Double $$ are reduced\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e.\n\"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\".\nEscaped references will never be expanded, regardless of whether the variable\nexists or not.\nDefaults to \"\".",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "valueFrom": {
                              "additionalProperties": false,
                              "description": "Source for the environment variable's value. Cannot be used if value is not empty.",
                              "properties": {
                                "configMapKeyRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "key": {
                                      "type": "string"
                                    },
                                    "name": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "optional": {
                                      "type": [
                                        "boolean",
                                        "null"
                                      ]
                                    }
                                  },
                                  "required": [
                                    "key"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                },
                                "fieldRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "apiVersion": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "fieldPath": {
                                      "type": "string"
                                    }
                                  },
                                  "required": [
                                    "fieldPath"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                },
                                "resourceFieldRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "containerName": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "divisor": {
                                      "oneOf": [
                                        {
                                          "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                          "type": "string"
                                        },
                                        {
                                          "type": "integer"
                                        },
                                        {
                                          "type": "null"
                                        }
                                      ],
                                      "x-kubernetes-int-or-string": true
                                    },
                                    "resource": {
                                      "type": "string"
                                    }
                                  },
                                  "required": [
                                    "resource"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                },
                                "secretKeyRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "key": {
                                      "type": "string"
                                    },
                                    "name": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "optional": {
                                      "type": [
                                        "boolean",
                                        "null"
                                      ]
                                    }
                                  },
                                  "required": [
                                    "key"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                }
                              },
                              "type": [
                                "object",
                                "null"
                              ]
                            }
                          },
                          "required": [
                            "name"
                          ],
                          "type": "object"
                        },
                        "type": [
                          "array",
                          "null"
                        ]
                      },
                      "envFrom": {
                        "description": "external environment variables to append to the container",
                        "items": {
                          "additionalProperties": false,
                          "description": "EnvFromSource represents the source of a set of ConfigMaps",
                          "properties": {
                            "configMapRef": {
                              "additionalProperties": false,
                              "description": "The ConfigMap to select from",
                              "properties": {
                                "name": {
                                  "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "optional": {
                                  "description": "Specify whether the ConfigMap must be defined",
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                }
                              },
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-map-type": "atomic"
                            },
                            "prefix": {
                              "description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "secretRef": {
                              "additionalProperties": false,
                              "description": "The Secret to select from",
                              "properties": {
                                "name": {
                                  "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "optional": {
                                  "description": "Specify whether the Secret must be defined",
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                }
                              },
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-map-type": "atomic"
                            }
                          },
                          "type": "object"
                        },
                        "type": [
                          "array",
                          "null"
                        ]
                      },
                      "image": {
                        "description": "image to be used for the container",
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "imagePullPolicy": {
                        "description": "pulling policy for the image",
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "resources": {
                        "additionalProperties": false,
                        "description": "expected resources for the container",
                        "properties": {
                          "limits": {
                            "additionalProperties": {
                              "oneOf": [
                                {
                                  "type": "string"
                                },
                                {
                                  "type": "integer"
                                }
                              ],
                              "x-kubernetes-int-or-string": true
                            },
                            "description": "resource limits for the container",
                            "type": [
                              "object",
                              "null"
                            ]
                          },
                          "requests": {
                            "additionalProperties": {
                              "oneOf": [
                                {
                                  "type": "string"
                                },
                                {
                                  "type": "integer"
                                }
                              ],
                              "x-kubernetes-int-or-string": true
                            },
                            "description": "resource requests for the container",
                            "type": [
                              "object",
                              "null"
                            ]
                          }
                        },
                        "type": [
                          "object",
                          "null"
                        ]
                      },
                      "securityContext": {
                        "additionalProperties": false,
                        "properties": {
                          "allowPrivilegeEscalation": {
                            "type": [
                              "boolean",
                              "null"
                            ]
                          },
                          "capabilities": {
                            "additionalProperties": false,
                            "properties": {
                              "add": {
                                "items": {
                                  "type": "string"
                                },
                                "type": [
                                  "array",
                                  "null"
                                ]
                              },
                              "drop": {
                                "items": {
                                  "type": "string"
                                },
                                "type": [
                                  "array",
                                  "null"
                                ]
                              }
                            },
                            "type": [
                              "object",
                              "null"
                            ]
                          },
                          "privileged": {
                            "type": [
                              "boolean",
                              "null"
                            ]
                          },
                          "procMount": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "readOnlyRootFilesystem": {
                            "type": [
                              "boolean",
                              "null"
                            ]
                          },
                          "runAsGroup": {
                            "format": "int64",
                            "type": [
                              "integer",
                              "null"
                            ]
                          },
                          "runAsNonRoot": {
                            "type": [
                              "boolean",
                              "null"
                            ]
                          },
                          "runAsUser": {
                            "format": "int64",
                            "type": [
                              "integer",
                              "null"
                            ]
                          },
                          "seLinuxOptions": {
                            "additionalProperties": false,
                            "properties": {
                              "level": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "role": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "type": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "user": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              }
                            },
                            "type": [
                              "object",
                              "null"
                            ]
                          },
                          "seccompProfile": {
                            "additionalProperties": false,
                            "properties": {
                              "localhostProfile": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "type": {
                                "type": "string"
                              }
                            },
                            "required": [
                              "type"
                            ],
                            "type": [
                              "object",
                              "null"
                            ]
                          },
                          "windowsOptions": {
                            "additionalProperties": false,
                            "properties": {
                              "gmsaCredentialSpec": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "gmsaCredentialSpecName": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "hostProcess": {
                                "type": [
                                  "boolean",
                                  "null"
                                ]
                              },
                              "runAsUserName": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              }
                            },
                            "type": [
                              "object",
                              "null"
                            ]
                          }
                        },
                        "type": [
                          "object",
                          "null"
                        ]
                      },
                      "shell": {
                        "description": "script to run in a default shell for the container",
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "volumeMounts": {
                        "items": {
                          "additionalProperties": false,
                          "properties": {
                            "mountPath": {
                              "type": "string"
                            },
                            "mountPropagation": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "name": {
                              "type": "string"
                            },
                            "readOnly": {
                              "type": [
                                "boolean",
                                "null"
                              ]
                            },
                            "subPath": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "subPathExpr": {
                              "type": [
                                "string",
                                "null"
                              ]
                            }
                          },
                          "required": [
                            "mountPath",
                            "name"
                          ],
                          "type": "object"
                        },
                        "type": [
                          "array",
                          "null"
                        ]
                      },
                      "workingDir": {
                        "description": "override default working directory in the image (empty string to default WORKDIR for the image)",
                        "type": [
                          "string",
                          "null"
                        ]
                      }
                    },
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "shards": {
                    "description": "parameters that should be distributed across sharded instances",
                    "type": [
                      "object",
                      "null"
                    ],
                    "x-kubernetes-preserve-unknown-fields": true
                  },
                  "shell": {
                    "description": "script to run in a default shell for the container",
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "timeout": {
                    "description": "maximum time this step may take",
                    "pattern": "^((0|[1-9][0-9]*)h)?((0|[1-9][0-9]*)m)?((0|[1-9][0-9]*)s)?((0|[1-9][0-9]*)ms)?$",
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "transfer": {
                    "description": "instructions for transferring files",
                    "items": {
                      "required": [
                        "from"
                      ],
                      "type": "object",
                      "x-kubernetes-preserve-unknown-fields": true
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  }
                },
                "type": [
                  "object",
                  "null"
                ],
                "x-kubernetes-preserve-unknown-fields": true
              },
              "paused": {
                "description": "pause the step initially",
                "type": [
                  "boolean",
                  "null"
                ]
              },
              "pure": {
                "description": "mark the step as pure, applying optimizations to merge the containers together",
                "type": [
                  "boolean",
                  "null"
                ]
              },
              "retry": {
                "additionalProperties": false,
                "description": "policy for retrying the step",
                "properties": {
                  "count": {
                    "description": "how many times at most it should retry",
                    "format": "int32",
                    "minimum": 1,
                    "type": [
                      "integer",
                      "null"
                    ]
                  },
                  "until": {
                    "description": "until when it should retry (defaults to: \"passed\")",
                    "type": [
                      "string",
                      "null"
                    ]
                  }
                },
                "type": [
                  "object",
                  "null"
                ]
              },
              "run": {
                "additionalProperties": false,
                "description": "run specific container in the current step",
                "properties": {
                  "args": {
                    "description": "override default command in the image (empty string to default CMD of the image)",
                    "items": {
                      "type": "string"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "command": {
                    "description": "override default command in the image (empty string to default ENTRYPOINT of the image)",
                    "items": {
                      "type": "string"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "env": {
                    "description": "environment variables to append to the container",
                    "items": {
                      "additionalProperties": false,
                      "description": "EnvVar represents an environment variable present in a Container.",
                      "properties": {
                        "name": {
                          "description": "Name of the environment variable. Must be a C_IDENTIFIER.",
                          "type": "string"
                        },
                        "value": {
                          "description": "Variable references $(VAR_NAME) are expanded\nusing the previously defined environment variables in the container and\nany service environment variables. If a variable cannot be resolved,\nthe reference in the input string will be unchanged. Double $$ are reduced\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e.\n\"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\".\nEscaped references will never be expanded, regardless of whether the variable\nexists or not.\nDefaults to \"\".",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "valueFrom": {
                          "additionalProperties": false,
                          "description": "Source for the environment variable's value. Cannot be used if value is not empty.",
                          "properties": {
                            "configMapKeyRef": {
                              "additionalProperties": false,
                              "properties": {
                                "key": {
                                  "type": "string"
                                },
                                "name": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "optional": {
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                }
                              },
                              "required": [
                                "key"
                              ],
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-map-type": "atomic"
                            },
                            "fieldRef": {
                              "additionalProperties": false,
                              "properties": {
                                "apiVersion": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "fieldPath": {
                                  "type": "string"
                                }
                              },
                              "required": [
                                "fieldPath"
                              ],
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-map-type": "atomic"
                            },
                            "resourceFieldRef": {
                              "additionalProperties": false,
                              "properties": {
                                "containerName": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "divisor": {
                                  "oneOf": [
                                    {
                                      "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                      "type": "string"
                                    },
                                    {
                                      "type": "integer"
                                    },
                                    {
                                      "type": "null"
                                    }
                                  ],
                                  "x-kubernetes-int-or-string": true
                                },
                                "resource": {
                                  "type": "string"
                                }
                              },
                              "required": [
                                "resource"
                              ],
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-map-type": "atomic"
                            },
                            "secretKeyRef": {
                              "additionalProperties": false,
                              "properties": {
                                "key": {
                                  "type": "string"
                                },
                                "name": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "optional": {
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                }
                              },
                              "required": [
                                "key"
                              ],
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-map-type": "atomic"
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ]
                        }
                      },
                      "required": [
                        "name"
                      ],
                      "type": "object"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "envFrom": {
                    "description": "external environment variables to append to the container",
                    "items": {
                      "additionalProperties": false,
                      "description": "EnvFromSource represents the source of a set of ConfigMaps",
                      "properties": {
                        "configMapRef": {
                          "additionalProperties": false,
                          "description": "The ConfigMap to select from",
                          "properties": {
                            "name": {
                              "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "optional": {
                              "description": "Specify whether the ConfigMap must be defined",
                              "type": [
                                "boolean",
                                "null"
                              ]
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ],
                          "x-kubernetes-map-type": "atomic"
                        },
                        "prefix": {
                          "description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "secretRef": {
                          "additionalProperties": false,
                          "description": "The Secret to select from",
                          "properties": {
                            "name": {
                              "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "optional": {
                              "description": "Specify whether the Secret must be defined",
                              "type": [
                                "boolean",
                                "null"
                              ]
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ],
                          "x-kubernetes-map-type": "atomic"
                        }
                      },
                      "type": "object"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "image": {
                    "description": "image to be used for the container",
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "imagePullPolicy": {
                    "description": "pulling policy for the image",
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "resources": {
                    "additionalProperties": false,
                    "description": "expected resources for the container",
                    "properties": {
                      "limits": {
                        "additionalProperties": {
                          "oneOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "integer"
                            }
                          ],
                          "x-kubernetes-int-or-string": true
                        },
                        "description": "resource limits for the container",
                        "type": [
                          "object",
                          "null"
                        ]
                      },
                      "requests": {
                        "additionalProperties": {
                          "oneOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "integer"
                            }
                          ],
                          "x-kubernetes-int-or-string": true
                        },
                        "description": "resource requests for the container",
                        "type": [
                          "object",
                          "null"
                        ]
                      }
                    },
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "securityContext": {
                    "additionalProperties": false,
                    "properties": {
                      "allowPrivilegeEscalation": {
                        "type": [
                          "boolean",
                          "null"
                        ]
                      },
                      "capabilities": {
                        "additionalProperties": false,
                        "properties": {
                          "add": {
                            "items": {
                              "type": "string"
                            },
                            "type": [
                              "array",
                              "null"
                            ]
                          },
                          "drop": {
                            "items": {
                              "type": "string"
                            },
                            "type": [
                              "array",
                              "null"
                            ]
                          }
                        },
                        "type": [
                          "object",
                          "null"
                        ]
                      },
                      "privileged": {
                        "type": [
                          "boolean",
                          "null"
                        ]
                      },
                      "procMount": {
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "readOnlyRootFilesystem": {
                        "type": [
                          "boolean",
                          "null"
                        ]
                      },
                      "runAsGroup": {
                        "format": "int64",
                        "type": [
                          "integer",
                          "null"
                        ]
                      },
                      "runAsNonRoot": {
                        "type": [
                          "boolean",
                          "null"
                        ]
                      },
                      "runAsUser": {
                        "format": "int64",
                        "type": [
                          "integer",
                          "null"
                        ]
                      },
                      "seLinuxOptions": {
                        "additionalProperties": false,
                        "properties": {
                          "level": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "role": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "type": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "user": {
                            "type": [
                              "string",
                              "null"
                            ]
                          }
                        },
                        "type": [
                          "object",
                          "null"
                        ]
                      },
                      "seccompProfile": {
                        "additionalProperties": false,
                        "properties": {
                          "localhostProfile": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "type": {
                            "type": "string"
                          }
                        },
                        "required": [
                          "type"
                        ],
                        "type": [
                          "object",
                          "null"
                        ]
                      },
                      "windowsOptions": {
                        "additionalProperties": false,
                        "properties": {
                          "gmsaCredentialSpec": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "gmsaCredentialSpecName": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "hostProcess": {
                            "type": [
                              "boolean",
                              "null"
                            ]
                          },
                          "runAsUserName": {
                            "type": [
                              "string",
                              "null"
                            ]
                          }
                        },
                        "type": [
                          "object",
                          "null"
                        ]
                      }
                    },
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "shell": {
                    "description": "script to run in a default shell for the container",
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "volumeMounts": {
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "mountPath": {
                          "type": "string"
                        },
                        "mountPropagation": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "name": {
                          "type": "string"
                        },
                        "readOnly": {
                          "type": [
                            "boolean",
                            "null"
                          ]
                        },
                        "subPath": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "subPathExpr": {
                          "type": [
                            "string",
                            "null"
                          ]
                        }
                      },
                      "required": [
                        "mountPath",
                        "name"
                      ],
                      "type": "object"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "workingDir": {
                    "description": "override default working directory in the image (empty string to default WORKDIR for the image)",
                    "type": [
                      "string",
                      "null"
                    ]
                  }
                },
                "type": [
                  "object",
                  "null"
                ]
              },
              "services": {
                "additionalProperties": {
                  "additionalProperties": false,
                  "properties": {
                    "args": {
                      "description": "override default command in the image (empty string to default CMD of the image)",
                      "items": {
                        "type": "string"
                      },
                      "type": [
                        "array",
                        "null"
                      ]
                    },
                    "command": {
                      "description": "override default command in the image (empty string to default ENTRYPOINT of the image)",
                      "items": {
                        "type": "string"
                      },
                      "type": [
                        "array",
                        "null"
                      ]
                    },
                    "content": {
                      "additionalProperties": false,
                      "description": "global content that should be fetched into all containers",
                      "properties": {
                        "files": {
                          "description": "files to load",
                          "items": {
                            "additionalProperties": false,
                            "properties": {
                              "content": {
                                "description": "plain-text content to put inside",
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "contentFrom": {
                                "additionalProperties": false,
                                "description": "external source to use",
                                "properties": {
                                  "configMapKeyRef": {
                                    "additionalProperties": false,
                                    "properties": {
                                      "key": {
                                        "type": "string"
                                      },
                                      "name": {
                                        "type": [
                                          "string",
                                          "null"
                                        ]
                                      },
                                      "optional": {
                                        "type": [
                                          "boolean",
                                          "null"
                                        ]
                                      }
                                    },
                                    "required": [
                                      "key"
                                    ],
                                    "type": [
                                      "object",
                                      "null"
                                    ],
                                    "x-kubernetes-map-type": "atomic"
                                  },
                                  "fieldRef": {
                                    "additionalProperties": false,
                                    "properties": {
                                      "apiVersion": {
                                        "type": [
                                          "string",
                                          "null"
                                        ]
                                      },
                                      "fieldPath": {
                                        "type": "string"
                                      }
                                    },
                                    "required": [
                                      "fieldPath"
                                    ],
                                    "type": [
                                      "object",
                                      "null"
                                    ],
                                    "x-kubernetes-map-type": "atomic"
                                  },
                                  "resourceFieldRef": {
                                    "additionalProperties": false,
                                    "properties": {
                                      "containerName": {
                                        "type": [
                                          "string",
                                          "null"
                                        ]
                                      },
                                      "divisor": {
                                        "oneOf": [
                                          {
                                            "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                            "type": "string"
                                          },
                                          {
                                            "type": "integer"
                                          },
                                          {
                                            "type": "null"
                                          }
                                        ],
                                        "x-kubernetes-int-or-string": true
                                      },
                                      "resource": {
                                        "type": "string"
                                      }
                                    },
                                    "required": [
                                      "resource"
                                    ],
                                    "type": [
                                      "object",
                                      "null"
                                    ],
                                    "x-kubernetes-map-type": "atomic"
                                  },
                                  "secretKeyRef": {
                                    "additionalProperties": false,
                                    "properties": {
                                      "key": {
                                        "type": "string"
                                      },
                                      "name": {
                                        "type": [
                                          "string",
                                          "null"
                                        ]
                                      },
                                      "optional": {
                                        "type": [
                                          "boolean",
                                          "null"
                                        ]
                                      }
                                    },
                                    "required": [
                                      "key"
                                    ],
                                    "type": [
                                      "object",
                                      "null"
                                    ],
                                    "x-kubernetes-map-type": "atomic"
                                  }
                                },
                                "type": [
                                  "object",
                                  "null"
                                ]
                              },
                              "mode": {
                                "description": "mode to use for the file",
                                "format": "int32",
                                "type": [
                                  "integer",
                                  "null"
                                ]
                              },
                              "path": {
                                "description": "path where the file should be accessible at",
                                "minLength": 1,
                                "type": "string"
                              }
                            },
                            "required": [
                              "path"
                            ],
                            "type": "object"
                          },
                          "type": [
                            "array",
                            "null"
                          ]
                        },
                        "git": {
                          "additionalProperties": false,
                          "description": "git repository details",
                          "properties": {
                            "authType": {
                              "description": "authorization type for the credentials",
                              "enum": [
                                "basic",
                                "header"
                              ],
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "mountPath": {
                              "description": "where to mount the fetched repository contents (defaults to \"repo\" directory in the data volume)",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "paths": {
                              "description": "paths to fetch for the sparse checkout",
                              "items": {
                                "type": "string"
                              },
                              "type": [
                                "array",
                                "null"
                              ]
                            },
                            "revision": {
                              "description": "branch, commit or a tag name to fetch",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "sshKey": {
                              "description": "plain text SSH private key to fetch with",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "sshKeyFrom": {
                              "additionalProperties": false,
                              "description": "external SSH private key to fetch with",
                              "properties": {
                                "configMapKeyRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "key": {
                                      "type": "string"
                                    },
                                    "name": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "optional": {
                                      "type": [
                                        "boolean",
                                        "null"
                                      ]
                                    }
                                  },
                                  "required": [
                                    "key"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                },
                                "fieldRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "apiVersion": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "fieldPath": {
                                      "type": "string"
                                    }
                                  },
                                  "required": [
                                    "fieldPath"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                },
                                "resourceFieldRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "containerName": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "divisor": {
                                      "oneOf": [
                                        {
                                          "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                          "type": "string"
                                        },
                                        {
                                          "type": "integer"
                                        },
                                        {
                                          "type": "null"
                                        }
                                      ],
                                      "x-kubernetes-int-or-string": true
                                    },
                                    "resource": {
                                      "type": "string"
                                    }
                                  },
                                  "required": [
                                    "resource"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                },
                                "secretKeyRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "key": {
                                      "type": "string"
                                    },
                                    "name": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "optional": {
                                      "type": [
                                        "boolean",
                                        "null"
                                      ]
                                    }
                                  },
                                  "required": [
                                    "key"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                }
                              },
                              "type": [
                                "object",
                                "null"
                              ]
                            },
                            "token": {
                              "description": "plain text token to fetch with",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "tokenFrom": {
                              "additionalProperties": false,
                              "description": "external token to fetch with",
                              "properties": {
                                "configMapKeyRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "key": {
                                      "type": "string"
                                    },
                                    "name": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "optional": {
                                      "type": [
                                        "boolean",
                                        "null"
                                      ]
                                    }
                                  },
                                  "required": [
                                    "key"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                },
                                "fieldRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "apiVersion": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "fieldPath": {
                                      "type": "string"
                                    }
                                  },
                                  "required": [
                                    "fieldPath"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                },
                                "resourceFieldRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "containerName": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "divisor": {
                                      "oneOf": [
                                        {
                                          "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                          "type": "string"
                                        },
                                        {
                                          "type": "integer"
                                        },
                                        {
                                          "type": "null"
                                        }
                                      ],
                                      "x-kubernetes-int-or-string": true
                                    },
                                    "resource": {
                                      "type": "string"
                                    }
                                  },
                                  "required": [
                                    "resource"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                },
                                "secretKeyRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "key": {
                                      "type": "string"
                                    },
                                    "name": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "optional": {
                                      "type": [
                                        "boolean",
                                        "null"
                                      ]
                                    }
                                  },
                                  "required": [
                                    "key"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                }
                              },
                              "type": [
                                "object",
                                "null"
                              ]
                            },
                            "uri": {
                              "description": "uri for the Git repository",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "username": {
                              "description": "plain text username to fetch with",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "usernameFrom": {
                              "additionalProperties": false,
                              "description": "external username to fetch with",
                              "properties": {
                                "configMapKeyRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "key": {
                                      "type": "string"
                                    },
                                    "name": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "optional": {
                                      "type": [
                                        "boolean",
                                        "null"
                                      ]
                                    }
                                  },
                                  "required": [
                                    "key"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                },
                                "fieldRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "apiVersion": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "fieldPath": {
                                      "type": "string"
                                    }
                                  },
                                  "required": [
                                    "fieldPath"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                },
                                "resourceFieldRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "containerName": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "divisor": {
                                      "oneOf": [
                                        {
                                          "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                          "type": "string"
                                        },
                                        {
                                          "type": "integer"
                                        },
                                        {
                                          "type": "null"
                                        }
                                      ],
                                      "x-kubernetes-int-or-string": true
                                    },
                                    "resource": {
                                      "type": "string"
                                    }
                                  },
                                  "required": [
                                    "resource"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                },
                                "secretKeyRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "key": {
                                      "type": "string"
                                    },
                                    "name": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "optional": {
                                      "type": [
                                        "boolean",
                                        "null"
                                      ]
                                    }
                                  },
                                  "required": [
                                    "key"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                }
                              },
                              "type": [
                                "object",
                                "null"
                              ]
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "tarball": {
                          "description": "tarballs to unpack",
                          "items": {
                            "additionalProperties": false,
                            "properties": {
                              "mount": {
                                "description": "should it mount a new volume there",
                                "type": [
                                  "boolean",
                                  "null"
                                ]
                              },
                              "path": {
                                "description": "path where the tarball should be extracted",
                                "type": "string"
                              },
                              "url": {
                                "description": "url for the tarball to extract",
                                "type": "string"
                              }
                            },
                            "required": [
                              "path",
                              "url"
                            ],
                            "type": "object"
                          },
                          "type": [
                            "array",
                            "null"
                          ]
                        }
                      },
                      "type": [
                        "object",
                        "null"
                      ]
                    },
                    "count": {
                      "description": "static number of sharded instances to spawn",
                      "oneOf": [
                        {
                          "type": "string"
                        },
                        {
                          "type": "integer"
                        },
                        {
                          "type": "null"
                        }
                      ],
                      "x-kubernetes-int-or-string": true
                    },
                    "description": {
                      "description": "service description to display",
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "env": {
                      "description": "environment variables to append to the container",
                      "items": {
                        "additionalProperties": false,
                        "description": "EnvVar represents an environment variable present in a Container.",
                        "properties": {
                          "name": {
                            "description": "Name of the environment variable. Must be a C_IDENTIFIER.",
                            "type": "string"
                          },
                          "value": {
                            "description": "Variable references $(VAR_NAME) are expanded\nusing the previously defined environment variables in the container and\nany service environment variables. If a variable cannot be resolved,\nthe reference in the input string will be unchanged. Double $$ are reduced\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e.\n\"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\".\nEscaped references will never be expanded, regardless of whether the variable\nexists or not.\nDefaults to \"\".",
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "valueFrom": {
                            "additionalProperties": false,
                            "description": "Source for the environment variable's value. Cannot be used if value is not empty.",
                            "properties": {
                              "configMapKeyRef": {
                                "additionalProperties": false,
                                "properties": {
                                  "key": {
                                    "type": "string"
                                  },
                                  "name": {
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  },
                                  "optional": {
                                    "type": [
                                      "boolean",
                                      "null"
                                    ]
                                  }
                                },
                                "required": [
                                  "key"
                                ],
                                "type": [
                                  "object",
                                  "null"
                                ],
                                "x-kubernetes-map-type": "atomic"
                              },
                              "fieldRef": {
                                "additionalProperties": false,
                                "properties": {
                                  "apiVersion": {
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  },
                                  "fieldPath": {
                                    "type": "string"
                                  }
                                },
                                "required": [
                                  "fieldPath"
                                ],
                                "type": [
                                  "object",
                                  "null"
                                ],
                                "x-kubernetes-map-type": "atomic"
                              },
                              "resourceFieldRef": {
                                "additionalProperties": false,
                                "properties": {
                                  "containerName": {
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  },
                                  "divisor": {
                                    "oneOf": [
                                      {
                                        "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                        "type": "string"
                                      },
                                      {
                                        "type": "integer"
                                      },
                                      {
                                        "type": "null"
                                      }
                                    ],
                                    "x-kubernetes-int-or-string": true
                                  },
                                  "resource": {
                                    "type": "string"
                                  }
                                },
                                "required": [
                                  "resource"
                                ],
                                "type": [
                                  "object",
                                  "null"
                                ],
                                "x-kubernetes-map-type": "atomic"
                              },
                              "secretKeyRef": {
                                "additionalProperties": false,
                                "properties": {
                                  "key": {
                                    "type": "string"
                                  },
                                  "name": {
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  },
                                  "optional": {
                                    "type": [
                                      "boolean",
                                      "null"
                                    ]
                                  }
                                },
                                "required": [
                                  "key"
                                ],
                                "type": [
                                  "object",
                                  "null"
                                ],
                                "x-kubernetes-map-type": "atomic"
                              }
                            },
                            "type": [
                              "object",
                              "null"
                            ]
                          }
                        },
                        "required": [
                          "name"
                        ],
                        "type": "object"
                      },
                      "type": [
                        "array",
                        "null"
                      ]
                    },
                    "envFrom": {
                      "description": "external environment variables to append to the container",
                      "items": {
                        "additionalProperties": false,
                        "description": "EnvFromSource represents the source of a set of ConfigMaps",
                        "properties": {
                          "configMapRef": {
                            "additionalProperties": false,
                            "description": "The ConfigMap to select from",
                            "properties": {
                              "name": {
                                "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "optional": {
                                "description": "Specify whether the ConfigMap must be defined",
                                "type": [
                                  "boolean",
                                  "null"
                                ]
                              }
                            },
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          },
                          "prefix": {
                            "description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.",
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "secretRef": {
                            "additionalProperties": false,
                            "description": "The Secret to select from",
                            "properties": {
                              "name": {
                                "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "optional": {
                                "description": "Specify whether the Secret must be defined",
                                "type": [
                                  "boolean",
                                  "null"
                                ]
                              }
                            },
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          }
                        },
                        "type": "object"
                      },
                      "type": [
                        "array",
                        "null"
                      ]
                    },
                    "image": {
                      "description": "image to be used for the container",
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "imagePullPolicy": {
                      "description": "pulling policy for the image",
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "logs": {
                      "description": "should save logs for the service (false if not specified)",
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "matrix": {
                      "description": "matrix of parameters to spawn instances (static)",
                      "type": [
                        "object",
                        "null"
                      ],
                      "x-kubernetes-preserve-unknown-fields": true
                    },
                    "maxCount": {
                      "description": "dynamic number of sharded instances to spawn - it will be lowered if there is not enough sharded values",
                      "oneOf": [
                        {
                          "type": "string"
                        },
                        {
                          "type": "integer"
                        },
                        {
                          "type": "null"
                        }
                      ],
                      "x-kubernetes-int-or-string": true
                    },
                    "pod": {
                      "additionalProperties": false,
                      "description": "configuration for the scheduled pod",
                      "properties": {
                        "activeDeadlineSeconds": {
                          "description": "duration in seconds the pod may be active on the node",
                          "format": "int64",
                          "type": [
                            "integer",
                            "null"
                          ]
                        },
                        "affinity": {
                          "x-kubernetes-preserve-unknown-fields": true
                        },
                        "annotations": {
                          "additionalProperties": {
                            "type": "string"
                          },
                          "description": "annotations added to the scheduled pod",
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "dnsConfig": {
                          "additionalProperties": false,
                          "properties": {
                            "nameservers": {
                              "items": {
                                "type": "string"
                              },
                              "type": [
                                "array",
                                "null"
                              ]
                            },
                            "options": {
                              "items": {
                                "additionalProperties": false,
                                "properties": {
                                  "name": {
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  },
                                  "value": {
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  }
                                },
                                "type": "object"
                              },
                              "type": [
                                "array",
                                "null"
                              ]
                            },
                            "searches": {
                              "items": {
                                "type": "string"
                              },
                              "type": [
                                "array",
                                "null"
                              ]
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "dnsPolicy": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "hostAliases": {
                          "items": {
                            "additionalProperties": false,
                            "properties": {
                              "hostnames": {
                                "items": {
                                  "type": "string"
                                },
                                "type": [
                                  "array",
                                  "null"
                                ]
                              },
                              "ip": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              }
                            },
                            "type": "object"
                          },
                          "type": [
                            "array",
                            "null"
                          ]
                        },
                        "hostname": {
                          "description": "Specifies the hostname of the Pod",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "imagePullSecrets": {
                          "description": "references to secrets with credentials for pulling the images from registry",
                          "items": {
                            "additionalProperties": false,
                            "description": "LocalObjectReference contains enough information to let you locate the\nreferenced object inside the same namespace.",
                            "properties": {
                              "name": {
                                "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                                "type": [
                                  "string",
                                  "null"
                                ]
                              }
                            },
                            "type": "object",
                            "x-kubernetes-map-type": "atomic"
                          },
                          "type": [
                            "array",
                            "null"
                          ]
                        },
                        "labels": {
                          "additionalProperties": {
                            "type": "string"
                          },
                          "description": "labels added to the scheduled pod",
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "nodeName": {
                          "description": "NodeName is a request to schedule this pod onto a specific node.",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "nodeSelector": {
                          "additionalProperties": {
                            "type": "string"
                          },
                          "description": "node selector to define on which node the pod should land",
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "preemptionPolicy": {
                          "description": "PreemptionPolicy is the Policy for preempting pods with lower priority.",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "priority": {
                          "description": "The priority value. Various system components use this field to find the priority of the pod.",
                          "format": "int32",
                          "type": [
                            "integer",
                            "null"
                          ]
                        },
                        "priorityClassName": {
                          "description": "If specified, indicates the pod's priority.",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "resourceClaims": {
                          "items": {
                            "additionalProperties": false,
                            "properties": {
                              "name": {
                                "type": "string"
                              },
                              "source": {
                                "additionalProperties": false,
                                "properties": {
                                  "resourceClaimName": {
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  },
                                  "resourceClaimTemplateName": {
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  }
                                },
                                "type": [
                                  "object",
                                  "null"
                                ]
                              }
                            },
                            "required": [
                              "name"
                            ],
                            "type": "object"
                          },
                          "type": [
                            "array",
                            "null"
                          ]
                        },
                        "schedulingGates": {
                          "items": {
                            "additionalProperties": false,
                            "properties": {
                              "name": {
                                "type": "string"
                              }
                            },
                            "required": [
                              "name"
                            ],
                            "type": "object"
                          },
                          "type": [
                            "array",
                            "null"
                          ]
                        },
                        "securityContext": {
                          "additionalProperties": false,
                          "properties": {
                            "fsGroup": {
                              "format": "int64",
                              "type": [
                                "integer",
                                "null"
                              ]
                            },
                            "fsGroupChangePolicy": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "runAsGroup": {
                              "format": "int64",
                              "type": [
                                "integer",
                                "null"
                              ]
                            },
                            "runAsNonRoot": {
                              "type": [
                                "boolean",
                                "null"
                              ]
                            },
                            "runAsUser": {
                              "format": "int64",
                              "type": [
                                "integer",
                                "null"
                              ]
                            },
                            "seLinuxOptions": {
                              "additionalProperties": false,
                              "properties": {
                                "level": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "role": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "type": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "user": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                }
                              },
                              "type": [
                                "object",
                                "null"
                              ]
                            },
                            "seccompProfile": {
                              "additionalProperties": false,
                              "properties": {
                                "localhostProfile": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "type": {
                                  "type": "string"
                                }
                              },
                              "required": [
                                "type"
                              ],
                              "type": [
                                "object",
                                "null"
                              ]
                            },
                            "supplementalGroups": {
                              "items": {
                                "format": "int64",
                                "type": "integer"
                              },
                              "type": [
                                "array",
                                "null"
                              ]
                            },
                            "sysctls": {
                              "items": {
                                "additionalProperties": false,
                                "properties": {
                                  "name": {
                                    "type": "string"
                                  },
                                  "value": {
                                    "type": "string"
                                  }
                                },
                                "required": [
                                  "name",
                                  "value"
                                ],
                                "type": "object"
                              },
                              "type": [
                                "array",
                                "null"
                              ]
                            },
                            "windowsOptions": {
                              "additionalProperties": false,
                              "properties": {
                                "gmsaCredentialSpec": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "gmsaCredentialSpecName": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "hostProcess": {
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                },
                                "runAsUserName": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                }
                              },
                              "type": [
                                "object",
                                "null"
                              ]
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "serviceAccountName": {
                          "description": "default service account name for the scheduled pod",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "subdomain": {
                          "description": "If specified, the fully qualified Pod hostname will be \"\u003chostname\u003e.\u003csubdomain\u003e.\u003cpod namespace\u003e.svc.\u003ccluster domain\u003e\".",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "tolerations": {
                          "items": {
                            "additionalProperties": false,
                            "properties": {
                              "effect": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "key": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "operator": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "tolerationSeconds": {
                                "format": "int64",
                                "type": [
                                  "integer",
                                  "null"
                                ]
                              },
                              "value": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              }
                            },
                            "type": "object"
                          },
                          "type": [
                            "array",
                            "null"
                          ]
                        },
                        "topologySpreadConstraints": {
                          "x-kubernetes-preserve-unknown-fields": true
                        },
                        "volumes": {
                          "x-kubernetes-preserve-unknown-fields": true
                        }
                      },
                      "type": [
                        "object",
                        "null"
                      ]
                    },
                    "readinessProbe": {
                      "additionalProperties": false,
                      "description": "Probe to check if the service has started correctly",
                      "properties": {
                        "exec": {
                          "additionalProperties": false,
                          "description": "Exec specifies the action to take.",
                          "properties": {
                            "command": {
                              "description": "Command is the command line to execute inside the container, the working directory for the\ncommand  is root ('/') in the container's filesystem. The command is simply exec'd, it is\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\na shell, you need to explicitly call out to that shell.\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.",
                              "items": {
                                "type": "string"
                              },
                              "type": [
                                "array",
                                "null"
                              ]
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "failureThreshold": {
                          "description": "Minimum consecutive failures for the probe to be considered failed after having succeeded.\nDefaults to 3. Minimum value is 1.",
                          "format": "int32",
                          "type": [
                            "integer",
                            "null"
                          ]
                        },
                        "grpc": {
                          "additionalProperties": false,
                          "description": "GRPC specifies an action involving a GRPC port.",
                          "properties": {
                            "port": {
                              "description": "Port number of the gRPC service. Number must be in the range 1 to 65535.",
                              "format": "int32",
                              "type": "integer"
                            },
                            "service": {
                              "description": "Service is the name of the service to place in the gRPC HealthCheckRequest\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\n\n\nIf this is not specified, the default behavior is defined by gRPC.",
                              "type": [
                                "string",
                                "null"
                              ]
                            }
                          },
                          "required": [
                            "port"
                          ],
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "httpGet": {
                          "additionalProperties": false,
                          "description": "HTTPGet specifies the http request to perform.",
                          "properties": {
                            "host": {
                              "description": "Host name to connect to, defaults to the pod IP. You probably want to set\n\"Host\" in httpHeaders instead.",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "httpHeaders": {
                              "description": "Custom headers to set in the request. HTTP allows repeated headers.",
                              "items": {
                                "additionalProperties": false,
                                "description": "HTTPHeader describes a custom header to be used in HTTP probes",
                                "properties": {
                                  "name": {
                                    "description": "The header field name.\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.",
                                    "type": "string"
                                  },
                                  "value": {
                                    "description": "The header field value",
                                    "type": "string"
                                  }
                                },
                                "required": [
                                  "name",
                                  "value"
                                ],
                                "type": "object"
                              },
                              "type": [
                                "array",
                                "null"
                              ]
                            },
                            "path": {
                              "description": "Path to access on the HTTP server.",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "port": {
                              "description": "Name or number of the port to access on the container.\nNumber must be in the range 1 to 65535.\nName must be an IANA_SVC_NAME.",
                              "oneOf": [
                                {
                                  "type": "string"
                                },
                                {
                                  "type": "integer"
                                }
                              ],
                              "x-kubernetes-int-or-string": true
                            },
                            "scheme": {
                              "description": "Scheme to use for connecting to the host.\nDefaults to HTTP.",
                              "type": [
                                "string",
                                "null"
                              ]
                            }
                          },
                          "required": [
                            "port"
                          ],
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "initialDelaySeconds": {
                          "description": "Number of seconds after the container has started before liveness probes are initiated.\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes",
                          "format": "int32",
                          "type": [
                            "integer",
                            "null"
                          ]
                        },
                        "periodSeconds": {
                          "description": "How often (in seconds) to perform the probe.\nDefault to 10 seconds. Minimum value is 1.",
                          "format": "int32",
                          "type": [
                            "integer",
                            "null"
                          ]
                        },
                        "successThreshold": {
                          "description": "Minimum consecutive successes for the probe to be considered successful after having failed.\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.",
                          "format": "int32",
                          "type": [
                            "integer",
                            "null"
                          ]
                        },
                        "tcpSocket": {
                          "additionalProperties": false,
                          "description": "TCPSocket specifies an action involving a TCP port.",
                          "properties": {
                            "host": {
                              "description": "Optional: Host name to connect to, defaults to the pod IP.",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "port": {
                              "description": "Number or name of the port to access on the container.\nNumber must be in the range 1 to 65535.\nName must be an IANA_SVC_NAME.",
                              "oneOf": [
                                {
                                  "type": "string"
                                },
                                {
                                  "type": "integer"
                                }
                              ],
                              "x-kubernetes-int-or-string": true
                            }
                          },
                          "required": [
                            "port"
                          ],
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "terminationGracePeriodSeconds": {
                          "description": "Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\nThe grace period is the duration in seconds after the processes running in the pod are sent\na termination signal and the time when the processes are forcibly halted with a kill signal.\nSet this value longer than the expected cleanup time for your process.\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\nvalue overrides the value provided by the pod spec.\nValue must be non-negative integer. The value zero indicates stop immediately via\nthe kill signal (no opportunity to shut down).\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.",
                          "format": "int64",
                          "type": [
                            "integer",
                            "null"
                          ]
                        },
                        "timeoutSeconds": {
                          "description": "Number of seconds after which the probe times out.\nDefaults to 1 second. Minimum value is 1.\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes",
                          "format": "int32",
                          "type": [
                            "integer",
                            "null"
                          ]
                        }
                      },
                      "type": [
                        "object",
                        "null"
                      ]
                    },
                    "resources": {
                      "additionalProperties": false,
                      "description": "expected resources for the container",
                      "properties": {
                        "limits": {
                          "additionalProperties": {
                            "oneOf": [
                              {
                                "type": "string"
                              },
                              {
                                "type": "integer"
                              }
                            ],
                            "x-kubernetes-int-or-string": true
                          },
                          "description": "resource limits for the container",
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "requests": {
                          "additionalProperties": {
                            "oneOf": [
                              {
                                "type": "string"
                              },
                              {
                                "type": "integer"
                              }
                            ],
                            "x-kubernetes-int-or-string": true
                          },
                          "description": "resource requests for the container",
                          "type": [
                            "object",
                            "null"
                          ]
                        }
                      },
                      "type": [
                        "object",
                        "null"
                      ]
                    },
                    "restartPolicy": {
                      "description": "Restart policy for the main container in the pod. One of OnFailure or Never.",
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "securityContext": {
                      "additionalProperties": false,
                      "properties": {
                        "allowPrivilegeEscalation": {
                          "type": [
                            "boolean",
                            "null"
                          ]
                        },
                        "capabilities": {
                          "additionalProperties": false,
                          "properties": {
                            "add": {
                              "items": {
                                "type": "string"
                              },
                              "type": [
                                "array",
                                "null"
                              ]
                            },
                            "drop": {
                              "items": {
                                "type": "string"
                              },
                              "type": [
                                "array",
                                "null"
                              ]
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "privileged": {
                          "type": [
                            "boolean",
                            "null"
                          ]
                        },
                        "procMount": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "readOnlyRootFilesystem": {
                          "type": [
                            "boolean",
                            "null"
                          ]
                        },
                        "runAsGroup": {
                          "format": "int64",
                          "type": [
                            "integer",
                            "null"
                          ]
                        },
                        "runAsNonRoot": {
                          "type": [
                            "boolean",
                            "null"
                          ]
                        },
                        "runAsUser": {
                          "format": "int64",
                          "type": [
                            "integer",
                            "null"
                          ]
                        },
                        "seLinuxOptions": {
                          "additionalProperties": false,
                          "properties": {
                            "level": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "role": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "type": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "user": {
                              "type": [
                                "string",
                                "null"
                              ]
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "seccompProfile": {
                          "additionalProperties": false,
                          "properties": {
                            "localhostProfile": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "type": {
                              "type": "string"
                            }
                          },
                          "required": [
                            "type"
                          ],
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "windowsOptions": {
                          "additionalProperties": false,
                          "properties": {
                            "gmsaCredentialSpec": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "gmsaCredentialSpecName": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "hostProcess": {
                              "type": [
                                "boolean",
                                "null"
                              ]
                            },
                            "runAsUserName": {
                              "type": [
                                "string",
                                "null"
                              ]
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ]
                        }
                      },
                      "type": [
                        "object",
                        "null"
                      ]
                    },
                    "shards": {
                      "description": "parameters that should be distributed across sharded instances",
                      "type": [
                        "object",
                        "null"
                      ],
                      "x-kubernetes-preserve-unknown-fields": true
                    },
                    "shell": {
                      "description": "script to run in a default shell for the container",
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "timeout": {
                      "description": "maximum time until reaching readiness",
                      "pattern": "^((0|[1-9][0-9]*)h)?((0|[1-9][0-9]*)m)?((0|[1-9][0-9]*)s)?((0|[1-9][0-9]*)ms)?$",
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "transfer": {
                      "description": "instructions for transferring files",
                      "items": {
                        "required": [
                          "from"
                        ],
                        "type": "object",
                        "x-kubernetes-preserve-unknown-fields": true
                      },
                      "type": [
                        "array",
                        "null"
                      ]
                    },
                    "volumeMounts": {
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "mountPath": {
                            "type": "string"
                          },
                          "mountPropagation": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "name": {
                            "type": "string"
                          },
                          "readOnly": {
                            "type": [
                              "boolean",
                              "null"
                            ]
                          },
                          "subPath": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "subPathExpr": {
                            "type": [
                              "string",
                              "null"
                            ]
                          }
                        },
                        "required": [
                          "mountPath",
                          "name"
                        ],
                        "type": "object"
                      },
                      "type": [
                        "array",
                        "null"
                      ]
                    },
                    "workingDir": {
                      "description": "override default working directory in the image (empty string to default WORKDIR for the image)",
                      "type": [
                        "string",
                        "null"
                      ]
                    }
                  },
                  "type": "object"
                },
                "description": "list of accompanying services to start",
                "type": [
                  "object",
                  "null"
                ]
              },
              "setup": {
                "description": "steps to run before other operations in this step",
                "x-kubernetes-preserve-unknown-fields": true
              },
              "shell": {
                "description": "script to run in a default shell for the container",
                "type": [
                  "string",
                  "null"
                ]
              },
              "steps": {
                "description": "sub-steps to run",
                "x-kubernetes-preserve-unknown-fields": true
              },
              "timeout": {
                "description": "maximum time this step may take",
                "pattern": "^((0|[1-9][0-9]*)h)?((0|[1-9][0-9]*)m)?((0|[1-9][0-9]*)s)?((0|[1-9][0-9]*)ms)?$",
                "type": [
                  "string",
                  "null"
                ]
              },
              "workingDir": {
                "description": "working directory to use for this step",
                "type": [
                  "string",
                  "null"
                ]
              }
            },
            "type": "object"
          },
          "type": [
            "array",
            "null"
          ]
        },
        "steps": {
          "description": "steps to execute in the workflow",
          "items": {
            "additionalProperties": false,
            "properties": {
              "artifacts": {
                "additionalProperties": false,
                "description": "scrape artifacts from the volumes",
                "properties": {
                  "compress": {
                    "additionalProperties": false,
                    "description": "compression options for the artifacts",
                    "properties": {
                      "name": {
                        "description": "artifact name",
                        "minLength": 1,
                        "type": "string"
                      }
                    },
                    "required": [
                      "name"
                    ],
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "paths": {
                    "description": "paths to fetch from the container",
                    "items": {
                      "type": "string"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "workingDir": {
                    "description": "working directory to override, so it will be used as a base dir",
                    "type": [
                      "string",
                      "null"
                    ]
                  }
                },
                "type": [
                  "object",
                  "null"
                ]
              },
              "condition": {
                "description": "expression to declare under which conditions the step should be run\ndefaults to: \"passed\", except artifacts where it defaults to \"always\"",
                "type": [
                  "string",
                  "null"
                ]
              },
              "container": {
                "additionalProperties": false,
                "description": "defaults for the containers in this step",
                "properties": {
                  "args": {
                    "description": "override default command in the image (empty string to default CMD of the image)",
                    "items": {
                      "type": "string"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "command": {
                    "description": "override default command in the image (empty string to default ENTRYPOINT of the image)",
                    "items": {
                      "type": "string"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "env": {
                    "description": "environment variables to append to the container",
                    "items": {
                      "additionalProperties": false,
                      "description": "EnvVar represents an environment variable present in a Container.",
                      "properties": {
                        "name": {
                          "description": "Name of the environment variable. Must be a C_IDENTIFIER.",
                          "type": "string"
                        },
                        "value": {
                          "description": "Variable references $(VAR_NAME) are expanded\nusing the previously defined environment variables in the container and\nany service environment variables. If a variable cannot be resolved,\nthe reference in the input string will be unchanged. Double $$ are reduced\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e.\n\"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\".\nEscaped references will never be expanded, regardless of whether the variable\nexists or not.\nDefaults to \"\".",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "valueFrom": {
                          "additionalProperties": false,
                          "description": "Source for the environment variable's value. Cannot be used if value is not empty.",
                          "properties": {
                            "configMapKeyRef": {
                              "additionalProperties": false,
                              "properties": {
                                "key": {
                                  "type": "string"
                                },
                                "name": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "optional": {
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                }
                              },
                              "required": [
                                "key"
                              ],
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-map-type": "atomic"
                            },
                            "fieldRef": {
                              "additionalProperties": false,
                              "properties": {
                                "apiVersion": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "fieldPath": {
                                  "type": "string"
                                }
                              },
                              "required": [
                                "fieldPath"
                              ],
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-map-type": "atomic"
                            },
                            "resourceFieldRef": {
                              "additionalProperties": false,
                              "properties": {
                                "containerName": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "divisor": {
                                  "oneOf": [
                                    {
                                      "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                      "type": "string"
                                    },
                                    {
                                      "type": "integer"
                                    },
                                    {
                                      "type": "null"
                                    }
                                  ],
                                  "x-kubernetes-int-or-string": true
                                },
                                "resource": {
                                  "type": "string"
                                }
                              },
                              "required": [
                                "resource"
                              ],
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-map-type": "atomic"
                            },
                            "secretKeyRef": {
                              "additionalProperties": false,
                              "properties": {
                                "key": {
                                  "type": "string"
                                },
                                "name": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "optional": {
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                }
                              },
                              "required": [
                                "key"
                              ],
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-map-type": "atomic"
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ]
                        }
                      },
                      "required": [
                        "name"
                      ],
                      "type": "object"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "envFrom": {
                    "description": "external environment variables to append to the container",
                    "items": {
                      "additionalProperties": false,
                      "description": "EnvFromSource represents the source of a set of ConfigMaps",
                      "properties": {
                        "configMapRef": {
                          "additionalProperties": false,
                          "description": "The ConfigMap to select from",
                          "properties": {
                            "name": {
                              "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "optional": {
                              "description": "Specify whether the ConfigMap must be defined",
                              "type": [
                                "boolean",
                                "null"
                              ]
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ],
                          "x-kubernetes-map-type": "atomic"
                        },
                        "prefix": {
                          "description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "secretRef": {
                          "additionalProperties": false,
                          "description": "The Secret to select from",
                          "properties": {
                            "name": {
                              "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "optional": {
                              "description": "Specify whether the Secret must be defined",
                              "type": [
                                "boolean",
                                "null"
                              ]
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ],
                          "x-kubernetes-map-type": "atomic"
                        }
                      },
                      "type": "object"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "image": {
                    "description": "image to be used for the container",
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "imagePullPolicy": {
                    "description": "pulling policy for the image",
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "resources": {
                    "additionalProperties": false,
                    "description": "expected resources for the container",
                    "properties": {
                      "limits": {
                        "additionalProperties": {
                          "oneOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "integer"
                            }
                          ],
                          "x-kubernetes-int-or-string": true
                        },
                        "description": "resource limits for the container",
                        "type": [
                          "object",
                          "null"
                        ]
                      },
                      "requests": {
                        "additionalProperties": {
                          "oneOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "integer"
                            }
                          ],
                          "x-kubernetes-int-or-string": true
                        },
                        "description": "resource requests for the container",
                        "type": [
                          "object",
                          "null"
                        ]
                      }
                    },
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "securityContext": {
                    "additionalProperties": false,
                    "properties": {
                      "allowPrivilegeEscalation": {
                        "type": [
                          "boolean",
                          "null"
                        ]
                      },
                      "capabilities": {
                        "additionalProperties": false,
                        "properties": {
                          "add": {
                            "items": {
                              "type": "string"
                            },
                            "type": [
                              "array",
                              "null"
                            ]
                          },
                          "drop": {
                            "items": {
                              "type": "string"
                            },
                            "type": [
                              "array",
                              "null"
                            ]
                          }
                        },
                        "type": [
                          "object",
                          "null"
                        ]
                      },
                      "privileged": {
                        "type": [
                          "boolean",
                          "null"
                        ]
                      },
                      "procMount": {
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "readOnlyRootFilesystem": {
                        "type": [
                          "boolean",
                          "null"
                        ]
                      },
                      "runAsGroup": {
                        "format": "int64",
                        "type": [
                          "integer",
                          "null"
                        ]
                      },
                      "runAsNonRoot": {
                        "type": [
                          "boolean",
                          "null"
                        ]
                      },
                      "runAsUser": {
                        "format": "int64",
                        "type": [
                          "integer",
                          "null"
                        ]
                      },
                      "seLinuxOptions": {
                        "additionalProperties": false,
                        "properties": {
                          "level": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "role": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "type": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "user": {
                            "type": [
                              "string",
                              "null"
                            ]
                          }
                        },
                        "type": [
                          "object",
                          "null"
                        ]
                      },
                      "seccompProfile": {
                        "additionalProperties": false,
                        "properties": {
                          "localhostProfile": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "type": {
                            "type": "string"
                          }
                        },
                        "required": [
                          "type"
                        ],
                        "type": [
                          "object",
                          "null"
                        ]
                      },
                      "windowsOptions": {
                        "additionalProperties": false,
                        "properties": {
                          "gmsaCredentialSpec": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "gmsaCredentialSpecName": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "hostProcess": {
                            "type": [
                              "boolean",
                              "null"
                            ]
                          },
                          "runAsUserName": {
                            "type": [
                              "string",
                              "null"
                            ]
                          }
                        },
                        "type": [
                          "object",
                          "null"
                        ]
                      }
                    },
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "volumeMounts": {
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "mountPath": {
                          "type": "string"
                        },
                        "mountPropagation": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "name": {
                          "type": "string"
                        },
                        "readOnly": {
                          "type": [
                            "boolean",
                            "null"
                          ]
                        },
                        "subPath": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "subPathExpr": {
                          "type": [
                            "string",
                            "null"
                          ]
                        }
                      },
                      "required": [
                        "mountPath",
                        "name"
                      ],
                      "type": "object"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "workingDir": {
                    "description": "override default working directory in the image (empty string to default WORKDIR for the image)",
                    "type": [
                      "string",
                      "null"
                    ]
                  }
                },
                "type": [
                  "object",
                  "null"
                ]
              },
              "content": {
                "additionalProperties": false,
                "description": "content that should be fetched for this step",
                "properties": {
                  "files": {
                    "description": "files to load",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "content": {
                          "description": "plain-text content to put inside",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "contentFrom": {
                          "additionalProperties": false,
                          "description": "external source to use",
                          "properties": {
                            "configMapKeyRef": {
                              "additionalProperties": false,
                              "properties": {
                                "key": {
                                  "type": "string"
                                },
                                "name": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "optional": {
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                }
                              },
                              "required": [
                                "key"
                              ],
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-map-type": "atomic"
                            },
                            "fieldRef": {
                              "additionalProperties": false,
                              "properties": {
                                "apiVersion": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "fieldPath": {
                                  "type": "string"
                                }
                              },
                              "required": [
                                "fieldPath"
                              ],
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-map-type": "atomic"
                            },
                            "resourceFieldRef": {
                              "additionalProperties": false,
                              "properties": {
                                "containerName": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "divisor": {
                                  "oneOf": [
                                    {
                                      "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                      "type": "string"
                                    },
                                    {
                                      "type": "integer"
                                    },
                                    {
                                      "type": "null"
                                    }
                                  ],
                                  "x-kubernetes-int-or-string": true
                                },
                                "resource": {
                                  "type": "string"
                                }
                              },
                              "required": [
                                "resource"
                              ],
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-map-type": "atomic"
                            },
                            "secretKeyRef": {
                              "additionalProperties": false,
                              "properties": {
                                "key": {
                                  "type": "string"
                                },
                                "name": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "optional": {
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                }
                              },
                              "required": [
                                "key"
                              ],
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-map-type": "atomic"
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "mode": {
                          "description": "mode to use for the file",
                          "format": "int32",
                          "type": [
                            "integer",
                            "null"
                          ]
                        },
                        "path": {
                          "description": "path where the file should be accessible at",
                          "minLength": 1,
                          "type": "string"
                        }
                      },
                      "required": [
                        "path"
                      ],
                      "type": "object"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "git": {
                    "additionalProperties": false,
                    "description": "git repository details",
                    "properties": {
                      "authType": {
                        "description": "authorization type for the credentials",
                        "enum": [
                          "basic",
                          "header"
                        ],
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "mountPath": {
                        "description": "where to mount the fetched repository contents (defaults to \"repo\" directory in the data volume)",
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "paths": {
                        "description": "paths to fetch for the sparse checkout",
                        "items": {
                          "type": "string"
                        },
                        "type": [
                          "array",
                          "null"
                        ]
                      },
                      "revision": {
                        "description": "branch, commit or a tag name to fetch",
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "sshKey": {
                        "description": "plain text SSH private key to fetch with",
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "sshKeyFrom": {
                        "additionalProperties": false,
                        "description": "external SSH private key to fetch with",
                        "properties": {
                          "configMapKeyRef": {
                            "additionalProperties": false,
                            "properties": {
                              "key": {
                                "type": "string"
                              },
                              "name": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "optional": {
                                "type": [
                                  "boolean",
                                  "null"
                                ]
                              }
                            },
                            "required": [
                              "key"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          },
                          "fieldRef": {
                            "additionalProperties": false,
                            "properties": {
                              "apiVersion": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "fieldPath": {
                                "type": "string"
                              }
                            },
                            "required": [
                              "fieldPath"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          },
                          "resourceFieldRef": {
                            "additionalProperties": false,
                            "properties": {
                              "containerName": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "divisor": {
                                "oneOf": [
                                  {
                                    "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                    "type": "string"
                                  },
                                  {
                                    "type": "integer"
                                  },
                                  {
                                    "type": "null"
                                  }
                                ],
                                "x-kubernetes-int-or-string": true
                              },
                              "resource": {
                                "type": "string"
                              }
                            },
                            "required": [
                              "resource"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          },
                          "secretKeyRef": {
                            "additionalProperties": false,
                            "properties": {
                              "key": {
                                "type": "string"
                              },
                              "name": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "optional": {
                                "type": [
                                  "boolean",
                                  "null"
                                ]
                              }
                            },
                            "required": [
                              "key"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          }
                        },
                        "type": [
                          "object",
                          "null"
                        ]
                      },
                      "token": {
                        "description": "plain text token to fetch with",
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "tokenFrom": {
                        "additionalProperties": false,
                        "description": "external token to fetch with",
                        "properties": {
                          "configMapKeyRef": {
                            "additionalProperties": false,
                            "properties": {
                              "key": {
                                "type": "string"
                              },
                              "name": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "optional": {
                                "type": [
                                  "boolean",
                                  "null"
                                ]
                              }
                            },
                            "required": [
                              "key"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          },
                          "fieldRef": {
                            "additionalProperties": false,
                            "properties": {
                              "apiVersion": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "fieldPath": {
                                "type": "string"
                              }
                            },
                            "required": [
                              "fieldPath"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          },
                          "resourceFieldRef": {
                            "additionalProperties": false,
                            "properties": {
                              "containerName": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "divisor": {
                                "oneOf": [
                                  {
                                    "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                    "type": "string"
                                  },
                                  {
                                    "type": "integer"
                                  },
                                  {
                                    "type": "null"
                                  }
                                ],
                                "x-kubernetes-int-or-string": true
                              },
                              "resource": {
                                "type": "string"
                              }
                            },
                            "required": [
                              "resource"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          },
                          "secretKeyRef": {
                            "additionalProperties": false,
                            "properties": {
                              "key": {
                                "type": "string"
                              },
                              "name": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "optional": {
                                "type": [
                                  "boolean",
                                  "null"
                                ]
                              }
                            },
                            "required": [
                              "key"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          }
                        },
                        "type": [
                          "object",
                          "null"
                        ]
                      },
                      "uri": {
                        "description": "uri for the Git repository",
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "username": {
                        "description": "plain text username to fetch with",
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "usernameFrom": {
                        "additionalProperties": false,
                        "description": "external username to fetch with",
                        "properties": {
                          "configMapKeyRef": {
                            "additionalProperties": false,
                            "properties": {
                              "key": {
                                "type": "string"
                              },
                              "name": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "optional": {
                                "type": [
                                  "boolean",
                                  "null"
                                ]
                              }
                            },
                            "required": [
                              "key"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          },
                          "fieldRef": {
                            "additionalProperties": false,
                            "properties": {
                              "apiVersion": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "fieldPath": {
                                "type": "string"
                              }
                            },
                            "required": [
                              "fieldPath"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          },
                          "resourceFieldRef": {
                            "additionalProperties": false,
                            "properties": {
                              "containerName": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "divisor": {
                                "oneOf": [
                                  {
                                    "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                    "type": "string"
                                  },
                                  {
                                    "type": "integer"
                                  },
                                  {
                                    "type": "null"
                                  }
                                ],
                                "x-kubernetes-int-or-string": true
                              },
                              "resource": {
                                "type": "string"
                              }
                            },
                            "required": [
                              "resource"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          },
                          "secretKeyRef": {
                            "additionalProperties": false,
                            "properties": {
                              "key": {
                                "type": "string"
                              },
                              "name": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "optional": {
                                "type": [
                                  "boolean",
                                  "null"
                                ]
                              }
                            },
                            "required": [
                              "key"
                            ],
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          }
                        },
                        "type": [
                          "object",
                          "null"
                        ]
                      }
                    },
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "tarball": {
                    "description": "tarballs to unpack",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "mount": {
                          "description": "should it mount a new volume there",
                          "type": [
                            "boolean",
                            "null"
                          ]
                        },
                        "path": {
                          "description": "path where the tarball should be extracted",
                          "type": "string"
                        },
                        "url": {
                          "description": "url for the tarball to extract",
                          "type": "string"
                        }
                      },
                      "required": [
                        "path",
                        "url"
                      ],
                      "type": "object"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  }
                },
                "type": [
                  "object",
                  "null"
                ]
              },
              "delay": {
                "description": "delay before the step",
                "pattern": "^((0|[1-9][0-9]*)h)?((0|[1-9][0-9]*)m)?((0|[1-9][0-9]*)s)?((0|[1-9][0-9]*)ms)?$",
                "type": [
                  "string",
                  "null"
                ]
              },
              "execute": {
                "additionalProperties": false,
                "description": "execute other Testkube resources",
                "properties": {
                  "async": {
                    "description": "only schedule the resources, don't watch the results (unless it is needed for parallelism)",
                    "type": [
                      "boolean",
                      "null"
                    ]
                  },
                  "parallelism": {
                    "description": "how many resources could be scheduled in parallel",
                    "format": "int32",
                    "type": [
                      "integer",
                      "null"
                    ]
                  },
                  "tests": {
                    "description": "tests to run",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "count": {
                          "description": "static number of sharded instances to spawn",
                          "oneOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "integer"
                            },
                            {
                              "type": "null"
                            }
                          ],
                          "x-kubernetes-int-or-string": true
                        },
                        "description": {
                          "description": "test execution description to display",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "executionRequest": {
                          "additionalProperties": false,
                          "description": "pass the execution request overrides",
                          "properties": {
                            "activeDeadlineSeconds": {
                              "description": "Optional duration in seconds the pod may be active on the node relative to\nStartTime before the system will actively try to mark it failed and kill associated containers.\nValue must be a positive integer.",
                              "format": "int64",
                              "type": [
                                "integer",
                                "null"
                              ]
                            },
                            "args": {
                              "description": "additional executor binary arguments",
                              "items": {
                                "type": "string"
                              },
                              "type": [
                                "array",
                                "null"
                              ]
                            },
                            "argsMode": {
                              "description": "usage mode for arguments",
                              "enum": [
                                "append",
                                "override",
                                "replace"
                              ],
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "artifactRequest": {
                              "additionalProperties": false,
                              "description": "artifact request body with test artifacts",
                              "properties": {
                                "dirs": {
                                  "description": "artifact directories for scraping",
                                  "items": {
                                    "type": "string"
                                  },
                                  "type": [
                                    "array",
                                    "null"
                                  ]
                                },
                                "masks": {
                                  "description": "regexp to filter scraped artifacts, single or comma separated",
                                  "items": {
                                    "type": "string"
                                  },
                                  "type": [
                                    "array",
                                    "null"
                                  ]
                                },
                                "omitFolderPerExecution": {
                                  "description": "don't use a separate folder for execution artifacts",
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                },
                                "sharedBetweenPods": {
                                  "description": "whether to share volume between pods",
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                },
                                "sidecarScraper": {
                                  "description": "run scraper as pod sidecar container",
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                },
                                "storageBucket": {
                                  "description": "artifact bucket storage",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "storageClassName": {
                                  "description": "artifact storage class name for container executor",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "useDefaultStorageClassName": {
                                  "description": "whether to use default storage class name",
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                },
                                "volumeMountPath": {
                                  "description": "artifact volume mount path for container executor",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                }
                              },
                              "type": [
                                "object",
                                "null"
                              ]
                            },
                            "command": {
                              "description": "executor binary command",
                              "items": {
                                "type": "string"
                              },
                              "type": [
                                "array",
                                "null"
                              ]
                            },
                            "cronJobTemplate": {
                              "description": "cron job template extensions",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "envConfigMaps": {
                              "description": "config map references",
                              "items": {
                                "additionalProperties": false,
                                "description": "Reference to env resource",
                                "properties": {
                                  "mapToVariables": {
                                    "description": "whether we shoud map to variables from resource",
                                    "type": [
                                      "boolean",
                                      "null"
                                    ]
                                  },
                                  "mount": {
                                    "description": "whether we shoud mount resource",
                                    "type": [
                                      "boolean",
                                      "null"
                                    ]
                                  },
                                  "mountPath": {
                                    "description": "where we shoud mount resource",
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  },
                                  "reference": {
                                    "additionalProperties": false,
                                    "description": "LocalObjectReference contains enough information to let you locate the\nreferenced object inside the same namespace.",
                                    "properties": {
                                      "name": {
                                        "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                                        "type": [
                                          "string",
                                          "null"
                                        ]
                                      }
                                    },
                                    "type": "object",
                                    "x-kubernetes-map-type": "atomic"
                                  }
                                },
                                "required": [
                                  "reference"
                                ],
                                "type": "object"
                              },
                              "type": [
                                "array",
                                "null"
                              ]
                            },
                            "envSecrets": {
                              "description": "secret references",
                              "items": {
                                "additionalProperties": false,
                                "description": "Reference to env resource",
                                "properties": {
                                  "mapToVariables": {
                                    "description": "whether we shoud map to variables from resource",
                                    "type": [
                                      "boolean",
                                      "null"
                                    ]
                                  },
                                  "mount": {
                                    "description": "whether we shoud mount resource",
                                    "type": [
                                      "boolean",
                                      "null"
                                    ]
                                  },
                                  "mountPath": {
                                    "description": "where we shoud mount resource",
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  },
                                  "reference": {
                                    "additionalProperties": false,
                                    "description": "LocalObjectReference contains enough information to let you locate the\nreferenced object inside the same namespace.",
                                    "properties": {
                                      "name": {
                                        "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                                        "type": [
                                          "string",
                                          "null"
                                        ]
                                      }
                                    },
                                    "type": "object",
                                    "x-kubernetes-map-type": "atomic"
                                  }
                                },
                                "required": [
                                  "reference"
                                ],
                                "type": "object"
                              },
                              "type": [
                                "array",
                                "null"
                              ]
                            },
                            "executePostRunScriptBeforeScraping": {
                              "description": "execute post run script before scraping (prebuilt executor only)",
                              "type": [
                                "boolean",
                                "null"
                              ]
                            },
                            "executionLabels": {
                              "additionalProperties": {
                                "type": "string"
                              },
                              "description": "test execution labels",
                              "type": [
                                "object",
                                "null"
                              ]
                            },
                            "executionNamespace": {
                              "description": "namespace for test execution (Pro edition only)",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "httpProxy": {
                              "description": "http proxy for executor containers",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "httpsProxy": {
                              "description": "https proxy for executor containers",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "image": {
                              "description": "container executor image",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "imagePullSecrets": {
                              "description": "container executor image pull secrets",
                              "items": {
                                "additionalProperties": false,
                                "description": "LocalObjectReference contains enough information to let you locate the\nreferenced object inside the same namespace.",
                                "properties": {
                                  "name": {
                                    "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  }
                                },
                                "type": "object",
                                "x-kubernetes-map-type": "atomic"
                              },
                              "type": [
                                "array",
                                "null"
                              ]
                            },
                            "isVariablesFileUploaded": {
                              "type": [
                                "boolean",
                                "null"
                              ]
                            },
                            "jobTemplate": {
                              "description": "job template extensions",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "name": {
                              "description": "test execution custom name",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "negativeTest": {
                              "description": "negative test will fail the execution if it is a success and it will succeed if it is a failure",
                              "type": [
                                "boolean",
                                "null"
                              ]
                            },
                            "postRunScript": {
                              "description": "script to run after test execution",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "preRunScript": {
                              "description": "script to run before test execution",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "scraperTemplate": {
                              "description": "scraper template extensions",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "sourceScripts": {
                              "description": "run scripts using source command (container executor only)",
                              "type": [
                                "boolean",
                                "null"
                              ]
                            },
                            "sync": {
                              "description": "whether to start execution sync or async",
                              "type": [
                                "boolean",
                                "null"
                              ]
                            },
                            "testSecretUUID": {
                              "description": "test secret uuid",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "variables": {
                              "additionalProperties": {
                                "additionalProperties": false,
                                "properties": {
                                  "name": {
                                    "description": "variable name",
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  },
                                  "type": {
                                    "description": "variable type",
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  },
                                  "value": {
                                    "description": "variable string value",
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  },
                                  "valueFrom": {
                                    "additionalProperties": false,
                                    "description": "or load it from var source",
                                    "properties": {
                                      "configMapKeyRef": {
                                        "additionalProperties": false,
                                        "properties": {
                                          "key": {
                                            "type": "string"
                                          },
                                          "name": {
                                            "type": [
                                              "string",
                                              "null"
                                            ]
                                          },
                                          "optional": {
                                            "type": [
                                              "boolean",
                                              "null"
                                            ]
                                          }
                                        },
                                        "required": [
                                          "key"
                                        ],
                                        "type": [
                                          "object",
                                          "null"
                                        ],
                                        "x-kubernetes-map-type": "atomic"
                                      },
                                      "fieldRef": {
                                        "additionalProperties": false,
                                        "properties": {
                                          "apiVersion": {
                                            "type": [
                                              "string",
                                              "null"
                                            ]
                                          },
                                          "fieldPath": {
                                            "type": "string"
                                          }
                                        },
                                        "required": [
                                          "fieldPath"
                                        ],
                                        "type": [
                                          "object",
                                          "null"
                                        ],
                                        "x-kubernetes-map-type": "atomic"
                                      },
                                      "resourceFieldRef": {
                                        "additionalProperties": false,
                                        "properties": {
                                          "containerName": {
                                            "type": [
                                              "string",
                                              "null"
                                            ]
                                          },
                                          "divisor": {
                                            "oneOf": [
                                              {
                                                "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                                "type": "string"
                                              },
                                              {
                                                "type": "integer"
                                              },
                                              {
                                                "type": "null"
                                              }
                                            ],
                                            "x-kubernetes-int-or-string": true
                                          },
                                          "resource": {
                                            "type": "string"
                                          }
                                        },
                                        "required": [
                                          "resource"
                                        ],
                                        "type": [
                                          "object",
                                          "null"
                                        ],
                                        "x-kubernetes-map-type": "atomic"
                                      },
                                      "secretKeyRef": {
                                        "additionalProperties": false,
                                        "properties": {
                                          "key": {
                                            "type": "string"
                                          },
                                          "name": {
                                            "type": [
                                              "string",
                                              "null"
                                            ]
                                          },
                                          "optional": {
                                            "type": [
                                              "boolean",
                                              "null"
                                            ]
                                          }
                                        },
                                        "required": [
                                          "key"
                                        ],
                                        "type": [
                                          "object",
                                          "null"
                                        ],
                                        "x-kubernetes-map-type": "atomic"
                                      }
                                    },
                                    "type": [
                                      "object",
                                      "null"
                                    ]
                                  }
                                },
                                "type": "object"
                              },
                              "type": [
                                "object",
                                "null"
                              ]
                            },
                            "variablesFile": {
                              "description": "variables file content - need to be in format for particular executor (e.g. postman envs file)",
                              "type": [
                                "string",
                                "null"
                              ]
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "matrix": {
                          "description": "matrix of parameters to spawn instances (static)",
                          "type": [
                            "object",
                            "null"
                          ],
                          "x-kubernetes-preserve-unknown-fields": true
                        },
                        "maxCount": {
                          "description": "dynamic number of sharded instances to spawn - it will be lowered if there is not enough sharded values",
                          "oneOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "integer"
                            },
                            {
                              "type": "null"
                            }
                          ],
                          "x-kubernetes-int-or-string": true
                        },
                        "name": {
                          "description": "test name to run",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "shards": {
                          "description": "parameters that should be distributed across sharded instances",
                          "type": [
                            "object",
                            "null"
                          ],
                          "x-kubernetes-preserve-unknown-fields": true
                        },
                        "tarball": {
                          "additionalProperties": {
                            "type": "object",
                            "x-kubernetes-preserve-unknown-fields": true
                          },
                          "description": "pack some data from the original file system to serve them down",
                          "type": [
                            "object",
                            "null"
                          ]
                        }
                      },
                      "type": "object"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "workflows": {
                    "description": "workflows to run",
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "config": {
                          "additionalProperties": {
                            "oneOf": [
                              {
                                "type": "string"
                              },
                              {
                                "type": "integer"
                              }
                            ],
                            "x-kubernetes-int-or-string": true
                          },
                          "description": "configuration to pass for the workflow",
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "count": {
                          "description": "static number of sharded instances to spawn",
                          "oneOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "integer"
                            },
                            {
                              "type": "null"
                            }
                          ],
                          "x-kubernetes-int-or-string": true
                        },
                        "description": {
                          "description": "test workflow execution description to display",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "executionName": {
                          "description": "unique execution name to use",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "matrix": {
                          "description": "matrix of parameters to spawn instances (static)",
                          "type": [
                            "object",
                            "null"
                          ],
                          "x-kubernetes-preserve-unknown-fields": true
                        },
                        "maxCount": {
                          "description": "dynamic number of sharded instances to spawn - it will be lowered if there is not enough sharded values",
                          "oneOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "integer"
                            },
                            {
                              "type": "null"
                            }
                          ],
                          "x-kubernetes-int-or-string": true
                        },
                        "name": {
                          "description": "workflow name to run",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "shards": {
                          "description": "parameters that should be distributed across sharded instances",
                          "type": [
                            "object",
                            "null"
                          ],
                          "x-kubernetes-preserve-unknown-fields": true
                        },
                        "tarball": {
                          "additionalProperties": {
                            "type": "object",
                            "x-kubernetes-preserve-unknown-fields": true
                          },
                          "description": "pack some data from the original file system to serve them down",
                          "type": [
                            "object",
                            "null"
                          ]
                        }
                      },
                      "type": "object"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  }
                },
                "type": [
                  "object",
                  "null"
                ]
              },
              "name": {
                "description": "readable name for the step",
                "type": [
                  "string",
                  "null"
                ]
              },
              "negative": {
                "description": "is the step expected to fail",
                "type": [
                  "boolean",
                  "null"
                ]
              },
              "optional": {
                "description": "is the step optional, so its failure won't affect the TestWorkflow result",
                "type": [
                  "boolean",
                  "null"
                ]
              },
              "parallel": {
                "additionalProperties": false,
                "description": "instructions for parallel execution",
                "properties": {
                  "artifacts": {
                    "additionalProperties": false,
                    "description": "scrape artifacts from the volumes",
                    "properties": {
                      "compress": {
                        "additionalProperties": false,
                        "description": "compression options for the artifacts",
                        "properties": {
                          "name": {
                            "description": "artifact name",
                            "minLength": 1,
                            "type": "string"
                          }
                        },
                        "required": [
                          "name"
                        ],
                        "type": [
                          "object",
                          "null"
                        ]
                      },
                      "paths": {
                        "description": "paths to fetch from the container",
                        "items": {
                          "type": "string"
                        },
                        "type": [
                          "array",
                          "null"
                        ]
                      },
                      "workingDir": {
                        "description": "working directory to override, so it will be used as a base dir",
                        "type": [
                          "string",
                          "null"
                        ]
                      }
                    },
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "count": {
                    "description": "static number of sharded instances to spawn",
                    "oneOf": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "integer"
                      },
                      {
                        "type": "null"
                      }
                    ],
                    "x-kubernetes-int-or-string": true
                  },
                  "delay": {
                    "description": "delay before the step",
                    "pattern": "^((0|[1-9][0-9]*)h)?((0|[1-9][0-9]*)m)?((0|[1-9][0-9]*)s)?((0|[1-9][0-9]*)ms)?$",
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "description": {
                    "description": "worker description to display",
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "execute": {
                    "additionalProperties": false,
                    "description": "execute other Testkube resources",
                    "properties": {
                      "async": {
                        "description": "only schedule the resources, don't watch the results (unless it is needed for parallelism)",
                        "type": [
                          "boolean",
                          "null"
                        ]
                      },
                      "parallelism": {
                        "description": "how many resources could be scheduled in parallel",
                        "format": "int32",
                        "type": [
                          "integer",
                          "null"
                        ]
                      },
                      "tests": {
                        "description": "tests to run",
                        "items": {
                          "additionalProperties": false,
                          "properties": {
                            "count": {
                              "description": "static number of sharded instances to spawn",
                              "oneOf": [
                                {
                                  "type": "string"
                                },
                                {
                                  "type": "integer"
                                },
                                {
                                  "type": "null"
                                }
                              ],
                              "x-kubernetes-int-or-string": true
                            },
                            "description": {
                              "description": "test execution description to display",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "executionRequest": {
                              "additionalProperties": false,
                              "description": "pass the execution request overrides",
                              "properties": {
                                "activeDeadlineSeconds": {
                                  "description": "Optional duration in seconds the pod may be active on the node relative to\nStartTime before the system will actively try to mark it failed and kill associated containers.\nValue must be a positive integer.",
                                  "format": "int64",
                                  "type": [
                                    "integer",
                                    "null"
                                  ]
                                },
                                "args": {
                                  "description": "additional executor binary arguments",
                                  "items": {
                                    "type": "string"
                                  },
                                  "type": [
                                    "array",
                                    "null"
                                  ]
                                },
                                "argsMode": {
                                  "description": "usage mode for arguments",
                                  "enum": [
                                    "append",
                                    "override",
                                    "replace"
                                  ],
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "artifactRequest": {
                                  "additionalProperties": false,
                                  "description": "artifact request body with test artifacts",
                                  "properties": {
                                    "dirs": {
                                      "description": "artifact directories for scraping",
                                      "items": {
                                        "type": "string"
                                      },
                                      "type": [
                                        "array",
                                        "null"
                                      ]
                                    },
                                    "masks": {
                                      "description": "regexp to filter scraped artifacts, single or comma separated",
                                      "items": {
                                        "type": "string"
                                      },
                                      "type": [
                                        "array",
                                        "null"
                                      ]
                                    },
                                    "omitFolderPerExecution": {
                                      "description": "don't use a separate folder for execution artifacts",
                                      "type": [
                                        "boolean",
                                        "null"
                                      ]
                                    },
                                    "sharedBetweenPods": {
                                      "description": "whether to share volume between pods",
                                      "type": [
                                        "boolean",
                                        "null"
                                      ]
                                    },
                                    "sidecarScraper": {
                                      "description": "run scraper as pod sidecar container",
                                      "type": [
                                        "boolean",
                                        "null"
                                      ]
                                    },
                                    "storageBucket": {
                                      "description": "artifact bucket storage",
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "storageClassName": {
                                      "description": "artifact storage class name for container executor",
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "useDefaultStorageClassName": {
                                      "description": "whether to use default storage class name",
                                      "type": [
                                        "boolean",
                                        "null"
                                      ]
                                    },
                                    "volumeMountPath": {
                                      "description": "artifact volume mount path for container executor",
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    }
                                  },
                                  "type": [
                                    "object",
                                    "null"
                                  ]
                                },
                                "command": {
                                  "description": "executor binary command",
                                  "items": {
                                    "type": "string"
                                  },
                                  "type": [
                                    "array",
                                    "null"
                                  ]
                                },
                                "cronJobTemplate": {
                                  "description": "cron job template extensions",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "envConfigMaps": {
                                  "description": "config map references",
                                  "items": {
                                    "additionalProperties": false,
                                    "description": "Reference to env resource",
                                    "properties": {
                                      "mapToVariables": {
                                        "description": "whether we shoud map to variables from resource",
                                        "type": [
                                          "boolean",
                                          "null"
                                        ]
                                      },
                                      "mount": {
                                        "description": "whether we shoud mount resource",
                                        "type": [
                                          "boolean",
                                          "null"
                                        ]
                                      },
                                      "mountPath": {
                                        "description": "where we shoud mount resource",
                                        "type": [
                                          "string",
                                          "null"
                                        ]
                                      },
                                      "reference": {
                                        "additionalProperties": false,
                                        "description": "LocalObjectReference contains enough information to let you locate the\nreferenced object inside the same namespace.",
                                        "properties": {
                                          "name": {
                                            "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                                            "type": [
                                              "string",
                                              "null"
                                            ]
                                          }
                                        },
                                        "type": "object",
                                        "x-kubernetes-map-type": "atomic"
                                      }
                                    },
                                    "required": [
                                      "reference"
                                    ],
                                    "type": "object"
                                  },
                                  "type": [
                                    "array",
                                    "null"
                                  ]
                                },
                                "envSecrets": {
                                  "description": "secret references",
                                  "items": {
                                    "additionalProperties": false,
                                    "description": "Reference to env resource",
                                    "properties": {
                                      "mapToVariables": {
                                        "description": "whether we shoud map to variables from resource",
                                        "type": [
                                          "boolean",
                                          "null"
                                        ]
                                      },
                                      "mount": {
                                        "description": "whether we shoud mount resource",
                                        "type": [
                                          "boolean",
                                          "null"
                                        ]
                                      },
                                      "mountPath": {
                                        "description": "where we shoud mount resource",
                                        "type": [
                                          "string",
                                          "null"
                                        ]
                                      },
                                      "reference": {
                                        "additionalProperties": false,
                                        "description": "LocalObjectReference contains enough information to let you locate the\nreferenced object inside the same namespace.",
                                        "properties": {
                                          "name": {
                                            "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                                            "type": [
                                              "string",
                                              "null"
                                            ]
                                          }
                                        },
                                        "type": "object",
                                        "x-kubernetes-map-type": "atomic"
                                      }
                                    },
                                    "required": [
                                      "reference"
                                    ],
                                    "type": "object"
                                  },
                                  "type": [
                                    "array",
                                    "null"
                                  ]
                                },
                                "executePostRunScriptBeforeScraping": {
                                  "description": "execute post run script before scraping (prebuilt executor only)",
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                },
                                "executionLabels": {
                                  "additionalProperties": {
                                    "type": "string"
                                  },
                                  "description": "test execution labels",
                                  "type": [
                                    "object",
                                    "null"
                                  ]
                                },
                                "executionNamespace": {
                                  "description": "namespace for test execution (Pro edition only)",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "httpProxy": {
                                  "description": "http proxy for executor containers",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "httpsProxy": {
                                  "description": "https proxy for executor containers",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "image": {
                                  "description": "container executor image",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "imagePullSecrets": {
                                  "description": "container executor image pull secrets",
                                  "items": {
                                    "additionalProperties": false,
                                    "description": "LocalObjectReference contains enough information to let you locate the\nreferenced object inside the same namespace.",
                                    "properties": {
                                      "name": {
                                        "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                                        "type": [
                                          "string",
                                          "null"
                                        ]
                                      }
                                    },
                                    "type": "object",
                                    "x-kubernetes-map-type": "atomic"
                                  },
                                  "type": [
                                    "array",
                                    "null"
                                  ]
                                },
                                "isVariablesFileUploaded": {
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                },
                                "jobTemplate": {
                                  "description": "job template extensions",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "name": {
                                  "description": "test execution custom name",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "negativeTest": {
                                  "description": "negative test will fail the execution if it is a success and it will succeed if it is a failure",
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                },
                                "postRunScript": {
                                  "description": "script to run after test execution",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "preRunScript": {
                                  "description": "script to run before test execution",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "scraperTemplate": {
                                  "description": "scraper template extensions",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "sourceScripts": {
                                  "description": "run scripts using source command (container executor only)",
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                },
                                "sync": {
                                  "description": "whether to start execution sync or async",
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                },
                                "testSecretUUID": {
                                  "description": "test secret uuid",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "variables": {
                                  "additionalProperties": {
                                    "additionalProperties": false,
                                    "properties": {
                                      "name": {
                                        "description": "variable name",
                                        "type": [
                                          "string",
                                          "null"
                                        ]
                                      },
                                      "type": {
                                        "description": "variable type",
                                        "type": [
                                          "string",
                                          "null"
                                        ]
                                      },
                                      "value": {
                                        "description": "variable string value",
                                        "type": [
                                          "string",
                                          "null"
                                        ]
                                      },
                                      "valueFrom": {
                                        "additionalProperties": false,
                                        "description": "or load it from var source",
                                        "properties": {
                                          "configMapKeyRef": {
                                            "additionalProperties": false,
                                            "properties": {
                                              "key": {
                                                "type": "string"
                                              },
                                              "name": {
                                                "type": [
                                                  "string",
                                                  "null"
                                                ]
                                              },
                                              "optional": {
                                                "type": [
                                                  "boolean",
                                                  "null"
                                                ]
                                              }
                                            },
                                            "required": [
                                              "key"
                                            ],
                                            "type": [
                                              "object",
                                              "null"
                                            ],
                                            "x-kubernetes-map-type": "atomic"
                                          },
                                          "fieldRef": {
                                            "additionalProperties": false,
                                            "properties": {
                                              "apiVersion": {
                                                "type": [
                                                  "string",
                                                  "null"
                                                ]
                                              },
                                              "fieldPath": {
                                                "type": "string"
                                              }
                                            },
                                            "required": [
                                              "fieldPath"
                                            ],
                                            "type": [
                                              "object",
                                              "null"
                                            ],
                                            "x-kubernetes-map-type": "atomic"
                                          },
                                          "resourceFieldRef": {
                                            "additionalProperties": false,
                                            "properties": {
                                              "containerName": {
                                                "type": [
                                                  "string",
                                                  "null"
                                                ]
                                              },
                                              "divisor": {
                                                "oneOf": [
                                                  {
                                                    "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                                    "type": "string"
                                                  },
                                                  {
                                                    "type": "integer"
                                                  },
                                                  {
                                                    "type": "null"
                                                  }
                                                ],
                                                "x-kubernetes-int-or-string": true
                                              },
                                              "resource": {
                                                "type": "string"
                                              }
                                            },
                                            "required": [
                                              "resource"
                                            ],
                                            "type": [
                                              "object",
                                              "null"
                                            ],
                                            "x-kubernetes-map-type": "atomic"
                                          },
                                          "secretKeyRef": {
                                            "additionalProperties": false,
                                            "properties": {
                                              "key": {
                                                "type": "string"
                                              },
                                              "name": {
                                                "type": [
                                                  "string",
                                                  "null"
                                                ]
                                              },
                                              "optional": {
                                                "type": [
                                                  "boolean",
                                                  "null"
                                                ]
                                              }
                                            },
                                            "required": [
                                              "key"
                                            ],
                                            "type": [
                                              "object",
                                              "null"
                                            ],
                                            "x-kubernetes-map-type": "atomic"
                                          }
                                        },
                                        "type": [
                                          "object",
                                          "null"
                                        ]
                                      }
                                    },
                                    "type": "object"
                                  },
                                  "type": [
                                    "object",
                                    "null"
                                  ]
                                },
                                "variablesFile": {
                                  "description": "variables file content - need to be in format for particular executor (e.g. postman envs file)",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                }
                              },
                              "type": [
                                "object",
                                "null"
                              ]
                            },
                            "matrix": {
                              "description": "matrix of parameters to spawn instances (static)",
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-preserve-unknown-fields": true
                            },
                            "maxCount": {
                              "description": "dynamic number of sharded instances to spawn - it will be lowered if there is not enough sharded values",
                              "oneOf": [
                                {
                                  "type": "string"
                                },
                                {
                                  "type": "integer"
                                },
                                {
                                  "type": "null"
                                }
                              ],
                              "x-kubernetes-int-or-string": true
                            },
                            "name": {
                              "description": "test name to run",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "shards": {
                              "description": "parameters that should be distributed across sharded instances",
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-preserve-unknown-fields": true
                            },
                            "tarball": {
                              "additionalProperties": {
                                "type": "object",
                                "x-kubernetes-preserve-unknown-fields": true
                              },
                              "description": "pack some data from the original file system to serve them down",
                              "type": [
                                "object",
                                "null"
                              ]
                            }
                          },
                          "type": "object"
                        },
                        "type": [
                          "array",
                          "null"
                        ]
                      },
                      "workflows": {
                        "description": "workflows to run",
                        "items": {
                          "additionalProperties": false,
                          "properties": {
                            "config": {
                              "additionalProperties": {
                                "oneOf": [
                                  {
                                    "type": "string"
                                  },
                                  {
                                    "type": "integer"
                                  }
                                ],
                                "x-kubernetes-int-or-string": true
                              },
                              "description": "configuration to pass for the workflow",
                              "type": [
                                "object",
                                "null"
                              ]
                            },
                            "count": {
                              "description": "static number of sharded instances to spawn",
                              "oneOf": [
                                {
                                  "type": "string"
                                },
                                {
                                  "type": "integer"
                                },
                                {
                                  "type": "null"
                                }
                              ],
                              "x-kubernetes-int-or-string": true
                            },
                            "description": {
                              "description": "test workflow execution description to display",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "executionName": {
                              "description": "unique execution name to use",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "matrix": {
                              "description": "matrix of parameters to spawn instances (static)",
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-preserve-unknown-fields": true
                            },
                            "maxCount": {
                              "description": "dynamic number of sharded instances to spawn - it will be lowered if there is not enough sharded values",
                              "oneOf": [
                                {
                                  "type": "string"
                                },
                                {
                                  "type": "integer"
                                },
                                {
                                  "type": "null"
                                }
                              ],
                              "x-kubernetes-int-or-string": true
                            },
                            "name": {
                              "description": "workflow name to run",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "shards": {
                              "description": "parameters that should be distributed across sharded instances",
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-preserve-unknown-fields": true
                            },
                            "tarball": {
                              "additionalProperties": {
                                "type": "object",
                                "x-kubernetes-preserve-unknown-fields": true
                              },
                              "description": "pack some data from the original file system to serve them down",
                              "type": [
                                "object",
                                "null"
                              ]
                            }
                          },
                          "type": "object"
                        },
                        "type": [
                          "array",
                          "null"
                        ]
                      }
                    },
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "fetch": {
                    "description": "instructions for fetching files back",
                    "items": {
                      "required": [
                        "from"
                      ],
                      "type": "object",
                      "x-kubernetes-preserve-unknown-fields": true
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "logs": {
                    "description": "should save logs for the parallel step (true if not specified)",
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "matrix": {
                    "description": "matrix of parameters to spawn instances (static)",
                    "type": [
                      "object",
                      "null"
                    ],
                    "x-kubernetes-preserve-unknown-fields": true
                  },
                  "maxCount": {
                    "description": "dynamic number of sharded instances to spawn - it will be lowered if there is not enough sharded values",
                    "oneOf": [
                      {
                        "type": "string"
                      },
                      {
                        "type": "integer"
                      },
                      {
                        "type": "null"
                      }
                    ],
                    "x-kubernetes-int-or-string": true
                  },
                  "negative": {
                    "description": "is the step expected to fail",
                    "type": [
                      "boolean",
                      "null"
                    ]
                  },
                  "optional": {
                    "description": "is the step optional, so its failure won't affect the TestWorkflow result",
                    "type": [
                      "boolean",
                      "null"
                    ]
                  },
                  "parallelism": {
                    "description": "how many resources could be scheduled in parallel",
                    "format": "int32",
                    "type": [
                      "integer",
                      "null"
                    ]
                  },
                  "paused": {
                    "description": "pause the step initially",
                    "type": [
                      "boolean",
                      "null"
                    ]
                  },
                  "retry": {
                    "additionalProperties": false,
                    "description": "policy for retrying the step",
                    "properties": {
                      "count": {
                        "description": "how many times at most it should retry",
                        "format": "int32",
                        "minimum": 1,
                        "type": [
                          "integer",
                          "null"
                        ]
                      },
                      "until": {
                        "description": "until when it should retry (defaults to: \"passed\")",
                        "type": [
                          "string",
                          "null"
                        ]
                      }
                    },
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "run": {
                    "additionalProperties": false,
                    "description": "run specific container in the current step",
                    "properties": {
                      "args": {
                        "description": "override default command in the image (empty string to default CMD of the image)",
                        "items": {
                          "type": "string"
                        },
                        "type": [
                          "array",
                          "null"
                        ]
                      },
                      "command": {
                        "description": "override default command in the image (empty string to default ENTRYPOINT of the image)",
                        "items": {
                          "type": "string"
                        },
                        "type": [
                          "array",
                          "null"
                        ]
                      },
                      "env": {
                        "description": "environment variables to append to the container",
                        "items": {
                          "additionalProperties": false,
                          "description": "EnvVar represents an environment variable present in a Container.",
                          "properties": {
                            "name": {
                              "description": "Name of the environment variable. Must be a C_IDENTIFIER.",
                              "type": "string"
                            },
                            "value": {
                              "description": "Variable references $(VAR_NAME) are expanded\nusing the previously defined environment variables in the container and\nany service environment variables. If a variable cannot be resolved,\nthe reference in the input string will be unchanged. Double $$ are reduced\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e.\n\"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\".\nEscaped references will never be expanded, regardless of whether the variable\nexists or not.\nDefaults to \"\".",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "valueFrom": {
                              "additionalProperties": false,
                              "description": "Source for the environment variable's value. Cannot be used if value is not empty.",
                              "properties": {
                                "configMapKeyRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "key": {
                                      "type": "string"
                                    },
                                    "name": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "optional": {
                                      "type": [
                                        "boolean",
                                        "null"
                                      ]
                                    }
                                  },
                                  "required": [
                                    "key"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                },
                                "fieldRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "apiVersion": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "fieldPath": {
                                      "type": "string"
                                    }
                                  },
                                  "required": [
                                    "fieldPath"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                },
                                "resourceFieldRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "containerName": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "divisor": {
                                      "oneOf": [
                                        {
                                          "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                          "type": "string"
                                        },
                                        {
                                          "type": "integer"
                                        },
                                        {
                                          "type": "null"
                                        }
                                      ],
                                      "x-kubernetes-int-or-string": true
                                    },
                                    "resource": {
                                      "type": "string"
                                    }
                                  },
                                  "required": [
                                    "resource"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                },
                                "secretKeyRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "key": {
                                      "type": "string"
                                    },
                                    "name": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "optional": {
                                      "type": [
                                        "boolean",
                                        "null"
                                      ]
                                    }
                                  },
                                  "required": [
                                    "key"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                }
                              },
                              "type": [
                                "object",
                                "null"
                              ]
                            }
                          },
                          "required": [
                            "name"
                          ],
                          "type": "object"
                        },
                        "type": [
                          "array",
                          "null"
                        ]
                      },
                      "envFrom": {
                        "description": "external environment variables to append to the container",
                        "items": {
                          "additionalProperties": false,
                          "description": "EnvFromSource represents the source of a set of ConfigMaps",
                          "properties": {
                            "configMapRef": {
                              "additionalProperties": false,
                              "description": "The ConfigMap to select from",
                              "properties": {
                                "name": {
                                  "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "optional": {
                                  "description": "Specify whether the ConfigMap must be defined",
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                }
                              },
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-map-type": "atomic"
                            },
                            "prefix": {
                              "description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "secretRef": {
                              "additionalProperties": false,
                              "description": "The Secret to select from",
                              "properties": {
                                "name": {
                                  "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "optional": {
                                  "description": "Specify whether the Secret must be defined",
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                }
                              },
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-map-type": "atomic"
                            }
                          },
                          "type": "object"
                        },
                        "type": [
                          "array",
                          "null"
                        ]
                      },
                      "image": {
                        "description": "image to be used for the container",
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "imagePullPolicy": {
                        "description": "pulling policy for the image",
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "resources": {
                        "additionalProperties": false,
                        "description": "expected resources for the container",
                        "properties": {
                          "limits": {
                            "additionalProperties": {
                              "oneOf": [
                                {
                                  "type": "string"
                                },
                                {
                                  "type": "integer"
                                }
                              ],
                              "x-kubernetes-int-or-string": true
                            },
                            "description": "resource limits for the container",
                            "type": [
                              "object",
                              "null"
                            ]
                          },
                          "requests": {
                            "additionalProperties": {
                              "oneOf": [
                                {
                                  "type": "string"
                                },
                                {
                                  "type": "integer"
                                }
                              ],
                              "x-kubernetes-int-or-string": true
                            },
                            "description": "resource requests for the container",
                            "type": [
                              "object",
                              "null"
                            ]
                          }
                        },
                        "type": [
                          "object",
                          "null"
                        ]
                      },
                      "securityContext": {
                        "additionalProperties": false,
                        "properties": {
                          "allowPrivilegeEscalation": {
                            "type": [
                              "boolean",
                              "null"
                            ]
                          },
                          "capabilities": {
                            "additionalProperties": false,
                            "properties": {
                              "add": {
                                "items": {
                                  "type": "string"
                                },
                                "type": [
                                  "array",
                                  "null"
                                ]
                              },
                              "drop": {
                                "items": {
                                  "type": "string"
                                },
                                "type": [
                                  "array",
                                  "null"
                                ]
                              }
                            },
                            "type": [
                              "object",
                              "null"
                            ]
                          },
                          "privileged": {
                            "type": [
                              "boolean",
                              "null"
                            ]
                          },
                          "procMount": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "readOnlyRootFilesystem": {
                            "type": [
                              "boolean",
                              "null"
                            ]
                          },
                          "runAsGroup": {
                            "format": "int64",
                            "type": [
                              "integer",
                              "null"
                            ]
                          },
                          "runAsNonRoot": {
                            "type": [
                              "boolean",
                              "null"
                            ]
                          },
                          "runAsUser": {
                            "format": "int64",
                            "type": [
                              "integer",
                              "null"
                            ]
                          },
                          "seLinuxOptions": {
                            "additionalProperties": false,
                            "properties": {
                              "level": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "role": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "type": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "user": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              }
                            },
                            "type": [
                              "object",
                              "null"
                            ]
                          },
                          "seccompProfile": {
                            "additionalProperties": false,
                            "properties": {
                              "localhostProfile": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "type": {
                                "type": "string"
                              }
                            },
                            "required": [
                              "type"
                            ],
                            "type": [
                              "object",
                              "null"
                            ]
                          },
                          "windowsOptions": {
                            "additionalProperties": false,
                            "properties": {
                              "gmsaCredentialSpec": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "gmsaCredentialSpecName": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "hostProcess": {
                                "type": [
                                  "boolean",
                                  "null"
                                ]
                              },
                              "runAsUserName": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              }
                            },
                            "type": [
                              "object",
                              "null"
                            ]
                          }
                        },
                        "type": [
                          "object",
                          "null"
                        ]
                      },
                      "shell": {
                        "description": "script to run in a default shell for the container",
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "volumeMounts": {
                        "items": {
                          "additionalProperties": false,
                          "properties": {
                            "mountPath": {
                              "type": "string"
                            },
                            "mountPropagation": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "name": {
                              "type": "string"
                            },
                            "readOnly": {
                              "type": [
                                "boolean",
                                "null"
                              ]
                            },
                            "subPath": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "subPathExpr": {
                              "type": [
                                "string",
                                "null"
                              ]
                            }
                          },
                          "required": [
                            "mountPath",
                            "name"
                          ],
                          "type": "object"
                        },
                        "type": [
                          "array",
                          "null"
                        ]
                      },
                      "workingDir": {
                        "description": "override default working directory in the image (empty string to default WORKDIR for the image)",
                        "type": [
                          "string",
                          "null"
                        ]
                      }
                    },
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "shards": {
                    "description": "parameters that should be distributed across sharded instances",
                    "type": [
                      "object",
                      "null"
                    ],
                    "x-kubernetes-preserve-unknown-fields": true
                  },
                  "shell": {
                    "description": "script to run in a default shell for the container",
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "timeout": {
                    "description": "maximum time this step may take",
                    "pattern": "^((0|[1-9][0-9]*)h)?((0|[1-9][0-9]*)m)?((0|[1-9][0-9]*)s)?((0|[1-9][0-9]*)ms)?$",
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "transfer": {
                    "description": "instructions for transferring files",
                    "items": {
                      "required": [
                        "from"
                      ],
                      "type": "object",
                      "x-kubernetes-preserve-unknown-fields": true
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  }
                },
                "type": [
                  "object",
                  "null"
                ],
                "x-kubernetes-preserve-unknown-fields": true
              },
              "paused": {
                "description": "pause the step initially",
                "type": [
                  "boolean",
                  "null"
                ]
              },
              "pure": {
                "description": "mark the step as pure, applying optimizations to merge the containers together",
                "type": [
                  "boolean",
                  "null"
                ]
              },
              "retry": {
                "additionalProperties": false,
                "description": "policy for retrying the step",
                "properties": {
                  "count": {
                    "description": "how many times at most it should retry",
                    "format": "int32",
                    "minimum": 1,
                    "type": [
                      "integer",
                      "null"
                    ]
                  },
                  "until": {
                    "description": "until when it should retry (defaults to: \"passed\")",
                    "type": [
                      "string",
                      "null"
                    ]
                  }
                },
                "type": [
                  "object",
                  "null"
                ]
              },
              "run": {
                "additionalProperties": false,
                "description": "run specific container in the current step",
                "properties": {
                  "args": {
                    "description": "override default command in the image (empty string to default CMD of the image)",
                    "items": {
                      "type": "string"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "command": {
                    "description": "override default command in the image (empty string to default ENTRYPOINT of the image)",
                    "items": {
                      "type": "string"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "env": {
                    "description": "environment variables to append to the container",
                    "items": {
                      "additionalProperties": false,
                      "description": "EnvVar represents an environment variable present in a Container.",
                      "properties": {
                        "name": {
                          "description": "Name of the environment variable. Must be a C_IDENTIFIER.",
                          "type": "string"
                        },
                        "value": {
                          "description": "Variable references $(VAR_NAME) are expanded\nusing the previously defined environment variables in the container and\nany service environment variables. If a variable cannot be resolved,\nthe reference in the input string will be unchanged. Double $$ are reduced\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e.\n\"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\".\nEscaped references will never be expanded, regardless of whether the variable\nexists or not.\nDefaults to \"\".",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "valueFrom": {
                          "additionalProperties": false,
                          "description": "Source for the environment variable's value. Cannot be used if value is not empty.",
                          "properties": {
                            "configMapKeyRef": {
                              "additionalProperties": false,
                              "properties": {
                                "key": {
                                  "type": "string"
                                },
                                "name": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "optional": {
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                }
                              },
                              "required": [
                                "key"
                              ],
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-map-type": "atomic"
                            },
                            "fieldRef": {
                              "additionalProperties": false,
                              "properties": {
                                "apiVersion": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "fieldPath": {
                                  "type": "string"
                                }
                              },
                              "required": [
                                "fieldPath"
                              ],
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-map-type": "atomic"
                            },
                            "resourceFieldRef": {
                              "additionalProperties": false,
                              "properties": {
                                "containerName": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "divisor": {
                                  "oneOf": [
                                    {
                                      "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                      "type": "string"
                                    },
                                    {
                                      "type": "integer"
                                    },
                                    {
                                      "type": "null"
                                    }
                                  ],
                                  "x-kubernetes-int-or-string": true
                                },
                                "resource": {
                                  "type": "string"
                                }
                              },
                              "required": [
                                "resource"
                              ],
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-map-type": "atomic"
                            },
                            "secretKeyRef": {
                              "additionalProperties": false,
                              "properties": {
                                "key": {
                                  "type": "string"
                                },
                                "name": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "optional": {
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                }
                              },
                              "required": [
                                "key"
                              ],
                              "type": [
                                "object",
                                "null"
                              ],
                              "x-kubernetes-map-type": "atomic"
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ]
                        }
                      },
                      "required": [
                        "name"
                      ],
                      "type": "object"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "envFrom": {
                    "description": "external environment variables to append to the container",
                    "items": {
                      "additionalProperties": false,
                      "description": "EnvFromSource represents the source of a set of ConfigMaps",
                      "properties": {
                        "configMapRef": {
                          "additionalProperties": false,
                          "description": "The ConfigMap to select from",
                          "properties": {
                            "name": {
                              "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "optional": {
                              "description": "Specify whether the ConfigMap must be defined",
                              "type": [
                                "boolean",
                                "null"
                              ]
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ],
                          "x-kubernetes-map-type": "atomic"
                        },
                        "prefix": {
                          "description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "secretRef": {
                          "additionalProperties": false,
                          "description": "The Secret to select from",
                          "properties": {
                            "name": {
                              "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "optional": {
                              "description": "Specify whether the Secret must be defined",
                              "type": [
                                "boolean",
                                "null"
                              ]
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ],
                          "x-kubernetes-map-type": "atomic"
                        }
                      },
                      "type": "object"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "image": {
                    "description": "image to be used for the container",
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "imagePullPolicy": {
                    "description": "pulling policy for the image",
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "resources": {
                    "additionalProperties": false,
                    "description": "expected resources for the container",
                    "properties": {
                      "limits": {
                        "additionalProperties": {
                          "oneOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "integer"
                            }
                          ],
                          "x-kubernetes-int-or-string": true
                        },
                        "description": "resource limits for the container",
                        "type": [
                          "object",
                          "null"
                        ]
                      },
                      "requests": {
                        "additionalProperties": {
                          "oneOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "integer"
                            }
                          ],
                          "x-kubernetes-int-or-string": true
                        },
                        "description": "resource requests for the container",
                        "type": [
                          "object",
                          "null"
                        ]
                      }
                    },
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "securityContext": {
                    "additionalProperties": false,
                    "properties": {
                      "allowPrivilegeEscalation": {
                        "type": [
                          "boolean",
                          "null"
                        ]
                      },
                      "capabilities": {
                        "additionalProperties": false,
                        "properties": {
                          "add": {
                            "items": {
                              "type": "string"
                            },
                            "type": [
                              "array",
                              "null"
                            ]
                          },
                          "drop": {
                            "items": {
                              "type": "string"
                            },
                            "type": [
                              "array",
                              "null"
                            ]
                          }
                        },
                        "type": [
                          "object",
                          "null"
                        ]
                      },
                      "privileged": {
                        "type": [
                          "boolean",
                          "null"
                        ]
                      },
                      "procMount": {
                        "type": [
                          "string",
                          "null"
                        ]
                      },
                      "readOnlyRootFilesystem": {
                        "type": [
                          "boolean",
                          "null"
                        ]
                      },
                      "runAsGroup": {
                        "format": "int64",
                        "type": [
                          "integer",
                          "null"
                        ]
                      },
                      "runAsNonRoot": {
                        "type": [
                          "boolean",
                          "null"
                        ]
                      },
                      "runAsUser": {
                        "format": "int64",
                        "type": [
                          "integer",
                          "null"
                        ]
                      },
                      "seLinuxOptions": {
                        "additionalProperties": false,
                        "properties": {
                          "level": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "role": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "type": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "user": {
                            "type": [
                              "string",
                              "null"
                            ]
                          }
                        },
                        "type": [
                          "object",
                          "null"
                        ]
                      },
                      "seccompProfile": {
                        "additionalProperties": false,
                        "properties": {
                          "localhostProfile": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "type": {
                            "type": "string"
                          }
                        },
                        "required": [
                          "type"
                        ],
                        "type": [
                          "object",
                          "null"
                        ]
                      },
                      "windowsOptions": {
                        "additionalProperties": false,
                        "properties": {
                          "gmsaCredentialSpec": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "gmsaCredentialSpecName": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "hostProcess": {
                            "type": [
                              "boolean",
                              "null"
                            ]
                          },
                          "runAsUserName": {
                            "type": [
                              "string",
                              "null"
                            ]
                          }
                        },
                        "type": [
                          "object",
                          "null"
                        ]
                      }
                    },
                    "type": [
                      "object",
                      "null"
                    ]
                  },
                  "shell": {
                    "description": "script to run in a default shell for the container",
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "volumeMounts": {
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "mountPath": {
                          "type": "string"
                        },
                        "mountPropagation": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "name": {
                          "type": "string"
                        },
                        "readOnly": {
                          "type": [
                            "boolean",
                            "null"
                          ]
                        },
                        "subPath": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "subPathExpr": {
                          "type": [
                            "string",
                            "null"
                          ]
                        }
                      },
                      "required": [
                        "mountPath",
                        "name"
                      ],
                      "type": "object"
                    },
                    "type": [
                      "array",
                      "null"
                    ]
                  },
                  "workingDir": {
                    "description": "override default working directory in the image (empty string to default WORKDIR for the image)",
                    "type": [
                      "string",
                      "null"
                    ]
                  }
                },
                "type": [
                  "object",
                  "null"
                ]
              },
              "services": {
                "additionalProperties": {
                  "additionalProperties": false,
                  "properties": {
                    "args": {
                      "description": "override default command in the image (empty string to default CMD of the image)",
                      "items": {
                        "type": "string"
                      },
                      "type": [
                        "array",
                        "null"
                      ]
                    },
                    "command": {
                      "description": "override default command in the image (empty string to default ENTRYPOINT of the image)",
                      "items": {
                        "type": "string"
                      },
                      "type": [
                        "array",
                        "null"
                      ]
                    },
                    "content": {
                      "additionalProperties": false,
                      "description": "global content that should be fetched into all containers",
                      "properties": {
                        "files": {
                          "description": "files to load",
                          "items": {
                            "additionalProperties": false,
                            "properties": {
                              "content": {
                                "description": "plain-text content to put inside",
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "contentFrom": {
                                "additionalProperties": false,
                                "description": "external source to use",
                                "properties": {
                                  "configMapKeyRef": {
                                    "additionalProperties": false,
                                    "properties": {
                                      "key": {
                                        "type": "string"
                                      },
                                      "name": {
                                        "type": [
                                          "string",
                                          "null"
                                        ]
                                      },
                                      "optional": {
                                        "type": [
                                          "boolean",
                                          "null"
                                        ]
                                      }
                                    },
                                    "required": [
                                      "key"
                                    ],
                                    "type": [
                                      "object",
                                      "null"
                                    ],
                                    "x-kubernetes-map-type": "atomic"
                                  },
                                  "fieldRef": {
                                    "additionalProperties": false,
                                    "properties": {
                                      "apiVersion": {
                                        "type": [
                                          "string",
                                          "null"
                                        ]
                                      },
                                      "fieldPath": {
                                        "type": "string"
                                      }
                                    },
                                    "required": [
                                      "fieldPath"
                                    ],
                                    "type": [
                                      "object",
                                      "null"
                                    ],
                                    "x-kubernetes-map-type": "atomic"
                                  },
                                  "resourceFieldRef": {
                                    "additionalProperties": false,
                                    "properties": {
                                      "containerName": {
                                        "type": [
                                          "string",
                                          "null"
                                        ]
                                      },
                                      "divisor": {
                                        "oneOf": [
                                          {
                                            "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                            "type": "string"
                                          },
                                          {
                                            "type": "integer"
                                          },
                                          {
                                            "type": "null"
                                          }
                                        ],
                                        "x-kubernetes-int-or-string": true
                                      },
                                      "resource": {
                                        "type": "string"
                                      }
                                    },
                                    "required": [
                                      "resource"
                                    ],
                                    "type": [
                                      "object",
                                      "null"
                                    ],
                                    "x-kubernetes-map-type": "atomic"
                                  },
                                  "secretKeyRef": {
                                    "additionalProperties": false,
                                    "properties": {
                                      "key": {
                                        "type": "string"
                                      },
                                      "name": {
                                        "type": [
                                          "string",
                                          "null"
                                        ]
                                      },
                                      "optional": {
                                        "type": [
                                          "boolean",
                                          "null"
                                        ]
                                      }
                                    },
                                    "required": [
                                      "key"
                                    ],
                                    "type": [
                                      "object",
                                      "null"
                                    ],
                                    "x-kubernetes-map-type": "atomic"
                                  }
                                },
                                "type": [
                                  "object",
                                  "null"
                                ]
                              },
                              "mode": {
                                "description": "mode to use for the file",
                                "format": "int32",
                                "type": [
                                  "integer",
                                  "null"
                                ]
                              },
                              "path": {
                                "description": "path where the file should be accessible at",
                                "minLength": 1,
                                "type": "string"
                              }
                            },
                            "required": [
                              "path"
                            ],
                            "type": "object"
                          },
                          "type": [
                            "array",
                            "null"
                          ]
                        },
                        "git": {
                          "additionalProperties": false,
                          "description": "git repository details",
                          "properties": {
                            "authType": {
                              "description": "authorization type for the credentials",
                              "enum": [
                                "basic",
                                "header"
                              ],
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "mountPath": {
                              "description": "where to mount the fetched repository contents (defaults to \"repo\" directory in the data volume)",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "paths": {
                              "description": "paths to fetch for the sparse checkout",
                              "items": {
                                "type": "string"
                              },
                              "type": [
                                "array",
                                "null"
                              ]
                            },
                            "revision": {
                              "description": "branch, commit or a tag name to fetch",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "sshKey": {
                              "description": "plain text SSH private key to fetch with",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "sshKeyFrom": {
                              "additionalProperties": false,
                              "description": "external SSH private key to fetch with",
                              "properties": {
                                "configMapKeyRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "key": {
                                      "type": "string"
                                    },
                                    "name": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "optional": {
                                      "type": [
                                        "boolean",
                                        "null"
                                      ]
                                    }
                                  },
                                  "required": [
                                    "key"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                },
                                "fieldRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "apiVersion": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "fieldPath": {
                                      "type": "string"
                                    }
                                  },
                                  "required": [
                                    "fieldPath"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                },
                                "resourceFieldRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "containerName": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "divisor": {
                                      "oneOf": [
                                        {
                                          "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                          "type": "string"
                                        },
                                        {
                                          "type": "integer"
                                        },
                                        {
                                          "type": "null"
                                        }
                                      ],
                                      "x-kubernetes-int-or-string": true
                                    },
                                    "resource": {
                                      "type": "string"
                                    }
                                  },
                                  "required": [
                                    "resource"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                },
                                "secretKeyRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "key": {
                                      "type": "string"
                                    },
                                    "name": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "optional": {
                                      "type": [
                                        "boolean",
                                        "null"
                                      ]
                                    }
                                  },
                                  "required": [
                                    "key"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                }
                              },
                              "type": [
                                "object",
                                "null"
                              ]
                            },
                            "token": {
                              "description": "plain text token to fetch with",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "tokenFrom": {
                              "additionalProperties": false,
                              "description": "external token to fetch with",
                              "properties": {
                                "configMapKeyRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "key": {
                                      "type": "string"
                                    },
                                    "name": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "optional": {
                                      "type": [
                                        "boolean",
                                        "null"
                                      ]
                                    }
                                  },
                                  "required": [
                                    "key"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                },
                                "fieldRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "apiVersion": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "fieldPath": {
                                      "type": "string"
                                    }
                                  },
                                  "required": [
                                    "fieldPath"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                },
                                "resourceFieldRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "containerName": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "divisor": {
                                      "oneOf": [
                                        {
                                          "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                          "type": "string"
                                        },
                                        {
                                          "type": "integer"
                                        },
                                        {
                                          "type": "null"
                                        }
                                      ],
                                      "x-kubernetes-int-or-string": true
                                    },
                                    "resource": {
                                      "type": "string"
                                    }
                                  },
                                  "required": [
                                    "resource"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                },
                                "secretKeyRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "key": {
                                      "type": "string"
                                    },
                                    "name": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "optional": {
                                      "type": [
                                        "boolean",
                                        "null"
                                      ]
                                    }
                                  },
                                  "required": [
                                    "key"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                }
                              },
                              "type": [
                                "object",
                                "null"
                              ]
                            },
                            "uri": {
                              "description": "uri for the Git repository",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "username": {
                              "description": "plain text username to fetch with",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "usernameFrom": {
                              "additionalProperties": false,
                              "description": "external username to fetch with",
                              "properties": {
                                "configMapKeyRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "key": {
                                      "type": "string"
                                    },
                                    "name": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "optional": {
                                      "type": [
                                        "boolean",
                                        "null"
                                      ]
                                    }
                                  },
                                  "required": [
                                    "key"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                },
                                "fieldRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "apiVersion": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "fieldPath": {
                                      "type": "string"
                                    }
                                  },
                                  "required": [
                                    "fieldPath"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                },
                                "resourceFieldRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "containerName": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "divisor": {
                                      "oneOf": [
                                        {
                                          "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                          "type": "string"
                                        },
                                        {
                                          "type": "integer"
                                        },
                                        {
                                          "type": "null"
                                        }
                                      ],
                                      "x-kubernetes-int-or-string": true
                                    },
                                    "resource": {
                                      "type": "string"
                                    }
                                  },
                                  "required": [
                                    "resource"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                },
                                "secretKeyRef": {
                                  "additionalProperties": false,
                                  "properties": {
                                    "key": {
                                      "type": "string"
                                    },
                                    "name": {
                                      "type": [
                                        "string",
                                        "null"
                                      ]
                                    },
                                    "optional": {
                                      "type": [
                                        "boolean",
                                        "null"
                                      ]
                                    }
                                  },
                                  "required": [
                                    "key"
                                  ],
                                  "type": [
                                    "object",
                                    "null"
                                  ],
                                  "x-kubernetes-map-type": "atomic"
                                }
                              },
                              "type": [
                                "object",
                                "null"
                              ]
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "tarball": {
                          "description": "tarballs to unpack",
                          "items": {
                            "additionalProperties": false,
                            "properties": {
                              "mount": {
                                "description": "should it mount a new volume there",
                                "type": [
                                  "boolean",
                                  "null"
                                ]
                              },
                              "path": {
                                "description": "path where the tarball should be extracted",
                                "type": "string"
                              },
                              "url": {
                                "description": "url for the tarball to extract",
                                "type": "string"
                              }
                            },
                            "required": [
                              "path",
                              "url"
                            ],
                            "type": "object"
                          },
                          "type": [
                            "array",
                            "null"
                          ]
                        }
                      },
                      "type": [
                        "object",
                        "null"
                      ]
                    },
                    "count": {
                      "description": "static number of sharded instances to spawn",
                      "oneOf": [
                        {
                          "type": "string"
                        },
                        {
                          "type": "integer"
                        },
                        {
                          "type": "null"
                        }
                      ],
                      "x-kubernetes-int-or-string": true
                    },
                    "description": {
                      "description": "service description to display",
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "env": {
                      "description": "environment variables to append to the container",
                      "items": {
                        "additionalProperties": false,
                        "description": "EnvVar represents an environment variable present in a Container.",
                        "properties": {
                          "name": {
                            "description": "Name of the environment variable. Must be a C_IDENTIFIER.",
                            "type": "string"
                          },
                          "value": {
                            "description": "Variable references $(VAR_NAME) are expanded\nusing the previously defined environment variables in the container and\nany service environment variables. If a variable cannot be resolved,\nthe reference in the input string will be unchanged. Double $$ are reduced\nto a single $, which allows for escaping the $(VAR_NAME) syntax: i.e.\n\"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\".\nEscaped references will never be expanded, regardless of whether the variable\nexists or not.\nDefaults to \"\".",
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "valueFrom": {
                            "additionalProperties": false,
                            "description": "Source for the environment variable's value. Cannot be used if value is not empty.",
                            "properties": {
                              "configMapKeyRef": {
                                "additionalProperties": false,
                                "properties": {
                                  "key": {
                                    "type": "string"
                                  },
                                  "name": {
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  },
                                  "optional": {
                                    "type": [
                                      "boolean",
                                      "null"
                                    ]
                                  }
                                },
                                "required": [
                                  "key"
                                ],
                                "type": [
                                  "object",
                                  "null"
                                ],
                                "x-kubernetes-map-type": "atomic"
                              },
                              "fieldRef": {
                                "additionalProperties": false,
                                "properties": {
                                  "apiVersion": {
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  },
                                  "fieldPath": {
                                    "type": "string"
                                  }
                                },
                                "required": [
                                  "fieldPath"
                                ],
                                "type": [
                                  "object",
                                  "null"
                                ],
                                "x-kubernetes-map-type": "atomic"
                              },
                              "resourceFieldRef": {
                                "additionalProperties": false,
                                "properties": {
                                  "containerName": {
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  },
                                  "divisor": {
                                    "oneOf": [
                                      {
                                        "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$",
                                        "type": "string"
                                      },
                                      {
                                        "type": "integer"
                                      },
                                      {
                                        "type": "null"
                                      }
                                    ],
                                    "x-kubernetes-int-or-string": true
                                  },
                                  "resource": {
                                    "type": "string"
                                  }
                                },
                                "required": [
                                  "resource"
                                ],
                                "type": [
                                  "object",
                                  "null"
                                ],
                                "x-kubernetes-map-type": "atomic"
                              },
                              "secretKeyRef": {
                                "additionalProperties": false,
                                "properties": {
                                  "key": {
                                    "type": "string"
                                  },
                                  "name": {
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  },
                                  "optional": {
                                    "type": [
                                      "boolean",
                                      "null"
                                    ]
                                  }
                                },
                                "required": [
                                  "key"
                                ],
                                "type": [
                                  "object",
                                  "null"
                                ],
                                "x-kubernetes-map-type": "atomic"
                              }
                            },
                            "type": [
                              "object",
                              "null"
                            ]
                          }
                        },
                        "required": [
                          "name"
                        ],
                        "type": "object"
                      },
                      "type": [
                        "array",
                        "null"
                      ]
                    },
                    "envFrom": {
                      "description": "external environment variables to append to the container",
                      "items": {
                        "additionalProperties": false,
                        "description": "EnvFromSource represents the source of a set of ConfigMaps",
                        "properties": {
                          "configMapRef": {
                            "additionalProperties": false,
                            "description": "The ConfigMap to select from",
                            "properties": {
                              "name": {
                                "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "optional": {
                                "description": "Specify whether the ConfigMap must be defined",
                                "type": [
                                  "boolean",
                                  "null"
                                ]
                              }
                            },
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          },
                          "prefix": {
                            "description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.",
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "secretRef": {
                            "additionalProperties": false,
                            "description": "The Secret to select from",
                            "properties": {
                              "name": {
                                "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "optional": {
                                "description": "Specify whether the Secret must be defined",
                                "type": [
                                  "boolean",
                                  "null"
                                ]
                              }
                            },
                            "type": [
                              "object",
                              "null"
                            ],
                            "x-kubernetes-map-type": "atomic"
                          }
                        },
                        "type": "object"
                      },
                      "type": [
                        "array",
                        "null"
                      ]
                    },
                    "image": {
                      "description": "image to be used for the container",
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "imagePullPolicy": {
                      "description": "pulling policy for the image",
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "logs": {
                      "description": "should save logs for the service (false if not specified)",
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "matrix": {
                      "description": "matrix of parameters to spawn instances (static)",
                      "type": [
                        "object",
                        "null"
                      ],
                      "x-kubernetes-preserve-unknown-fields": true
                    },
                    "maxCount": {
                      "description": "dynamic number of sharded instances to spawn - it will be lowered if there is not enough sharded values",
                      "oneOf": [
                        {
                          "type": "string"
                        },
                        {
                          "type": "integer"
                        },
                        {
                          "type": "null"
                        }
                      ],
                      "x-kubernetes-int-or-string": true
                    },
                    "pod": {
                      "additionalProperties": false,
                      "description": "configuration for the scheduled pod",
                      "properties": {
                        "activeDeadlineSeconds": {
                          "description": "duration in seconds the pod may be active on the node",
                          "format": "int64",
                          "type": [
                            "integer",
                            "null"
                          ]
                        },
                        "affinity": {
                          "x-kubernetes-preserve-unknown-fields": true
                        },
                        "annotations": {
                          "additionalProperties": {
                            "type": "string"
                          },
                          "description": "annotations added to the scheduled pod",
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "dnsConfig": {
                          "additionalProperties": false,
                          "properties": {
                            "nameservers": {
                              "items": {
                                "type": "string"
                              },
                              "type": [
                                "array",
                                "null"
                              ]
                            },
                            "options": {
                              "items": {
                                "additionalProperties": false,
                                "properties": {
                                  "name": {
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  },
                                  "value": {
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  }
                                },
                                "type": "object"
                              },
                              "type": [
                                "array",
                                "null"
                              ]
                            },
                            "searches": {
                              "items": {
                                "type": "string"
                              },
                              "type": [
                                "array",
                                "null"
                              ]
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "dnsPolicy": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "hostAliases": {
                          "items": {
                            "additionalProperties": false,
                            "properties": {
                              "hostnames": {
                                "items": {
                                  "type": "string"
                                },
                                "type": [
                                  "array",
                                  "null"
                                ]
                              },
                              "ip": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              }
                            },
                            "type": "object"
                          },
                          "type": [
                            "array",
                            "null"
                          ]
                        },
                        "hostname": {
                          "description": "Specifies the hostname of the Pod",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "imagePullSecrets": {
                          "description": "references to secrets with credentials for pulling the images from registry",
                          "items": {
                            "additionalProperties": false,
                            "description": "LocalObjectReference contains enough information to let you locate the\nreferenced object inside the same namespace.",
                            "properties": {
                              "name": {
                                "description": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\nTODO: Add other useful fields. apiVersion, kind, uid?",
                                "type": [
                                  "string",
                                  "null"
                                ]
                              }
                            },
                            "type": "object",
                            "x-kubernetes-map-type": "atomic"
                          },
                          "type": [
                            "array",
                            "null"
                          ]
                        },
                        "labels": {
                          "additionalProperties": {
                            "type": "string"
                          },
                          "description": "labels added to the scheduled pod",
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "nodeName": {
                          "description": "NodeName is a request to schedule this pod onto a specific node.",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "nodeSelector": {
                          "additionalProperties": {
                            "type": "string"
                          },
                          "description": "node selector to define on which node the pod should land",
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "preemptionPolicy": {
                          "description": "PreemptionPolicy is the Policy for preempting pods with lower priority.",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "priority": {
                          "description": "The priority value. Various system components use this field to find the priority of the pod.",
                          "format": "int32",
                          "type": [
                            "integer",
                            "null"
                          ]
                        },
                        "priorityClassName": {
                          "description": "If specified, indicates the pod's priority.",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "resourceClaims": {
                          "items": {
                            "additionalProperties": false,
                            "properties": {
                              "name": {
                                "type": "string"
                              },
                              "source": {
                                "additionalProperties": false,
                                "properties": {
                                  "resourceClaimName": {
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  },
                                  "resourceClaimTemplateName": {
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  }
                                },
                                "type": [
                                  "object",
                                  "null"
                                ]
                              }
                            },
                            "required": [
                              "name"
                            ],
                            "type": "object"
                          },
                          "type": [
                            "array",
                            "null"
                          ]
                        },
                        "schedulingGates": {
                          "items": {
                            "additionalProperties": false,
                            "properties": {
                              "name": {
                                "type": "string"
                              }
                            },
                            "required": [
                              "name"
                            ],
                            "type": "object"
                          },
                          "type": [
                            "array",
                            "null"
                          ]
                        },
                        "securityContext": {
                          "additionalProperties": false,
                          "properties": {
                            "fsGroup": {
                              "format": "int64",
                              "type": [
                                "integer",
                                "null"
                              ]
                            },
                            "fsGroupChangePolicy": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "runAsGroup": {
                              "format": "int64",
                              "type": [
                                "integer",
                                "null"
                              ]
                            },
                            "runAsNonRoot": {
                              "type": [
                                "boolean",
                                "null"
                              ]
                            },
                            "runAsUser": {
                              "format": "int64",
                              "type": [
                                "integer",
                                "null"
                              ]
                            },
                            "seLinuxOptions": {
                              "additionalProperties": false,
                              "properties": {
                                "level": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "role": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "type": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "user": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                }
                              },
                              "type": [
                                "object",
                                "null"
                              ]
                            },
                            "seccompProfile": {
                              "additionalProperties": false,
                              "properties": {
                                "localhostProfile": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "type": {
                                  "type": "string"
                                }
                              },
                              "required": [
                                "type"
                              ],
                              "type": [
                                "object",
                                "null"
                              ]
                            },
                            "supplementalGroups": {
                              "items": {
                                "format": "int64",
                                "type": "integer"
                              },
                              "type": [
                                "array",
                                "null"
                              ]
                            },
                            "sysctls": {
                              "items": {
                                "additionalProperties": false,
                                "properties": {
                                  "name": {
                                    "type": "string"
                                  },
                                  "value": {
                                    "type": "string"
                                  }
                                },
                                "required": [
                                  "name",
                                  "value"
                                ],
                                "type": "object"
                              },
                              "type": [
                                "array",
                                "null"
                              ]
                            },
                            "windowsOptions": {
                              "additionalProperties": false,
                              "properties": {
                                "gmsaCredentialSpec": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "gmsaCredentialSpecName": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "hostProcess": {
                                  "type": [
                                    "boolean",
                                    "null"
                                  ]
                                },
                                "runAsUserName": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                }
                              },
                              "type": [
                                "object",
                                "null"
                              ]
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "serviceAccountName": {
                          "description": "default service account name for the scheduled pod",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "subdomain": {
                          "description": "If specified, the fully qualified Pod hostname will be \"\u003chostname\u003e.\u003csubdomain\u003e.\u003cpod namespace\u003e.svc.\u003ccluster domain\u003e\".",
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "tolerations": {
                          "items": {
                            "additionalProperties": false,
                            "properties": {
                              "effect": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "key": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "operator": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              },
                              "tolerationSeconds": {
                                "format": "int64",
                                "type": [
                                  "integer",
                                  "null"
                                ]
                              },
                              "value": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              }
                            },
                            "type": "object"
                          },
                          "type": [
                            "array",
                            "null"
                          ]
                        },
                        "topologySpreadConstraints": {
                          "x-kubernetes-preserve-unknown-fields": true
                        },
                        "volumes": {
                          "x-kubernetes-preserve-unknown-fields": true
                        }
                      },
                      "type": [
                        "object",
                        "null"
                      ]
                    },
                    "readinessProbe": {
                      "additionalProperties": false,
                      "description": "Probe to check if the service has started correctly",
                      "properties": {
                        "exec": {
                          "additionalProperties": false,
                          "description": "Exec specifies the action to take.",
                          "properties": {
                            "command": {
                              "description": "Command is the command line to execute inside the container, the working directory for the\ncommand  is root ('/') in the container's filesystem. The command is simply exec'd, it is\nnot run inside a shell, so traditional shell instructions ('|', etc) won't work. To use\na shell, you need to explicitly call out to that shell.\nExit status of 0 is treated as live/healthy and non-zero is unhealthy.",
                              "items": {
                                "type": "string"
                              },
                              "type": [
                                "array",
                                "null"
                              ]
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "failureThreshold": {
                          "description": "Minimum consecutive failures for the probe to be considered failed after having succeeded.\nDefaults to 3. Minimum value is 1.",
                          "format": "int32",
                          "type": [
                            "integer",
                            "null"
                          ]
                        },
                        "grpc": {
                          "additionalProperties": false,
                          "description": "GRPC specifies an action involving a GRPC port.",
                          "properties": {
                            "port": {
                              "description": "Port number of the gRPC service. Number must be in the range 1 to 65535.",
                              "format": "int32",
                              "type": "integer"
                            },
                            "service": {
                              "description": "Service is the name of the service to place in the gRPC HealthCheckRequest\n(see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\n\n\nIf this is not specified, the default behavior is defined by gRPC.",
                              "type": [
                                "string",
                                "null"
                              ]
                            }
                          },
                          "required": [
                            "port"
                          ],
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "httpGet": {
                          "additionalProperties": false,
                          "description": "HTTPGet specifies the http request to perform.",
                          "properties": {
                            "host": {
                              "description": "Host name to connect to, defaults to the pod IP. You probably want to set\n\"Host\" in httpHeaders instead.",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "httpHeaders": {
                              "description": "Custom headers to set in the request. HTTP allows repeated headers.",
                              "items": {
                                "additionalProperties": false,
                                "description": "HTTPHeader describes a custom header to be used in HTTP probes",
                                "properties": {
                                  "name": {
                                    "description": "The header field name.\nThis will be canonicalized upon output, so case-variant names will be understood as the same header.",
                                    "type": "string"
                                  },
                                  "value": {
                                    "description": "The header field value",
                                    "type": "string"
                                  }
                                },
                                "required": [
                                  "name",
                                  "value"
                                ],
                                "type": "object"
                              },
                              "type": [
                                "array",
                                "null"
                              ]
                            },
                            "path": {
                              "description": "Path to access on the HTTP server.",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "port": {
                              "description": "Name or number of the port to access on the container.\nNumber must be in the range 1 to 65535.\nName must be an IANA_SVC_NAME.",
                              "oneOf": [
                                {
                                  "type": "string"
                                },
                                {
                                  "type": "integer"
                                }
                              ],
                              "x-kubernetes-int-or-string": true
                            },
                            "scheme": {
                              "description": "Scheme to use for connecting to the host.\nDefaults to HTTP.",
                              "type": [
                                "string",
                                "null"
                              ]
                            }
                          },
                          "required": [
                            "port"
                          ],
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "initialDelaySeconds": {
                          "description": "Number of seconds after the container has started before liveness probes are initiated.\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes",
                          "format": "int32",
                          "type": [
                            "integer",
                            "null"
                          ]
                        },
                        "periodSeconds": {
                          "description": "How often (in seconds) to perform the probe.\nDefault to 10 seconds. Minimum value is 1.",
                          "format": "int32",
                          "type": [
                            "integer",
                            "null"
                          ]
                        },
                        "successThreshold": {
                          "description": "Minimum consecutive successes for the probe to be considered successful after having failed.\nDefaults to 1. Must be 1 for liveness and startup. Minimum value is 1.",
                          "format": "int32",
                          "type": [
                            "integer",
                            "null"
                          ]
                        },
                        "tcpSocket": {
                          "additionalProperties": false,
                          "description": "TCPSocket specifies an action involving a TCP port.",
                          "properties": {
                            "host": {
                              "description": "Optional: Host name to connect to, defaults to the pod IP.",
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "port": {
                              "description": "Number or name of the port to access on the container.\nNumber must be in the range 1 to 65535.\nName must be an IANA_SVC_NAME.",
                              "oneOf": [
                                {
                                  "type": "string"
                                },
                                {
                                  "type": "integer"
                                }
                              ],
                              "x-kubernetes-int-or-string": true
                            }
                          },
                          "required": [
                            "port"
                          ],
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "terminationGracePeriodSeconds": {
                          "description": "Optional duration in seconds the pod needs to terminate gracefully upon probe failure.\nThe grace period is the duration in seconds after the processes running in the pod are sent\na termination signal and the time when the processes are forcibly halted with a kill signal.\nSet this value longer than the expected cleanup time for your process.\nIf this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this\nvalue overrides the value provided by the pod spec.\nValue must be non-negative integer. The value zero indicates stop immediately via\nthe kill signal (no opportunity to shut down).\nThis is a beta field and requires enabling ProbeTerminationGracePeriod feature gate.\nMinimum value is 1. spec.terminationGracePeriodSeconds is used if unset.",
                          "format": "int64",
                          "type": [
                            "integer",
                            "null"
                          ]
                        },
                        "timeoutSeconds": {
                          "description": "Number of seconds after which the probe times out.\nDefaults to 1 second. Minimum value is 1.\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes",
                          "format": "int32",
                          "type": [
                            "integer",
                            "null"
                          ]
                        }
                      },
                      "type": [
                        "object",
                        "null"
                      ]
                    },
                    "resources": {
                      "additionalProperties": false,
                      "description": "expected resources for the container",
                      "properties": {
                        "limits": {
                          "additionalProperties": {
                            "oneOf": [
                              {
                                "type": "string"
                              },
                              {
                                "type": "integer"
                              }
                            ],
                            "x-kubernetes-int-or-string": true
                          },
                          "description": "resource limits for the container",
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "requests": {
                          "additionalProperties": {
                            "oneOf": [
                              {
                                "type": "string"
                              },
                              {
                                "type": "integer"
                              }
                            ],
                            "x-kubernetes-int-or-string": true
                          },
                          "description": "resource requests for the container",
                          "type": [
                            "object",
                            "null"
                          ]
                        }
                      },
                      "type": [
                        "object",
                        "null"
                      ]
                    },
                    "restartPolicy": {
                      "description": "Restart policy for the main container in the pod. One of OnFailure or Never.",
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "securityContext": {
                      "additionalProperties": false,
                      "properties": {
                        "allowPrivilegeEscalation": {
                          "type": [
                            "boolean",
                            "null"
                          ]
                        },
                        "capabilities": {
                          "additionalProperties": false,
                          "properties": {
                            "add": {
                              "items": {
                                "type": "string"
                              },
                              "type": [
                                "array",
                                "null"
                              ]
                            },
                            "drop": {
                              "items": {
                                "type": "string"
                              },
                              "type": [
                                "array",
                                "null"
                              ]
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "privileged": {
                          "type": [
                            "boolean",
                            "null"
                          ]
                        },
                        "procMount": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "readOnlyRootFilesystem": {
                          "type": [
                            "boolean",
                            "null"
                          ]
                        },
                        "runAsGroup": {
                          "format": "int64",
                          "type": [
                            "integer",
                            "null"
                          ]
                        },
                        "runAsNonRoot": {
                          "type": [
                            "boolean",
                            "null"
                          ]
                        },
                        "runAsUser": {
                          "format": "int64",
                          "type": [
                            "integer",
                            "null"
                          ]
                        },
                        "seLinuxOptions": {
                          "additionalProperties": false,
                          "properties": {
                            "level": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "role": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "type": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "user": {
                              "type": [
                                "string",
                                "null"
                              ]
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "seccompProfile": {
                          "additionalProperties": false,
                          "properties": {
                            "localhostProfile": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "type": {
                              "type": "string"
                            }
                          },
                          "required": [
                            "type"
                          ],
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "windowsOptions": {
                          "additionalProperties": false,
                          "properties": {
                            "gmsaCredentialSpec": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "gmsaCredentialSpecName": {
                              "type": [
                                "string",
                                "null"
                              ]
                            },
                            "hostProcess": {
                              "type": [
                                "boolean",
                                "null"
                              ]
                            },
                            "runAsUserName": {
                              "type": [
                                "string",
                                "null"
                              ]
                            }
                          },
                          "type": [
                            "object",
                            "null"
                          ]
                        }
                      },
                      "type": [
                        "object",
                        "null"
                      ]
                    },
                    "shards": {
                      "description": "parameters that should be distributed across sharded instances",
                      "type": [
                        "object",
                        "null"
                      ],
                      "x-kubernetes-preserve-unknown-fields": true
                    },
                    "shell": {
                      "description": "script to run in a default shell for the container",
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "timeout": {
                      "description": "maximum time until reaching readiness",
                      "pattern": "^((0|[1-9][0-9]*)h)?((0|[1-9][0-9]*)m)?((0|[1-9][0-9]*)s)?((0|[1-9][0-9]*)ms)?$",
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "transfer": {
                      "description": "instructions for transferring files",
                      "items": {
                        "required": [
                          "from"
                        ],
                        "type": "object",
                        "x-kubernetes-preserve-unknown-fields": true
                      },
                      "type": [
                        "array",
                        "null"
                      ]
                    },
                    "volumeMounts": {
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "mountPath": {
                            "type": "string"
                          },
                          "mountPropagation": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "name": {
                            "type": "string"
                          },
                          "readOnly": {
                            "type": [
                              "boolean",
                              "null"
                            ]
                          },
                          "subPath": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "subPathExpr": {
                            "type": [
                              "string",
                              "null"
                            ]
                          }
                        },
                        "required": [
                          "mountPath",
                          "name"
                        ],
                        "type": "object"
                      },
                      "type": [
                        "array",
                        "null"
                      ]
                    },
                    "workingDir": {
                      "description": "override default working directory in the image (empty string to default WORKDIR for the image)",
                      "type": [
                        "string",
                        "null"
                      ]
                    }
                  },
                  "type": "object"
                },
                "description": "list of accompanying services to start",
                "type": [
                  "object",
                  "null"
                ]
              },
              "setup": {
                "description": "steps to run before other operations in this step",
                "x-kubernetes-preserve-unknown-fields": true
              },
              "shell": {
                "description": "script to run in a default shell for the container",
                "type": [
                  "string",
                  "null"
                ]
              },
              "steps": {
                "description": "sub-steps to run",
                "x-kubernetes-preserve-unknown-fields": true
              },
              "timeout": {
                "description": "maximum time this step may take",
                "pattern": "^((0|[1-9][0-9]*)h)?((0|[1-9][0-9]*)m)?((0|[1-9][0-9]*)s)?((0|[1-9][0-9]*)ms)?$",
                "type": [
                  "string",
                  "null"
                ]
              },
              "workingDir": {
                "description": "working directory to use for this step",
                "type": [
                  "string",
                  "null"
                ]
              }
            },
            "type": "object"
          },
          "type": [
            "array",
            "null"
          ]
        },
        "system": {
          "additionalProperties": false,
          "description": "system configuration to define the orchestration behavior",
          "properties": {
            "isolatedContainers": {
              "description": "disable the behavior of merging multiple operations in a single container",
              "type": [
                "boolean",
                "null"
              ]
            },
            "pureByDefault": {
              "description": "assume all the steps are pure by default",
              "type": [
                "boolean",
                "null"
              ]
            }
          },
          "type": [
            "object",
            "null"
          ]
        }
      },
      "type": "object"
    }
  },
  "required": [
    "spec"
  ],
  "type": "object"
}