---
title: "POST /api/users/v1/clusters/{cluster-uuid}/workflows"
method: POST
path: "/api/users/v1/clusters/{cluster-uuid}/workflows"
---

# POST /api/users/v1/clusters/{cluster-uuid}/workflows

`POST /api/users/v1/clusters/{cluster-uuid}/workflows`

## Request body

- V1alpha1Workflow
  - `apiVersion` string — APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
  - `kind` string — Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
  - `metadata` V1ObjectMeta, required — ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.
    - `annotations` object — Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations
    - `clusterName` string — Deprecated: ClusterName is a legacy field that was always cleared by the system and never used; it will be removed completely in 1.25. The name in the go struct is changed to help clients detect accidental use.
    - `creationTimestamp` V1Time
      - `Time` string, date-time, required
    - `deletionGracePeriodSeconds` integer — Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.
    - `deletionTimestamp` V1Time
      - `Time` string, date-time, required
    - `finalizers` string[] — Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.
    - `generateName` string — GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server. If this field is specified and the generated name exists, the server will return a 409. Applied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency
    - `generation` integer — A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.
    - `labels` object — Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels
    - `managedFields` V1ManagedFieldsEntry[] — ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like "ci-cd". The set of fields is always in the version that the workflow used when modifying the object.
      - `apiVersion` string — APIVersion defines the version of this resource that this field set applies to. The format is "group/version" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.
      - `fieldsType` string — FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: "FieldsV1"
      - `fieldsV1` unknown
      - `manager` string — Manager is an identifier of the workflow managing these fields.
      - `operation` string — Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.
      - `subresource` string — Subresource is the name of the subresource used to update that object, or empty string if the object was updated through the main resource. The value of this field is used to distinguish between managers, even if they share the same name. For example, a status update will be distinct from a regular update using the same manager name. Note that the APIVersion field is not related to the Subresource field and it always corresponds to the version of the main resource.
      - `time` V1Time
        - `Time` string, date-time, required
    - `name` string — Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names
    - `namespace` string — Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the "default" namespace, but "default" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty. Must be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces
    - `ownerReferences` V1OwnerReference[] — List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.
      - `apiVersion` string, required — API version of the referent.
      - `blockOwnerDeletion` boolean — If true, AND if the owner has the "foregroundDeletion" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. See https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion for how the garbage collector interacts with this field and enforces the foreground deletion. Defaults to false. To set this field, a user needs "delete" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.
      - `controller` boolean — If true, this reference points to the managing controller.
      - `kind` string, required — Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
      - `name` string, required — Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names
      - `uid` string, required — UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids
    - `resourceVersion` string — An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources. Populated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
    - `selfLink` string — Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.
    - `uid` string — UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations. Populated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids
  - `spec` V1alpha1WorkflowSpec, required
    - `activeDeadlineSeconds` integer
    - `affinity` V1Affinity — Affinity is a group of affinity scheduling rules.
      - `nodeAffinity` V1NodeAffinity — Node affinity is a group of node affinity scheduling rules.
        - `preferredDuringSchedulingIgnoredDuringExecution` V1PreferredSchedulingTerm[] — The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.
          - `preference` V1NodeSelectorTerm, required — A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.
            - `matchExpressions` V1NodeSelectorRequirement[] — A list of node selector requirements by node's labels.
              - …
            - `matchFields` V1NodeSelectorRequirement[] — A list of node selector requirements by node's fields.
              - …
          - `weight` integer, required — Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.
        - `requiredDuringSchedulingIgnoredDuringExecution` V1NodeSelector — A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.
          - `nodeSelectorTerms` V1NodeSelectorTerm[], required — Required. A list of node selector terms. The terms are ORed.
            - `matchExpressions` V1NodeSelectorRequirement[] — A list of node selector requirements by node's labels.
              - …
            - `matchFields` V1NodeSelectorRequirement[] — A list of node selector requirements by node's fields.
              - …
      - `podAffinity` V1PodAffinity — Pod affinity is a group of inter pod affinity scheduling rules.
        - `preferredDuringSchedulingIgnoredDuringExecution` V1WeightedPodAffinityTerm[] — The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.
          - `podAffinityTerm` V1PodAffinityTerm, required — Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key <topologyKey> matches that of any node on which a pod of the set of pods is running
            - `labelSelector` V1LabelSelector — A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.
              - …
            - `namespaceSelector` V1LabelSelector — A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.
              - …
            - `namespaces` string[] — namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace".
            - `topologyKey` string, required — This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.
          - `weight` integer, required — weight associated with matching the corresponding podAffinityTerm, in the range 1-100.
        - `requiredDuringSchedulingIgnoredDuringExecution` V1PodAffinityTerm[] — If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.
          - `labelSelector` V1LabelSelector — A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.
            - `matchExpressions` V1LabelSelectorRequirement[] — matchExpressions is a list of label selector requirements. The requirements are ANDed.
              - …
            - `matchLabels` object — matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
          - `namespaceSelector` V1LabelSelector — A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.
            - `matchExpressions` V1LabelSelectorRequirement[] — matchExpressions is a list of label selector requirements. The requirements are ANDed.
              - …
            - `matchLabels` object — matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
          - `namespaces` string[] — namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace".
          - `topologyKey` string, required — This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.
      - `podAntiAffinity` V1PodAntiAffinity — Pod anti affinity is a group of inter pod anti affinity scheduling rules.
        - `preferredDuringSchedulingIgnoredDuringExecution` V1WeightedPodAffinityTerm[] — The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.
          - `podAffinityTerm` V1PodAffinityTerm, required — Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key <topologyKey> matches that of any node on which a pod of the set of pods is running
            - `labelSelector` V1LabelSelector — A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.
              - …
            - `namespaceSelector` V1LabelSelector — A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.
              - …
            - `namespaces` string[] — namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace".
            - `topologyKey` string, required — This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.
          - `weight` integer, required — weight associated with matching the corresponding podAffinityTerm, in the range 1-100.
        - `requiredDuringSchedulingIgnoredDuringExecution` V1PodAffinityTerm[] — If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.
          - `labelSelector` V1LabelSelector — A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.
            - `matchExpressions` V1LabelSelectorRequirement[] — matchExpressions is a list of label selector requirements. The requirements are ANDed.
              - …
            - `matchLabels` object — matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
          - `namespaceSelector` V1LabelSelector — A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.
            - `matchExpressions` V1LabelSelectorRequirement[] — matchExpressions is a list of label selector requirements. The requirements are ANDed.
              - …
            - `matchLabels` object — matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
          - `namespaces` string[] — namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace".
          - `topologyKey` string, required — This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.
    - `archiveLogs` boolean
    - `arguments` V1alpha1Arguments
      - `artifacts` V1alpha1Artifact[]
        - `archive` V1alpha1ArchiveStrategy
          - `none` unknown
          - `tar` V1alpha1TarStrategy
            - `compressionLevel` integer
          - `zip` unknown
        - `archiveLogs` boolean
        - `artifactGC` V1alpha1ArtifactGC
          - `podMetadata` V1alpha1Metadata
            - `annotations` object
            - `labels` object
          - `serviceAccountName` string
          - `strategy` string
        - `artifactory` V1alpha1ArtifactoryArtifact
          - `passwordSecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
            - `key` string, required — The key of the secret to select from. Must be a valid secret key.
            - `name` string — Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
            - `optional` boolean — Specify whether the Secret or its key must be defined
          - `url` string, required
          - `usernameSecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
            - `key` string, required — The key of the secret to select from. Must be a valid secret key.
            - `name` string — Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
            - `optional` boolean — Specify whether the Secret or its key must be defined
        - `azure` V1alpha1AzureArtifact
          - `accountKeySecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
            - `key` string, required — The key of the secret to select from. Must be a valid secret key.
            - `name` string — Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
            - `optional` boolean — Specify whether the Secret or its key must be defined
          - `blob` string, required
          - `container` string, required
          - `endpoint` string, required
          - `useSDKCreds` boolean
        - `deleted` boolean
        - `from` string
        - `fromExpression` string
        - `gcs` V1alpha1GCSArtifact
          - `bucket` string
          - `key` string, required
          - `serviceAccountKeySecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
            - `key` string, required — The key of the secret to select from. Must be a valid secret key.
            - `name` string — Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
            - `optional` boolean — Specify whether the Secret or its key must be defined
        - `git` V1alpha1GitArtifact
          - `branch` string
          - `depth` integer
          - `disableSubmodules` boolean
          - `fetch` string[]
          - `insecureIgnoreHostKey` boolean
          - `passwordSecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
            - `key` string, required — The key of the secret to select from. Must be a valid secret key.
            - `name` string — Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
            - `optional` boolean — Specify whether the Secret or its key must be defined
          - `repo` string, required
          - `revision` string
          - `singleBranch` boolean
          - `sshPrivateKeySecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
            - `key` string, required — The key of the secret to select from. Must be a valid secret key.
            - `name` string — Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
            - `optional` boolean — Specify whether the Secret or its key must be defined
          - `usernameSecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
            - `key` string, required — The key of the secret to select from. Must be a valid secret key.
            - `name` string — Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
            - `optional` boolean — Specify whether the Secret or its key must be defined
        - `globalName` string
        - `hdfs` V1alpha1HDFSArtifact
          - `addresses` string[]
          - `force` boolean
          - `hdfsUser` string
          - `krbCCacheSecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
            - `key` string, required — The key of the secret to select from. Must be a valid secret key.
            - `name` string — Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
            - `optional` boolean — Specify whether the Secret or its key must be defined
          - `krbConfigConfigMap` V1ConfigMapKeySelector — Selects a key from a ConfigMap.
            - `key` string, required — The key to select.
            - `name` string — Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
            - `optional` boolean — Specify whether the ConfigMap or its key must be defined
          - `krbKeytabSecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
            - `key` string, required — The key of the secret to select from. Must be a valid secret key.
            - `name` string — Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
            - `optional` boolean — Specify whether the Secret or its key must be defined
          - `krbRealm` string
          - `krbServicePrincipalName` string
          - `krbUsername` string
          - `path` string, required
        - `http` V1alpha1HTTPArtifact
          - `auth` V1alpha1HTTPAuth
            - `basicAuth` V1alpha1BasicAuth
              - …
            - `clientCert` V1alpha1ClientCertAuth
              - …
            - `oauth2` V1alpha1OAuth2Auth
              - …
          - `headers` V1alpha1Header[]
            - `name` string, required
            - `value` string, required
          - `url` string, required
        - `mode` integer
        - `name` string, required
        - `optional` boolean
        - `oss` V1alpha1OSSArtifact
          - `accessKeySecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
            - `key` string, required — The key of the secret to select from. Must be a valid secret key.
            - `name` string — Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
            - `optional` boolean — Specify whether the Secret or its key must be defined
          - `bucket` string
          - `createBucketIfNotPresent` boolean
          - `endpoint` string
          - `key` string, required
          - `lifecycleRule` V1alpha1OSSLifecycleRule
            - `markDeletionAfterDays` integer
            - `markInfrequentAccessAfterDays` integer
          - `secretKeySecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
            - `key` string, required — The key of the secret to select from. Must be a valid secret key.
            - `name` string — Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
            - `optional` boolean — Specify whether the Secret or its key must be defined
          - `securityToken` string
          - `useSDKCreds` boolean
        - `path` string
        - `raw` V1alpha1RawArtifact
          - `data` string, required
        - `recurseMode` boolean
        - `s3` V1alpha1S3Artifact
          - `accessKeySecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
            - `key` string, required — The key of the secret to select from. Must be a valid secret key.
            - `name` string — Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
            - `optional` boolean — Specify whether the Secret or its key must be defined
          - `bucket` string
          - `caSecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
            - `key` string, required — The key of the secret to select from. Must be a valid secret key.
            - `name` string — Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
            - `optional` boolean — Specify whether the Secret or its key must be defined
          - `createBucketIfNotPresent` V1alpha1CreateS3BucketOptions
            - `objectLocking` boolean
          - `encryptionOptions` V1alpha1S3EncryptionOptions
            - `enableEncryption` boolean
            - `kmsEncryptionContext` string
            - `kmsKeyId` string
            - `serverSideCustomerKeySecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
              - …
          - `endpoint` string
          - `insecure` boolean
          - `key` string
          - `region` string
          - `roleARN` string
          - `secretKeySecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
            - `key` string, required — The key of the secret to select from. Must be a valid secret key.
            - `name` string — Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
            - `optional` boolean — Specify whether the Secret or its key must be defined
          - `useSDKCreds` boolean
        - `subPath` string
      - `parameters` V1alpha1Parameter[]
        - `default` string
        - `description` string
        - `enum` string[]
        - `globalName` string
        - `name` string, required
        - `value` string
        - `valueFrom` V1alpha1ValueFrom
          - `configMapKeyRef` V1ConfigMapKeySelector — Selects a key from a ConfigMap.
            - `key` string, required — The key to select.
            - `name` string — Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
            - `optional` boolean — Specify whether the ConfigMap or its key must be defined
          - `default` string
          - `event` string
          - `expression` string
          - `jqFilter` string
          - `jsonPath` string
          - `parameter` string
          - `path` string
          - `supplied` unknown
    - `artifactGC` V1alpha1WorkflowLevelArtifactGC
      - `forceFinalizerRemoval` boolean
      - `podMetadata` V1alpha1Metadata
        - `annotations` object
        - `labels` object
      - `podSpecPatch` string
      - `serviceAccountName` string
      - `strategy` string
    - `artifactRepositoryRef` V1alpha1ArtifactRepositoryRef
      - `configMap` string
      - `key` string
    - `automountServiceAccountToken` boolean
    - `dnsConfig` V1PodDNSConfig — PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.
      - `nameservers` string[] — A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed.
      - `options` V1PodDNSConfigOption[] — A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy.
        - `name` string — Required.
        - `value` string
      - `searches` string[] — A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed.
    - `dnsPolicy` string
    - `entrypoint` string
    - `executor` V1alpha1ExecutorConfig
      - `serviceAccountName` string
    - `hooks` object
    - `hostAliases` V1HostAlias[]
      - `hostnames` string[] — Hostnames for the above IP address.
      - `ip` string — IP address of the host file entry.
    - `hostNetwork` boolean
    - `imagePullSecrets` V1LocalObjectReference[]
      - `name` string — Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
    - `metrics` V1alpha1Metrics
      - `prometheus` V1alpha1Prometheus[], required
        - `counter` V1alpha1Counter
          - `value` string, required
        - `gauge` V1alpha1Gauge
          - `operation` string
          - `realtime` boolean, required
          - `value` string, required
        - `help` string, required
        - `histogram` V1alpha1Histogram
          - `buckets` V1alpha1Amount[], required
            - unknown
          - `value` string, required
        - `labels` V1alpha1MetricLabel[]
          - `key` string, required
          - `value` string, required
        - `name` string, required
        - `when` string
    - `nodeSelector` object
    - `onExit` string
    - `parallelism` integer
    - `podDisruptionBudget` V1PodDisruptionBudgetSpec — PodDisruptionBudgetSpec is a description of a PodDisruptionBudget.
      - `maxUnavailable` IntstrIntOrString
        - `IntVal` integer, required
        - `StrVal` string, required
        - `Type` integer, required
      - `minAvailable` IntstrIntOrString
        - `IntVal` integer, required
        - `StrVal` string, required
        - `Type` integer, required
      - `selector` V1LabelSelector — A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.
        - `matchExpressions` V1LabelSelectorRequirement[] — matchExpressions is a list of label selector requirements. The requirements are ANDed.
          - `key` string, required — key is the label key that the selector applies to.
          - `operator` string, required — operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.
          - `values` string[] — values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
        - `matchLabels` object — matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    - `podGC` V1alpha1PodGC
      - `deleteDelayDuration` string
      - `labelSelector` V1LabelSelector — A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.
        - `matchExpressions` V1LabelSelectorRequirement[] — matchExpressions is a list of label selector requirements. The requirements are ANDed.
          - `key` string, required — key is the label key that the selector applies to.
          - `operator` string, required — operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.
          - `values` string[] — values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
        - `matchLabels` object — matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
      - `strategy` string
    - `podMetadata` V1alpha1Metadata
      - `annotations` object
      - `labels` object
    - `podPriority` integer
    - `podPriorityClassName` string
    - `podSpecPatch` string
    - `priority` integer
    - `retryStrategy` V1alpha1RetryStrategy
      - `affinity` V1alpha1RetryAffinity
        - `nodeAntiAffinity` unknown
      - `backoff` V1alpha1Backoff
        - `duration` string
        - `factor` IntstrIntOrString
          - `IntVal` integer, required
          - `StrVal` string, required
          - `Type` integer, required
        - `maxDuration` string
      - `expression` string
      - `limit` IntstrIntOrString
        - `IntVal` integer, required
        - `StrVal` string, required
        - `Type` integer, required
      - `retryPolicy` string
    - `schedulerName` string
    - `securityContext` V1PodSecurityContext — PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.
      - `fsGroup` integer — A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod: 1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw
      - `fsGroupChangePolicy` string — fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod. This field will only apply to volume types which support fsGroup based ownership(and permissions). It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir. Valid values are "OnRootMismatch" and "Always". If not specified, "Always" is used. Note that this field cannot be set when spec.os.name is windows.
      - `runAsGroup` integer — The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. Note that this field cannot be set when spec.os.name is windows.
      - `runAsNonRoot` boolean — Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.
      - `runAsUser` integer — The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. Note that this field cannot be set when spec.os.name is windows.
      - `seLinuxOptions` V1SELinuxOptions — SELinuxOptions are the labels to be applied to the container
        - `level` string — Level is SELinux level label that applies to the container.
        - `role` string — Role is a SELinux role label that applies to the container.
        - `type` string — Type is a SELinux type label that applies to the container.
        - `user` string — User is a SELinux user label that applies to the container.
      - `seccompProfile` V1SeccompProfile — SeccompProfile defines a pod/container's seccomp profile settings. Only one profile source may be set.
        - `localhostProfile` string — localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must only be set if type is "Localhost".
        - `type` string, required — type indicates which kind of seccomp profile will be applied. Valid options are: Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied.
      - `supplementalGroups` integer[] — A list of groups applied to the first process run in each container, in addition to the container's primary GID. If unspecified, no groups will be added to any container. Note that this field cannot be set when spec.os.name is windows.
      - `sysctls` V1Sysctl[] — Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch. Note that this field cannot be set when spec.os.name is windows.
        - `name` string, required — Name of a property to set
        - `value` string, required — Value of a property to set
      - `windowsOptions` V1WindowsSecurityContextOptions — WindowsSecurityContextOptions contain Windows-specific options and credentials.
        - `gmsaCredentialSpec` string — GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.
        - `gmsaCredentialSpecName` string — GMSACredentialSpecName is the name of the GMSA credential spec to use.
        - `hostProcess` boolean — HostProcess determines if a container should be run as a 'Host Process' container. This field is alpha-level and will only be honored by components that enable the WindowsHostProcessContainers feature flag. Setting this field without the feature flag will result in errors when validating the Pod. All of a Pod's containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). In addition, if HostProcess is true then HostNetwork must also be set to true.
        - `runAsUserName` string — The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.
    - `serviceAccountName` string
    - `shutdown` string
    - `suspend` boolean
    - `synchronization` V1alpha1Synchronization
      - `mutex` V1alpha1Mutex
        - `name` string
        - `namespace` string
      - `semaphore` V1alpha1SemaphoreRef
        - `configMapKeyRef` V1ConfigMapKeySelector — Selects a key from a ConfigMap.
          - `key` string, required — The key to select.
          - `name` string — Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
          - `optional` boolean — Specify whether the ConfigMap or its key must be defined
        - `namespace` string
    - `templateDefaults` V1alpha1Template
      - `activeDeadlineSeconds` IntstrIntOrString
        - `IntVal` integer, required
        - `StrVal` string, required
        - `Type` integer, required
      - `affinity` V1Affinity — Affinity is a group of affinity scheduling rules.
        - `nodeAffinity` V1NodeAffinity — Node affinity is a group of node affinity scheduling rules.
          - `preferredDuringSchedulingIgnoredDuringExecution` V1PreferredSchedulingTerm[] — The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.
            - `preference` V1NodeSelectorTerm, required — A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.
              - …
            - `weight` integer, required — Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.
          - `requiredDuringSchedulingIgnoredDuringExecution` V1NodeSelector — A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.
            - `nodeSelectorTerms` V1NodeSelectorTerm[], required — Required. A list of node selector terms. The terms are ORed.
              - …
        - `podAffinity` V1PodAffinity — Pod affinity is a group of inter pod affinity scheduling rules.
          - `preferredDuringSchedulingIgnoredDuringExecution` V1WeightedPodAffinityTerm[] — The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.
            - `podAffinityTerm` V1PodAffinityTerm, required — Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key <topologyKey> matches that of any node on which a pod of the set of pods is running
              - …
            - `weight` integer, required — weight associated with matching the corresponding podAffinityTerm, in the range 1-100.
          - `requiredDuringSchedulingIgnoredDuringExecution` V1PodAffinityTerm[] — If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.
            - `labelSelector` V1LabelSelector — A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.
              - …
            - `namespaceSelector` V1LabelSelector — A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.
              - …
            - `namespaces` string[] — namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace".
            - `topologyKey` string, required — This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.
        - `podAntiAffinity` V1PodAntiAffinity — Pod anti affinity is a group of inter pod anti affinity scheduling rules.
          - `preferredDuringSchedulingIgnoredDuringExecution` V1WeightedPodAffinityTerm[] — The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.
            - `podAffinityTerm` V1PodAffinityTerm, required — Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key <topologyKey> matches that of any node on which a pod of the set of pods is running
              - …
            - `weight` integer, required — weight associated with matching the corresponding podAffinityTerm, in the range 1-100.
          - `requiredDuringSchedulingIgnoredDuringExecution` V1PodAffinityTerm[] — If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.
            - `labelSelector` V1LabelSelector — A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.
              - …
            - `namespaceSelector` V1LabelSelector — A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.
              - …
            - `namespaces` string[] — namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means "this pod's namespace".
            - `topologyKey` string, required — This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.
      - `archiveLocation` V1alpha1ArtifactLocation
        - `archiveLogs` boolean
        - `artifactory` V1alpha1ArtifactoryArtifact
          - `passwordSecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
            - `key` string, required — The key of the secret to select from. Must be a valid secret key.
            - `name` string — Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
            - `optional` boolean — Specify whether the Secret or its key must be defined
          - `url` string, required
          - `usernameSecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
            - `key` string, required — The key of the secret to select from. Must be a valid secret key.
            - `name` string — Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
            - `optional` boolean — Specify whether the Secret or its key must be defined
        - `azure` V1alpha1AzureArtifact
          - `accountKeySecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
            - `key` string, required — The key of the secret to select from. Must be a valid secret key.
            - `name` string — Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
            - `optional` boolean — Specify whether the Secret or its key must be defined
          - `blob` string, required
          - `container` string, required
          - `endpoint` string, required
          - `useSDKCreds` boolean
        - `gcs` V1alpha1GCSArtifact
          - `bucket` string
          - `key` string, required
          - `serviceAccountKeySecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
            - `key` string, required — The key of the secret to select from. Must be a valid secret key.
            - `name` string — Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
            - `optional` boolean — Specify whether the Secret or its key must be defined
        - `git` V1alpha1GitArtifact
          - `branch` string
          - `depth` integer
          - `disableSubmodules` boolean
          - `fetch` string[]
          - `insecureIgnoreHostKey` boolean
          - `passwordSecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
            - `key` string, required — The key of the secret to select from. Must be a valid secret key.
            - `name` string — Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
            - `optional` boolean — Specify whether the Secret or its key must be defined
          - `repo` string, required
          - `revision` string
          - `singleBranch` boolean
          - `sshPrivateKeySecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
            - `key` string, required — The key of the secret to select from. Must be a valid secret key.
            - `name` string — Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
            - `optional` boolean — Specify whether the Secret or its key must be defined
          - `usernameSecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
            - `key` string, required — The key of the secret to select from. Must be a valid secret key.
            - `name` string — Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
            - `optional` boolean — Specify whether the Secret or its key must be defined
        - `hdfs` V1alpha1HDFSArtifact
          - `addresses` string[]
          - `force` boolean
          - `hdfsUser` string
          - `krbCCacheSecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
            - `key` string, required — The key of the secret to select from. Must be a valid secret key.
            - `name` string — Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
            - `optional` boolean — Specify whether the Secret or its key must be defined
          - `krbConfigConfigMap` V1ConfigMapKeySelector — Selects a key from a ConfigMap.
            - `key` string, required — The key to select.
            - `name` string — Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
            - `optional` boolean — Specify whether the ConfigMap or its key must be defined
          - `krbKeytabSecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
            - `key` string, required — The key of the secret to select from. Must be a valid secret key.
            - `name` string — Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
            - `optional` boolean — Specify whether the Secret or its key must be defined
          - `krbRealm` string
          - `krbServicePrincipalName` string
          - `krbUsername` string
          - `path` string, required
        - `http` V1alpha1HTTPArtifact
          - `auth` V1alpha1HTTPAuth
            - `basicAuth` V1alpha1BasicAuth
              - …
            - `clientCert` V1alpha1ClientCertAuth
              - …
            - `oauth2` V1alpha1OAuth2Auth
              - …
          - `headers` V1alpha1Header[]
            - `name` string, required
            - `value` string, required
          - `url` string, required
        - `oss` V1alpha1OSSArtifact
          - `accessKeySecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
            - `key` string, required — The key of the secret to select from. Must be a valid secret key.
            - `name` string — Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
            - `optional` boolean — Specify whether the Secret or its key must be defined
          - `bucket` string
          - `createBucketIfNotPresent` boolean
          - `endpoint` string
          - `key` string, required
          - `lifecycleRule` V1alpha1OSSLifecycleRule
            - `markDeletionAfterDays` integer
            - `markInfrequentAccessAfterDays` integer
          - `secretKeySecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
            - `key` string, required — The key of the secret to select from. Must be a valid secret key.
            - `name` string — Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
            - `optional` boolean — Specify whether the Secret or its key must be defined
          - `securityToken` string
          - `useSDKCreds` boolean
        - `raw` V1alpha1RawArtifact
          - `data` string, required
        - `s3` V1alpha1S3Artifact
          - `accessKeySecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
            - `key` string, required — The key of the secret to select from. Must be a valid secret key.
            - `name` string — Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
            - `optional` boolean — Specify whether the Secret or its key must be defined
          - `bucket` string
          - `caSecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
            - `key` string, required — The key of the secret to select from. Must be a valid secret key.
            - `name` string — Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
            - `optional` boolean — Specify whether the Secret or its key must be defined
          - `createBucketIfNotPresent` V1alpha1CreateS3BucketOptions
            - `objectLocking` boolean
          - `encryptionOptions` V1alpha1S3EncryptionOptions
            - `enableEncryption` boolean
            - `kmsEncryptionContext` string
            - `kmsKeyId` string
            - `serverSideCustomerKeySecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
              - …
          - `endpoint` string
          - `insecure` boolean
          - `key` string
          - `region` string
          - `roleARN` string
          - `secretKeySecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
            - `key` string, required — The key of the secret to select from. Must be a valid secret key.
            - `name` string — Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
            - `optional` boolean — Specify whether the Secret or its key must be defined
          - `useSDKCreds` boolean
      - `automountServiceAccountToken` boolean
      - `container` V1Container — A single application container that you want to run within a pod.
        - `args` string[] — Arguments to the entrypoint. The container image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell
        - `command` string[] — Entrypoint array. Not executed within a shell. The container image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell
        - `env` V1EnvVar[] — List of environment variables to set in the container. Cannot be updated.
          - `name` string, required — Name of the environment variable. Must be a C_IDENTIFIER.
          - `value` string — Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "".
          - `valueFrom` V1EnvVarSource — EnvVarSource represents a source for the value of an EnvVar.
            - `configMapKeyRef` V1ConfigMapKeySelector — Selects a key from a ConfigMap.
              - …
            - `fieldRef` V1ObjectFieldSelector — ObjectFieldSelector selects an APIVersioned field of an object.
              - …
            - `resourceFieldRef` V1ResourceFieldSelector — ResourceFieldSelector represents container resources (cpu, memory) and their output format
              - …
            - `secretKeyRef` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
              - …
        - `envFrom` V1EnvFromSource[] — List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.
          - `configMapRef` V1ConfigMapEnvSource — ConfigMapEnvSource selects a ConfigMap to populate the environment variables with. The contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables.
            - `name` string — Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
            - `optional` boolean — Specify whether the ConfigMap must be defined
          - `prefix` string — An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.
          - `secretRef` V1SecretEnvSource — SecretEnvSource selects a Secret to populate the environment variables with. The contents of the target Secret's Data field will represent the key-value pairs as environment variables.
            - `name` string — Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
            - `optional` boolean — Specify whether the Secret must be defined
        - `image` string — Container image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.
        - `imagePullPolicy` string — Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images
        - `lifecycle` V1Lifecycle — Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.
          - `postStart` V1LifecycleHandler — LifecycleHandler defines a specific action that should be taken in a lifecycle hook. One and only one of the fields, except TCPSocket must be specified.
            - `exec` V1ExecAction — ExecAction describes a "run in container" action.
              - …
            - `httpGet` V1HTTPGetAction — HTTPGetAction describes an action based on HTTP Get requests.
              - …
            - `tcpSocket` V1TCPSocketAction — TCPSocketAction describes an action based on opening a socket
              - …
          - `preStop` V1LifecycleHandler — LifecycleHandler defines a specific action that should be taken in a lifecycle hook. One and only one of the fields, except TCPSocket must be specified.
            - `exec` V1ExecAction — ExecAction describes a "run in container" action.
              - …
            - `httpGet` V1HTTPGetAction — HTTPGetAction describes an action based on HTTP Get requests.
              - …
            - `tcpSocket` V1TCPSocketAction — TCPSocketAction describes an action based on opening a socket
              - …
        - `livenessProbe` V1Probe — Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.
          - `exec` V1ExecAction — ExecAction describes a "run in container" action.
            - `command` string[] — Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.
          - `failureThreshold` integer — Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.
          - `grpc` V1GRPCAction
            - `port` integer, required — Port number of the gRPC service. Number must be in the range 1 to 65535.
            - `service` string, required — Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). If this is not specified, the default behavior is defined by gRPC.
          - `httpGet` V1HTTPGetAction — HTTPGetAction describes an action based on HTTP Get requests.
            - `host` string — Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead.
            - `httpHeaders` V1HTTPHeader[] — Custom headers to set in the request. HTTP allows repeated headers.
              - …
            - `path` string — Path to access on the HTTP server.
            - `port` IntstrIntOrString, required
              - …
            - `scheme` string — Scheme to use for connecting to the host. Defaults to HTTP.
          - `initialDelaySeconds` integer — Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
          - `periodSeconds` integer — How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.
          - `successThreshold` integer — Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.
          - `tcpSocket` V1TCPSocketAction — TCPSocketAction describes an action based on opening a socket
            - `host` string — Optional: Host name to connect to, defaults to the pod IP.
            - `port` IntstrIntOrString, required
              - …
          - `terminationGracePeriodSeconds` integer — Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.
          - `timeoutSeconds` integer — Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
        - `name` string, required — Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.
        - `ports` V1ContainerPort[] — List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default "0.0.0.0" address inside a container will be accessible from the network. Cannot be updated.
          - `containerPort` integer, required — Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.
          - `hostIP` string — What host IP to bind the external port to.
          - `hostPort` integer — Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.
          - `name` string — If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.
          - `protocol` string — Protocol for port. Must be UDP, TCP, or SCTP. Defaults to "TCP".
        - `readinessProbe` V1Probe — Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.
          - `exec` V1ExecAction — ExecAction describes a "run in container" action.
            - `command` string[] — Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.
          - `failureThreshold` integer — Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.
          - `grpc` V1GRPCAction
            - `port` integer, required — Port number of the gRPC service. Number must be in the range 1 to 65535.
            - `service` string, required — Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). If this is not specified, the default behavior is defined by gRPC.
          - `httpGet` V1HTTPGetAction — HTTPGetAction describes an action based on HTTP Get requests.
            - `host` string — Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead.
            - `httpHeaders` V1HTTPHeader[] — Custom headers to set in the request. HTTP allows repeated headers.
              - …
            - `path` string — Path to access on the HTTP server.
            - `port` IntstrIntOrString, required
              - …
            - `scheme` string — Scheme to use for connecting to the host. Defaults to HTTP.
          - `initialDelaySeconds` integer — Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
          - `periodSeconds` integer — How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.
          - `successThreshold` integer — Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.
          - `tcpSocket` V1TCPSocketAction — TCPSocketAction describes an action based on opening a socket
            - `host` string — Optional: Host name to connect to, defaults to the pod IP.
            - `port` IntstrIntOrString, required
              - …
          - `terminationGracePeriodSeconds` integer — Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.
          - `timeoutSeconds` integer — Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
        - `resources` V1ResourceRequirements — ResourceRequirements describes the compute resource requirements.
          - `limits` object — Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
          - `requests` object — Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
        - `securityContext` V1SecurityContext — SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence.
          - `allowPrivilegeEscalation` boolean — AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when spec.os.name is windows.
          - `capabilities` V1Capabilities — Adds and removes POSIX capabilities from running containers.
            - `add` string[] — Added capabilities
            - `drop` string[] — Removed capabilities
          - `privileged` boolean — Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false. Note that this field cannot be set when spec.os.name is windows.
          - `procMount` string — procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled. Note that this field cannot be set when spec.os.name is windows.
          - `readOnlyRootFilesystem` boolean — Whether this container has a read-only root filesystem. Default is false. Note that this field cannot be set when spec.os.name is windows.
          - `runAsGroup` integer — The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.
          - `runAsNonRoot` boolean — Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.
          - `runAsUser` integer — The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.
          - `seLinuxOptions` V1SELinuxOptions — SELinuxOptions are the labels to be applied to the container
            - `level` string — Level is SELinux level label that applies to the container.
            - `role` string — Role is a SELinux role label that applies to the container.
            - `type` string — Type is a SELinux type label that applies to the container.
            - `user` string — User is a SELinux user label that applies to the container.
          - `seccompProfile` V1SeccompProfile — SeccompProfile defines a pod/container's seccomp profile settings. Only one profile source may be set.
            - `localhostProfile` string — localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must only be set if type is "Localhost".
            - `type` string, required — type indicates which kind of seccomp profile will be applied. Valid options are: Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied.
          - `windowsOptions` V1WindowsSecurityContextOptions — WindowsSecurityContextOptions contain Windows-specific options and credentials.
            - `gmsaCredentialSpec` string — GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.
            - `gmsaCredentialSpecName` string — GMSACredentialSpecName is the name of the GMSA credential spec to use.
            - `hostProcess` boolean — HostProcess determines if a container should be run as a 'Host Process' container. This field is alpha-level and will only be honored by components that enable the WindowsHostProcessContainers feature flag. Setting this field without the feature flag will result in errors when validating the Pod. All of a Pod's containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). In addition, if HostProcess is true then HostNetwork must also be set to true.
            - `runAsUserName` string — The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.
        - `startupProbe` V1Probe — Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.
          - `exec` V1ExecAction — ExecAction describes a "run in container" action.
            - `command` string[] — Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.
          - `failureThreshold` integer — Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.
          - `grpc` V1GRPCAction
            - `port` integer, required — Port number of the gRPC service. Number must be in the range 1 to 65535.
            - `service` string, required — Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). If this is not specified, the default behavior is defined by gRPC.
          - `httpGet` V1HTTPGetAction — HTTPGetAction describes an action based on HTTP Get requests.
            - `host` string — Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead.
            - `httpHeaders` V1HTTPHeader[] — Custom headers to set in the request. HTTP allows repeated headers.
              - …
            - `path` string — Path to access on the HTTP server.
            - `port` IntstrIntOrString, required
              - …
            - `scheme` string — Scheme to use for connecting to the host. Defaults to HTTP.
          - `initialDelaySeconds` integer — Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
          - `periodSeconds` integer — How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.
          - `successThreshold` integer — Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.
          - `tcpSocket` V1TCPSocketAction — TCPSocketAction describes an action based on opening a socket
            - `host` string — Optional: Host name to connect to, defaults to the pod IP.
            - `port` IntstrIntOrString, required
              - …
          - `terminationGracePeriodSeconds` integer — Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.
          - `timeoutSeconds` integer — Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
        - `stdin` boolean — Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.
        - `stdinOnce` boolean — Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false
        - `terminationMessagePath` string — Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.
        - `terminationMessagePolicy` string — Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.
        - `tty` boolean — Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.
        - `volumeDevices` V1VolumeDevice[] — volumeDevices is the list of block devices to be used by the container.
          - `devicePath` string, required — devicePath is the path inside of the container that the device will be mapped to.
          - `name` string, required — name must match the name of a persistentVolumeClaim in the pod
        - `volumeMounts` V1VolumeMount[] — Pod volumes to mount into the container's filesystem. Cannot be updated.
          - `mountPath` string, required — Path within the container at which the volume should be mounted. Must not contain ':'.
          - `mountPropagation` string — mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10.
          - `name` string, required — This must match the Name of a Volume.
          - `readOnly` boolean — Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.
          - `subPath` string — Path within the volume from which the container's volume should be mounted. Defaults to "" (volume's root).
          - `subPathExpr` string — Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to "" (volume's root). SubPathExpr and SubPath are mutually exclusive.
        - `workingDir` string — Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.
      - `containerSet` V1alpha1ContainerSetTemplate
        - `containers` V1alpha1ContainerNode[], required
          - `args` string[] — Arguments to the entrypoint. The container image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell
          - `command` string[] — Entrypoint array. Not executed within a shell. The container image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell
          - `dependencies` string[]
          - `env` V1EnvVar[] — List of environment variables to set in the container. Cannot be updated.
            - `name` string, required — Name of the environment variable. Must be a C_IDENTIFIER.
            - `value` string — Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "".
            - `valueFrom` V1EnvVarSource — EnvVarSource represents a source for the value of an EnvVar.
              - …
          - `envFrom` V1EnvFromSource[] — List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.
            - `configMapRef` V1ConfigMapEnvSource — ConfigMapEnvSource selects a ConfigMap to populate the environment variables with. The contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables.
              - …
            - `prefix` string — An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.
            - `secretRef` V1SecretEnvSource — SecretEnvSource selects a Secret to populate the environment variables with. The contents of the target Secret's Data field will represent the key-value pairs as environment variables.
              - …
          - `image` string — Container image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.
          - `imagePullPolicy` string — Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images
          - `lifecycle` V1Lifecycle — Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.
            - `postStart` V1LifecycleHandler — LifecycleHandler defines a specific action that should be taken in a lifecycle hook. One and only one of the fields, except TCPSocket must be specified.
              - …
            - `preStop` V1LifecycleHandler — LifecycleHandler defines a specific action that should be taken in a lifecycle hook. One and only one of the fields, except TCPSocket must be specified.
              - …
          - `livenessProbe` V1Probe — Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.
            - `exec` V1ExecAction — ExecAction describes a "run in container" action.
              - …
            - `failureThreshold` integer — Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.
            - `grpc` V1GRPCAction
              - …
            - `httpGet` V1HTTPGetAction — HTTPGetAction describes an action based on HTTP Get requests.
              - …
            - `initialDelaySeconds` integer — Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
            - `periodSeconds` integer — How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.
            - `successThreshold` integer — Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.
            - `tcpSocket` V1TCPSocketAction — TCPSocketAction describes an action based on opening a socket
              - …
            - `terminationGracePeriodSeconds` integer — Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.
            - `timeoutSeconds` integer — Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
          - `name` string, required — Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.
          - `ports` V1ContainerPort[] — List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default "0.0.0.0" address inside a container will be accessible from the network. Cannot be updated.
            - `containerPort` integer, required — Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.
            - `hostIP` string — What host IP to bind the external port to.
            - `hostPort` integer — Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.
            - `name` string — If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.
            - `protocol` string — Protocol for port. Must be UDP, TCP, or SCTP. Defaults to "TCP".
          - `readinessProbe` V1Probe — Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.
            - `exec` V1ExecAction — ExecAction describes a "run in container" action.
              - …
            - `failureThreshold` integer — Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.
            - `grpc` V1GRPCAction
              - …
            - `httpGet` V1HTTPGetAction — HTTPGetAction describes an action based on HTTP Get requests.
              - …
            - `initialDelaySeconds` integer — Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
            - `periodSeconds` integer — How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.
            - `successThreshold` integer — Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.
            - `tcpSocket` V1TCPSocketAction — TCPSocketAction describes an action based on opening a socket
              - …
            - `terminationGracePeriodSeconds` integer — Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.
            - `timeoutSeconds` integer — Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
          - `resources` V1ResourceRequirements — ResourceRequirements describes the compute resource requirements.
            - `limits` object — Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
            - `requests` object — Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
          - `securityContext` V1SecurityContext — SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence.
            - `allowPrivilegeEscalation` boolean — AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when spec.os.name is windows.
            - `capabilities` V1Capabilities — Adds and removes POSIX capabilities from running containers.
              - …
            - `privileged` boolean — Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false. Note that this field cannot be set when spec.os.name is windows.
            - `procMount` string — procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled. Note that this field cannot be set when spec.os.name is windows.
            - `readOnlyRootFilesystem` boolean — Whether this container has a read-only root filesystem. Default is false. Note that this field cannot be set when spec.os.name is windows.
            - `runAsGroup` integer — The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.
            - `runAsNonRoot` boolean — Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.
            - `runAsUser` integer — The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.
            - `seLinuxOptions` V1SELinuxOptions — SELinuxOptions are the labels to be applied to the container
              - …
            - `seccompProfile` V1SeccompProfile — SeccompProfile defines a pod/container's seccomp profile settings. Only one profile source may be set.
              - …
            - `windowsOptions` V1WindowsSecurityContextOptions — WindowsSecurityContextOptions contain Windows-specific options and credentials.
              - …
          - `startupProbe` V1Probe — Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.
            - `exec` V1ExecAction — ExecAction describes a "run in container" action.
              - …
            - `failureThreshold` integer — Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.
            - `grpc` V1GRPCAction
              - …
            - `httpGet` V1HTTPGetAction — HTTPGetAction describes an action based on HTTP Get requests.
              - …
            - `initialDelaySeconds` integer — Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
            - `periodSeconds` integer — How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.
            - `successThreshold` integer — Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.
            - `tcpSocket` V1TCPSocketAction — TCPSocketAction describes an action based on opening a socket
              - …
            - `terminationGracePeriodSeconds` integer — Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.
            - `timeoutSeconds` integer — Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
          - `stdin` boolean — Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.
          - `stdinOnce` boolean — Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false
          - `terminationMessagePath` string — Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.
          - `terminationMessagePolicy` string — Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.
          - `tty` boolean — Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.
          - `volumeDevices` V1VolumeDevice[] — volumeDevices is the list of block devices to be used by the container.
            - `devicePath` string, required — devicePath is the path inside of the container that the device will be mapped to.
            - `name` string, required — name must match the name of a persistentVolumeClaim in the pod
          - `volumeMounts` V1VolumeMount[] — Pod volumes to mount into the container's filesystem. Cannot be updated.
            - `mountPath` string, required — Path within the container at which the volume should be mounted. Must not contain ':'.
            - `mountPropagation` string — mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10.
            - `name` string, required — This must match the Name of a Volume.
            - `readOnly` boolean — Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.
            - `subPath` string — Path within the volume from which the container's volume should be mounted. Defaults to "" (volume's root).
            - `subPathExpr` string — Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to "" (volume's root). SubPathExpr and SubPath are mutually exclusive.
          - `workingDir` string — Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.
        - `retryStrategy` V1alpha1ContainerSetRetryStrategy
          - `duration` string
          - `retries` IntstrIntOrString, required
            - `IntVal` integer, required
            - `StrVal` string, required
            - `Type` integer, required
        - `volumeMounts` V1VolumeMount[]
          - `mountPath` string, required — Path within the container at which the volume should be mounted. Must not contain ':'.
          - `mountPropagation` string — mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10.
          - `name` string, required — This must match the Name of a Volume.
          - `readOnly` boolean — Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.
          - `subPath` string — Path within the volume from which the container's volume should be mounted. Defaults to "" (volume's root).
          - `subPathExpr` string — Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to "" (volume's root). SubPathExpr and SubPath are mutually exclusive.
      - `daemon` boolean
      - `dag` V1alpha1DAGTemplate
        - `failFast` boolean
        - `target` string
        - `tasks` V1alpha1DAGTask[], required
          - `arguments` V1alpha1Arguments
            - `artifacts` V1alpha1Artifact[]
              - …
            - `parameters` V1alpha1Parameter[]
              - …
          - `continueOn` V1alpha1ContinueOn
            - `error` boolean
            - `failed` boolean
          - `dependencies` string[]
          - `depends` string
          - `hooks` object
          - `inline` V1alpha1Template — recursive
          - `name` string, required
          - `onExit` string
          - `template` string
          - `templateRef` V1alpha1TemplateRef
            - `clusterScope` boolean
            - `name` string
            - `template` string
          - `when` string
          - `withItems` V1alpha1Item[]
            - unknown
          - `withParam` string
          - `withSequence` V1alpha1Sequence
            - `count` IntstrIntOrString
              - …
            - `end` IntstrIntOrString
              - …
            - `format` string
            - `start` IntstrIntOrString
              - …
      - `data` V1alpha1Data
        - `source` V1alpha1DataSource, required
          - `artifactPaths` V1alpha1ArtifactPaths
            - `archive` V1alpha1ArchiveStrategy
              - …
            - `archiveLogs` boolean
            - `artifactGC` V1alpha1ArtifactGC
              - …
            - `artifactory` V1alpha1ArtifactoryArtifact
              - …
            - `azure` V1alpha1AzureArtifact
              - …
            - `deleted` boolean
            - `from` string
            - `fromExpression` string
            - `gcs` V1alpha1GCSArtifact
              - …
            - `git` V1alpha1GitArtifact
              - …
            - `globalName` string
            - `hdfs` V1alpha1HDFSArtifact
              - …
            - `http` V1alpha1HTTPArtifact
              - …
            - `mode` integer
            - `name` string, required
            - `optional` boolean
            - `oss` V1alpha1OSSArtifact
              - …
            - `path` string
            - `raw` V1alpha1RawArtifact
              - …
            - `recurseMode` boolean
            - `s3` V1alpha1S3Artifact
              - …
            - `subPath` string
        - `transformation` V1alpha1TransformationStep[], required
          - `expression` string, required
      - `executor` V1alpha1ExecutorConfig
        - `serviceAccountName` string
      - `failFast` boolean
      - `hostAliases` V1HostAlias[]
        - `hostnames` string[] — Hostnames for the above IP address.
        - `ip` string — IP address of the host file entry.
      - `http` V1alpha1HTTP
        - `body` string
        - `bodyFrom` V1alpha1HTTPBodySource
          - `bytes` string
        - `headers` V1alpha1HTTPHeader[]
          - `name` string, required
          - `value` string
          - `valueFrom` V1alpha1HTTPHeaderSource
            - `secretKeyRef` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
              - …
        - `insecureSkipVerify` boolean
        - `method` string
        - `successCondition` string
        - `timeoutSeconds` integer
        - `url` string, required
      - `initContainers` V1alpha1UserContainer[]
        - `args` string[] — Arguments to the entrypoint. The container image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell
        - `command` string[] — Entrypoint array. Not executed within a shell. The container image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell
        - `env` V1EnvVar[] — List of environment variables to set in the container. Cannot be updated.
          - `name` string, required — Name of the environment variable. Must be a C_IDENTIFIER.
          - `value` string — Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "".
          - `valueFrom` V1EnvVarSource — EnvVarSource represents a source for the value of an EnvVar.
            - `configMapKeyRef` V1ConfigMapKeySelector — Selects a key from a ConfigMap.
              - …
            - `fieldRef` V1ObjectFieldSelector — ObjectFieldSelector selects an APIVersioned field of an object.
              - …
            - `resourceFieldRef` V1ResourceFieldSelector — ResourceFieldSelector represents container resources (cpu, memory) and their output format
              - …
            - `secretKeyRef` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
              - …
        - `envFrom` V1EnvFromSource[] — List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.
          - `configMapRef` V1ConfigMapEnvSource — ConfigMapEnvSource selects a ConfigMap to populate the environment variables with. The contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables.
            - `name` string — Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
            - `optional` boolean — Specify whether the ConfigMap must be defined
          - `prefix` string — An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.
          - `secretRef` V1SecretEnvSource — SecretEnvSource selects a Secret to populate the environment variables with. The contents of the target Secret's Data field will represent the key-value pairs as environment variables.
            - `name` string — Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
            - `optional` boolean — Specify whether the Secret must be defined
        - `image` string — Container image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.
        - `imagePullPolicy` string — Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images
        - `lifecycle` V1Lifecycle — Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.
          - `postStart` V1LifecycleHandler — LifecycleHandler defines a specific action that should be taken in a lifecycle hook. One and only one of the fields, except TCPSocket must be specified.
            - `exec` V1ExecAction — ExecAction describes a "run in container" action.
              - …
            - `httpGet` V1HTTPGetAction — HTTPGetAction describes an action based on HTTP Get requests.
              - …
            - `tcpSocket` V1TCPSocketAction — TCPSocketAction describes an action based on opening a socket
              - …
          - `preStop` V1LifecycleHandler — LifecycleHandler defines a specific action that should be taken in a lifecycle hook. One and only one of the fields, except TCPSocket must be specified.
            - `exec` V1ExecAction — ExecAction describes a "run in container" action.
              - …
            - `httpGet` V1HTTPGetAction — HTTPGetAction describes an action based on HTTP Get requests.
              - …
            - `tcpSocket` V1TCPSocketAction — TCPSocketAction describes an action based on opening a socket
              - …
        - `livenessProbe` V1Probe — Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.
          - `exec` V1ExecAction — ExecAction describes a "run in container" action.
            - `command` string[] — Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.
          - `failureThreshold` integer — Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.
          - `grpc` V1GRPCAction
            - `port` integer, required — Port number of the gRPC service. Number must be in the range 1 to 65535.
            - `service` string, required — Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). If this is not specified, the default behavior is defined by gRPC.
          - `httpGet` V1HTTPGetAction — HTTPGetAction describes an action based on HTTP Get requests.
            - `host` string — Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead.
            - `httpHeaders` V1HTTPHeader[] — Custom headers to set in the request. HTTP allows repeated headers.
              - …
            - `path` string — Path to access on the HTTP server.
            - `port` IntstrIntOrString, required
              - …
            - `scheme` string — Scheme to use for connecting to the host. Defaults to HTTP.
          - `initialDelaySeconds` integer — Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
          - `periodSeconds` integer — How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.
          - `successThreshold` integer — Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.
          - `tcpSocket` V1TCPSocketAction — TCPSocketAction describes an action based on opening a socket
            - `host` string — Optional: Host name to connect to, defaults to the pod IP.
            - `port` IntstrIntOrString, required
              - …
          - `terminationGracePeriodSeconds` integer — Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.
          - `timeoutSeconds` integer — Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
        - `mirrorVolumeMounts` boolean
        - `name` string, required — Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.
        - `ports` V1ContainerPort[] — List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default "0.0.0.0" address inside a container will be accessible from the network. Cannot be updated.
          - `containerPort` integer, required — Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.
          - `hostIP` string — What host IP to bind the external port to.
          - `hostPort` integer — Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.
          - `name` string — If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.
          - `protocol` string — Protocol for port. Must be UDP, TCP, or SCTP. Defaults to "TCP".
        - `readinessProbe` V1Probe — Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.
          - `exec` V1ExecAction — ExecAction describes a "run in container" action.
            - `command` string[] — Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.
          - `failureThreshold` integer — Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.
          - `grpc` V1GRPCAction
            - `port` integer, required — Port number of the gRPC service. Number must be in the range 1 to 65535.
            - `service` string, required — Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). If this is not specified, the default behavior is defined by gRPC.
          - `httpGet` V1HTTPGetAction — HTTPGetAction describes an action based on HTTP Get requests.
            - `host` string — Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead.
            - `httpHeaders` V1HTTPHeader[] — Custom headers to set in the request. HTTP allows repeated headers.
              - …
            - `path` string — Path to access on the HTTP server.
            - `port` IntstrIntOrString, required
              - …
            - `scheme` string — Scheme to use for connecting to the host. Defaults to HTTP.
          - `initialDelaySeconds` integer — Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
          - `periodSeconds` integer — How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.
          - `successThreshold` integer — Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.
          - `tcpSocket` V1TCPSocketAction — TCPSocketAction describes an action based on opening a socket
            - `host` string — Optional: Host name to connect to, defaults to the pod IP.
            - `port` IntstrIntOrString, required
              - …
          - `terminationGracePeriodSeconds` integer — Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.
          - `timeoutSeconds` integer — Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
        - `resources` V1ResourceRequirements — ResourceRequirements describes the compute resource requirements.
          - `limits` object — Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
          - `requests` object — Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
        - `securityContext` V1SecurityContext — SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence.
          - `allowPrivilegeEscalation` boolean — AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when spec.os.name is windows.
          - `capabilities` V1Capabilities — Adds and removes POSIX capabilities from running containers.
            - `add` string[] — Added capabilities
            - `drop` string[] — Removed capabilities
          - `privileged` boolean — Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false. Note that this field cannot be set when spec.os.name is windows.
          - `procMount` string — procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled. Note that this field cannot be set when spec.os.name is windows.
          - `readOnlyRootFilesystem` boolean — Whether this container has a read-only root filesystem. Default is false. Note that this field cannot be set when spec.os.name is windows.
          - `runAsGroup` integer — The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.
          - `runAsNonRoot` boolean — Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.
          - `runAsUser` integer — The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.
          - `seLinuxOptions` V1SELinuxOptions — SELinuxOptions are the labels to be applied to the container
            - `level` string — Level is SELinux level label that applies to the container.
            - `role` string — Role is a SELinux role label that applies to the container.
            - `type` string — Type is a SELinux type label that applies to the container.
            - `user` string — User is a SELinux user label that applies to the container.
          - `seccompProfile` V1SeccompProfile — SeccompProfile defines a pod/container's seccomp profile settings. Only one profile source may be set.
            - `localhostProfile` string — localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must only be set if type is "Localhost".
            - `type` string, required — type indicates which kind of seccomp profile will be applied. Valid options are: Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied.
          - `windowsOptions` V1WindowsSecurityContextOptions — WindowsSecurityContextOptions contain Windows-specific options and credentials.
            - `gmsaCredentialSpec` string — GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.
            - `gmsaCredentialSpecName` string — GMSACredentialSpecName is the name of the GMSA credential spec to use.
            - `hostProcess` boolean — HostProcess determines if a container should be run as a 'Host Process' container. This field is alpha-level and will only be honored by components that enable the WindowsHostProcessContainers feature flag. Setting this field without the feature flag will result in errors when validating the Pod. All of a Pod's containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). In addition, if HostProcess is true then HostNetwork must also be set to true.
            - `runAsUserName` string — The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.
        - `startupProbe` V1Probe — Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.
          - `exec` V1ExecAction — ExecAction describes a "run in container" action.
            - `command` string[] — Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.
          - `failureThreshold` integer — Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.
          - `grpc` V1GRPCAction
            - `port` integer, required — Port number of the gRPC service. Number must be in the range 1 to 65535.
            - `service` string, required — Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). If this is not specified, the default behavior is defined by gRPC.
          - `httpGet` V1HTTPGetAction — HTTPGetAction describes an action based on HTTP Get requests.
            - `host` string — Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead.
            - `httpHeaders` V1HTTPHeader[] — Custom headers to set in the request. HTTP allows repeated headers.
              - …
            - `path` string — Path to access on the HTTP server.
            - `port` IntstrIntOrString, required
              - …
            - `scheme` string — Scheme to use for connecting to the host. Defaults to HTTP.
          - `initialDelaySeconds` integer — Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
          - `periodSeconds` integer — How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.
          - `successThreshold` integer — Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.
          - `tcpSocket` V1TCPSocketAction — TCPSocketAction describes an action based on opening a socket
            - `host` string — Optional: Host name to connect to, defaults to the pod IP.
            - `port` IntstrIntOrString, required
              - …
          - `terminationGracePeriodSeconds` integer — Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.
          - `timeoutSeconds` integer — Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
        - `stdin` boolean — Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.
        - `stdinOnce` boolean — Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false
        - `terminationMessagePath` string — Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.
        - `terminationMessagePolicy` string — Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.
        - `tty` boolean — Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.
        - `volumeDevices` V1VolumeDevice[] — volumeDevices is the list of block devices to be used by the container.
          - `devicePath` string, required — devicePath is the path inside of the container that the device will be mapped to.
          - `name` string, required — name must match the name of a persistentVolumeClaim in the pod
        - `volumeMounts` V1VolumeMount[] — Pod volumes to mount into the container's filesystem. Cannot be updated.
          - `mountPath` string, required — Path within the container at which the volume should be mounted. Must not contain ':'.
          - `mountPropagation` string — mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10.
          - `name` string, required — This must match the Name of a Volume.
          - `readOnly` boolean — Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.
          - `subPath` string — Path within the volume from which the container's volume should be mounted. Defaults to "" (volume's root).
          - `subPathExpr` string — Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to "" (volume's root). SubPathExpr and SubPath are mutually exclusive.
        - `workingDir` string — Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.
      - `inputs` V1alpha1Inputs
        - `artifacts` V1alpha1Artifact[]
          - `archive` V1alpha1ArchiveStrategy
            - `none` unknown
            - `tar` V1alpha1TarStrategy
              - …
            - `zip` unknown
          - `archiveLogs` boolean
          - `artifactGC` V1alpha1ArtifactGC
            - `podMetadata` V1alpha1Metadata
              - …
            - `serviceAccountName` string
            - `strategy` string
          - `artifactory` V1alpha1ArtifactoryArtifact
            - `passwordSecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
              - …
            - `url` string, required
            - `usernameSecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
              - …
          - `azure` V1alpha1AzureArtifact
            - `accountKeySecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
              - …
            - `blob` string, required
            - `container` string, required
            - `endpoint` string, required
            - `useSDKCreds` boolean
          - `deleted` boolean
          - `from` string
          - `fromExpression` string
          - `gcs` V1alpha1GCSArtifact
            - `bucket` string
            - `key` string, required
            - `serviceAccountKeySecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
              - …
          - `git` V1alpha1GitArtifact
            - `branch` string
            - `depth` integer
            - `disableSubmodules` boolean
            - `fetch` string[]
            - `insecureIgnoreHostKey` boolean
            - `passwordSecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
              - …
            - `repo` string, required
            - `revision` string
            - `singleBranch` boolean
            - `sshPrivateKeySecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
              - …
            - `usernameSecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
              - …
          - `globalName` string
          - `hdfs` V1alpha1HDFSArtifact
            - `addresses` string[]
            - `force` boolean
            - `hdfsUser` string
            - `krbCCacheSecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
              - …
            - `krbConfigConfigMap` V1ConfigMapKeySelector — Selects a key from a ConfigMap.
              - …
            - `krbKeytabSecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
              - …
            - `krbRealm` string
            - `krbServicePrincipalName` string
            - `krbUsername` string
            - `path` string, required
          - `http` V1alpha1HTTPArtifact
            - `auth` V1alpha1HTTPAuth
              - …
            - `headers` V1alpha1Header[]
              - …
            - `url` string, required
          - `mode` integer
          - `name` string, required
          - `optional` boolean
          - `oss` V1alpha1OSSArtifact
            - `accessKeySecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
              - …
            - `bucket` string
            - `createBucketIfNotPresent` boolean
            - `endpoint` string
            - `key` string, required
            - `lifecycleRule` V1alpha1OSSLifecycleRule
              - …
            - `secretKeySecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
              - …
            - `securityToken` string
            - `useSDKCreds` boolean
          - `path` string
          - `raw` V1alpha1RawArtifact
            - `data` string, required
          - `recurseMode` boolean
          - `s3` V1alpha1S3Artifact
            - `accessKeySecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
              - …
            - `bucket` string
            - `caSecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
              - …
            - `createBucketIfNotPresent` V1alpha1CreateS3BucketOptions
              - …
            - `encryptionOptions` V1alpha1S3EncryptionOptions
              - …
            - `endpoint` string
            - `insecure` boolean
            - `key` string
            - `region` string
            - `roleARN` string
            - `secretKeySecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
              - …
            - `useSDKCreds` boolean
          - `subPath` string
        - `parameters` V1alpha1Parameter[]
          - `default` string
          - `description` string
          - `enum` string[]
          - `globalName` string
          - `name` string, required
          - `value` string
          - `valueFrom` V1alpha1ValueFrom
            - `configMapKeyRef` V1ConfigMapKeySelector — Selects a key from a ConfigMap.
              - …
            - `default` string
            - `event` string
            - `expression` string
            - `jqFilter` string
            - `jsonPath` string
            - `parameter` string
            - `path` string
            - `supplied` unknown
      - `memoize` V1alpha1Memoize
        - `cache` V1alpha1Cache, required
          - `configMap` V1ConfigMapKeySelector, required — Selects a key from a ConfigMap.
            - `key` string, required — The key to select.
            - `name` string — Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
            - `optional` boolean — Specify whether the ConfigMap or its key must be defined
        - `key` string, required
        - `maxAge` string, required
      - `metadata` V1alpha1Metadata
        - `annotations` object
        - `labels` object
      - `metrics` V1alpha1Metrics
        - `prometheus` V1alpha1Prometheus[], required
          - `counter` V1alpha1Counter
            - `value` string, required
          - `gauge` V1alpha1Gauge
            - `operation` string
            - `realtime` boolean, required
            - `value` string, required
          - `help` string, required
          - `histogram` V1alpha1Histogram
            - `buckets` V1alpha1Amount[], required
              - …
            - `value` string, required
          - `labels` V1alpha1MetricLabel[]
            - `key` string, required
            - `value` string, required
          - `name` string, required
          - `when` string
      - `name` string
      - `nodeSelector` object
      - `outputs` V1alpha1Outputs
        - `artifacts` V1alpha1Artifact[]
          - `archive` V1alpha1ArchiveStrategy
            - `none` unknown
            - `tar` V1alpha1TarStrategy
              - …
            - `zip` unknown
          - `archiveLogs` boolean
          - `artifactGC` V1alpha1ArtifactGC
            - `podMetadata` V1alpha1Metadata
              - …
            - `serviceAccountName` string
            - `strategy` string
          - `artifactory` V1alpha1ArtifactoryArtifact
            - `passwordSecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
              - …
            - `url` string, required
            - `usernameSecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
              - …
          - `azure` V1alpha1AzureArtifact
            - `accountKeySecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
              - …
            - `blob` string, required
            - `container` string, required
            - `endpoint` string, required
            - `useSDKCreds` boolean
          - `deleted` boolean
          - `from` string
          - `fromExpression` string
          - `gcs` V1alpha1GCSArtifact
            - `bucket` string
            - `key` string, required
            - `serviceAccountKeySecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
              - …
          - `git` V1alpha1GitArtifact
            - `branch` string
            - `depth` integer
            - `disableSubmodules` boolean
            - `fetch` string[]
            - `insecureIgnoreHostKey` boolean
            - `passwordSecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
              - …
            - `repo` string, required
            - `revision` string
            - `singleBranch` boolean
            - `sshPrivateKeySecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
              - …
            - `usernameSecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
              - …
          - `globalName` string
          - `hdfs` V1alpha1HDFSArtifact
            - `addresses` string[]
            - `force` boolean
            - `hdfsUser` string
            - `krbCCacheSecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
              - …
            - `krbConfigConfigMap` V1ConfigMapKeySelector — Selects a key from a ConfigMap.
              - …
            - `krbKeytabSecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
              - …
            - `krbRealm` string
            - `krbServicePrincipalName` string
            - `krbUsername` string
            - `path` string, required
          - `http` V1alpha1HTTPArtifact
            - `auth` V1alpha1HTTPAuth
              - …
            - `headers` V1alpha1Header[]
              - …
            - `url` string, required
          - `mode` integer
          - `name` string, required
          - `optional` boolean
          - `oss` V1alpha1OSSArtifact
            - `accessKeySecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
              - …
            - `bucket` string
            - `createBucketIfNotPresent` boolean
            - `endpoint` string
            - `key` string, required
            - `lifecycleRule` V1alpha1OSSLifecycleRule
              - …
            - `secretKeySecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
              - …
            - `securityToken` string
            - `useSDKCreds` boolean
          - `path` string
          - `raw` V1alpha1RawArtifact
            - `data` string, required
          - `recurseMode` boolean
          - `s3` V1alpha1S3Artifact
            - `accessKeySecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
              - …
            - `bucket` string
            - `caSecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
              - …
            - `createBucketIfNotPresent` V1alpha1CreateS3BucketOptions
              - …
            - `encryptionOptions` V1alpha1S3EncryptionOptions
              - …
            - `endpoint` string
            - `insecure` boolean
            - `key` string
            - `region` string
            - `roleARN` string
            - `secretKeySecret` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
              - …
            - `useSDKCreds` boolean
          - `subPath` string
        - `exitCode` string
        - `parameters` V1alpha1Parameter[]
          - `default` string
          - `description` string
          - `enum` string[]
          - `globalName` string
          - `name` string, required
          - `value` string
          - `valueFrom` V1alpha1ValueFrom
            - `configMapKeyRef` V1ConfigMapKeySelector — Selects a key from a ConfigMap.
              - …
            - `default` string
            - `event` string
            - `expression` string
            - `jqFilter` string
            - `jsonPath` string
            - `parameter` string
            - `path` string
            - `supplied` unknown
        - `result` string
      - `parallelism` integer
      - `plugin` unknown
      - `podSpecPatch` string
      - `priority` integer
      - `priorityClassName` string
      - `resource` V1alpha1ResourceTemplate
        - `action` string, required
        - `failureCondition` string
        - `flags` string[]
        - `manifest` string
        - `manifestFrom` V1alpha1ManifestFrom
          - `artifact` V1alpha1Artifact, required
            - `archive` V1alpha1ArchiveStrategy
              - …
            - `archiveLogs` boolean
            - `artifactGC` V1alpha1ArtifactGC
              - …
            - `artifactory` V1alpha1ArtifactoryArtifact
              - …
            - `azure` V1alpha1AzureArtifact
              - …
            - `deleted` boolean
            - `from` string
            - `fromExpression` string
            - `gcs` V1alpha1GCSArtifact
              - …
            - `git` V1alpha1GitArtifact
              - …
            - `globalName` string
            - `hdfs` V1alpha1HDFSArtifact
              - …
            - `http` V1alpha1HTTPArtifact
              - …
            - `mode` integer
            - `name` string, required
            - `optional` boolean
            - `oss` V1alpha1OSSArtifact
              - …
            - `path` string
            - `raw` V1alpha1RawArtifact
              - …
            - `recurseMode` boolean
            - `s3` V1alpha1S3Artifact
              - …
            - `subPath` string
        - `mergeStrategy` string
        - `setOwnerReference` boolean
        - `successCondition` string
      - `retryStrategy` V1alpha1RetryStrategy
        - `affinity` V1alpha1RetryAffinity
          - `nodeAntiAffinity` unknown
        - `backoff` V1alpha1Backoff
          - `duration` string
          - `factor` IntstrIntOrString
            - `IntVal` integer, required
            - `StrVal` string, required
            - `Type` integer, required
          - `maxDuration` string
        - `expression` string
        - `limit` IntstrIntOrString
          - `IntVal` integer, required
          - `StrVal` string, required
          - `Type` integer, required
        - `retryPolicy` string
      - `schedulerName` string
      - `script` V1alpha1ScriptTemplate — A single application container that you want to run within a pod.
        - `args` string[] — Arguments to the entrypoint. The container image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell
        - `command` string[] — Entrypoint array. Not executed within a shell. The container image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell
        - `env` V1EnvVar[] — List of environment variables to set in the container. Cannot be updated.
          - `name` string, required — Name of the environment variable. Must be a C_IDENTIFIER.
          - `value` string — Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "".
          - `valueFrom` V1EnvVarSource — EnvVarSource represents a source for the value of an EnvVar.
            - `configMapKeyRef` V1ConfigMapKeySelector — Selects a key from a ConfigMap.
              - …
            - `fieldRef` V1ObjectFieldSelector — ObjectFieldSelector selects an APIVersioned field of an object.
              - …
            - `resourceFieldRef` V1ResourceFieldSelector — ResourceFieldSelector represents container resources (cpu, memory) and their output format
              - …
            - `secretKeyRef` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
              - …
        - `envFrom` V1EnvFromSource[] — List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.
          - `configMapRef` V1ConfigMapEnvSource — ConfigMapEnvSource selects a ConfigMap to populate the environment variables with. The contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables.
            - `name` string — Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
            - `optional` boolean — Specify whether the ConfigMap must be defined
          - `prefix` string — An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.
          - `secretRef` V1SecretEnvSource — SecretEnvSource selects a Secret to populate the environment variables with. The contents of the target Secret's Data field will represent the key-value pairs as environment variables.
            - `name` string — Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
            - `optional` boolean — Specify whether the Secret must be defined
        - `image` string — Container image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.
        - `imagePullPolicy` string — Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images
        - `lifecycle` V1Lifecycle — Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.
          - `postStart` V1LifecycleHandler — LifecycleHandler defines a specific action that should be taken in a lifecycle hook. One and only one of the fields, except TCPSocket must be specified.
            - `exec` V1ExecAction — ExecAction describes a "run in container" action.
              - …
            - `httpGet` V1HTTPGetAction — HTTPGetAction describes an action based on HTTP Get requests.
              - …
            - `tcpSocket` V1TCPSocketAction — TCPSocketAction describes an action based on opening a socket
              - …
          - `preStop` V1LifecycleHandler — LifecycleHandler defines a specific action that should be taken in a lifecycle hook. One and only one of the fields, except TCPSocket must be specified.
            - `exec` V1ExecAction — ExecAction describes a "run in container" action.
              - …
            - `httpGet` V1HTTPGetAction — HTTPGetAction describes an action based on HTTP Get requests.
              - …
            - `tcpSocket` V1TCPSocketAction — TCPSocketAction describes an action based on opening a socket
              - …
        - `livenessProbe` V1Probe — Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.
          - `exec` V1ExecAction — ExecAction describes a "run in container" action.
            - `command` string[] — Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.
          - `failureThreshold` integer — Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.
          - `grpc` V1GRPCAction
            - `port` integer, required — Port number of the gRPC service. Number must be in the range 1 to 65535.
            - `service` string, required — Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). If this is not specified, the default behavior is defined by gRPC.
          - `httpGet` V1HTTPGetAction — HTTPGetAction describes an action based on HTTP Get requests.
            - `host` string — Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead.
            - `httpHeaders` V1HTTPHeader[] — Custom headers to set in the request. HTTP allows repeated headers.
              - …
            - `path` string — Path to access on the HTTP server.
            - `port` IntstrIntOrString, required
              - …
            - `scheme` string — Scheme to use for connecting to the host. Defaults to HTTP.
          - `initialDelaySeconds` integer — Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
          - `periodSeconds` integer — How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.
          - `successThreshold` integer — Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.
          - `tcpSocket` V1TCPSocketAction — TCPSocketAction describes an action based on opening a socket
            - `host` string — Optional: Host name to connect to, defaults to the pod IP.
            - `port` IntstrIntOrString, required
              - …
          - `terminationGracePeriodSeconds` integer — Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.
          - `timeoutSeconds` integer — Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
        - `name` string, required — Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.
        - `ports` V1ContainerPort[] — List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default "0.0.0.0" address inside a container will be accessible from the network. Cannot be updated.
          - `containerPort` integer, required — Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.
          - `hostIP` string — What host IP to bind the external port to.
          - `hostPort` integer — Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.
          - `name` string — If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.
          - `protocol` string — Protocol for port. Must be UDP, TCP, or SCTP. Defaults to "TCP".
        - `readinessProbe` V1Probe — Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.
          - `exec` V1ExecAction — ExecAction describes a "run in container" action.
            - `command` string[] — Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.
          - `failureThreshold` integer — Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.
          - `grpc` V1GRPCAction
            - `port` integer, required — Port number of the gRPC service. Number must be in the range 1 to 65535.
            - `service` string, required — Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). If this is not specified, the default behavior is defined by gRPC.
          - `httpGet` V1HTTPGetAction — HTTPGetAction describes an action based on HTTP Get requests.
            - `host` string — Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead.
            - `httpHeaders` V1HTTPHeader[] — Custom headers to set in the request. HTTP allows repeated headers.
              - …
            - `path` string — Path to access on the HTTP server.
            - `port` IntstrIntOrString, required
              - …
            - `scheme` string — Scheme to use for connecting to the host. Defaults to HTTP.
          - `initialDelaySeconds` integer — Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
          - `periodSeconds` integer — How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.
          - `successThreshold` integer — Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.
          - `tcpSocket` V1TCPSocketAction — TCPSocketAction describes an action based on opening a socket
            - `host` string — Optional: Host name to connect to, defaults to the pod IP.
            - `port` IntstrIntOrString, required
              - …
          - `terminationGracePeriodSeconds` integer — Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.
          - `timeoutSeconds` integer — Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
        - `resources` V1ResourceRequirements — ResourceRequirements describes the compute resource requirements.
          - `limits` object — Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
          - `requests` object — Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
        - `securityContext` V1SecurityContext — SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence.
          - `allowPrivilegeEscalation` boolean — AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when spec.os.name is windows.
          - `capabilities` V1Capabilities — Adds and removes POSIX capabilities from running containers.
            - `add` string[] — Added capabilities
            - `drop` string[] — Removed capabilities
          - `privileged` boolean — Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false. Note that this field cannot be set when spec.os.name is windows.
          - `procMount` string — procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled. Note that this field cannot be set when spec.os.name is windows.
          - `readOnlyRootFilesystem` boolean — Whether this container has a read-only root filesystem. Default is false. Note that this field cannot be set when spec.os.name is windows.
          - `runAsGroup` integer — The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.
          - `runAsNonRoot` boolean — Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.
          - `runAsUser` integer — The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.
          - `seLinuxOptions` V1SELinuxOptions — SELinuxOptions are the labels to be applied to the container
            - `level` string — Level is SELinux level label that applies to the container.
            - `role` string — Role is a SELinux role label that applies to the container.
            - `type` string — Type is a SELinux type label that applies to the container.
            - `user` string — User is a SELinux user label that applies to the container.
          - `seccompProfile` V1SeccompProfile — SeccompProfile defines a pod/container's seccomp profile settings. Only one profile source may be set.
            - `localhostProfile` string — localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must only be set if type is "Localhost".
            - `type` string, required — type indicates which kind of seccomp profile will be applied. Valid options are: Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied.
          - `windowsOptions` V1WindowsSecurityContextOptions — WindowsSecurityContextOptions contain Windows-specific options and credentials.
            - `gmsaCredentialSpec` string — GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.
            - `gmsaCredentialSpecName` string — GMSACredentialSpecName is the name of the GMSA credential spec to use.
            - `hostProcess` boolean — HostProcess determines if a container should be run as a 'Host Process' container. This field is alpha-level and will only be honored by components that enable the WindowsHostProcessContainers feature flag. Setting this field without the feature flag will result in errors when validating the Pod. All of a Pod's containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). In addition, if HostProcess is true then HostNetwork must also be set to true.
            - `runAsUserName` string — The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.
        - `source` string, required
        - `startupProbe` V1Probe — Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.
          - `exec` V1ExecAction — ExecAction describes a "run in container" action.
            - `command` string[] — Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.
          - `failureThreshold` integer — Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.
          - `grpc` V1GRPCAction
            - `port` integer, required — Port number of the gRPC service. Number must be in the range 1 to 65535.
            - `service` string, required — Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). If this is not specified, the default behavior is defined by gRPC.
          - `httpGet` V1HTTPGetAction — HTTPGetAction describes an action based on HTTP Get requests.
            - `host` string — Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead.
            - `httpHeaders` V1HTTPHeader[] — Custom headers to set in the request. HTTP allows repeated headers.
              - …
            - `path` string — Path to access on the HTTP server.
            - `port` IntstrIntOrString, required
              - …
            - `scheme` string — Scheme to use for connecting to the host. Defaults to HTTP.
          - `initialDelaySeconds` integer — Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
          - `periodSeconds` integer — How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.
          - `successThreshold` integer — Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.
          - `tcpSocket` V1TCPSocketAction — TCPSocketAction describes an action based on opening a socket
            - `host` string — Optional: Host name to connect to, defaults to the pod IP.
            - `port` IntstrIntOrString, required
              - …
          - `terminationGracePeriodSeconds` integer — Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.
          - `timeoutSeconds` integer — Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
        - `stdin` boolean — Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.
        - `stdinOnce` boolean — Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false
        - `terminationMessagePath` string — Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.
        - `terminationMessagePolicy` string — Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.
        - `tty` boolean — Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.
        - `volumeDevices` V1VolumeDevice[] — volumeDevices is the list of block devices to be used by the container.
          - `devicePath` string, required — devicePath is the path inside of the container that the device will be mapped to.
          - `name` string, required — name must match the name of a persistentVolumeClaim in the pod
        - `volumeMounts` V1VolumeMount[] — Pod volumes to mount into the container's filesystem. Cannot be updated.
          - `mountPath` string, required — Path within the container at which the volume should be mounted. Must not contain ':'.
          - `mountPropagation` string — mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10.
          - `name` string, required — This must match the Name of a Volume.
          - `readOnly` boolean — Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.
          - `subPath` string — Path within the volume from which the container's volume should be mounted. Defaults to "" (volume's root).
          - `subPathExpr` string — Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to "" (volume's root). SubPathExpr and SubPath are mutually exclusive.
        - `workingDir` string — Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.
      - `securityContext` V1PodSecurityContext — PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.
        - `fsGroup` integer — A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod: 1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw
        - `fsGroupChangePolicy` string — fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod. This field will only apply to volume types which support fsGroup based ownership(and permissions). It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir. Valid values are "OnRootMismatch" and "Always". If not specified, "Always" is used. Note that this field cannot be set when spec.os.name is windows.
        - `runAsGroup` integer — The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. Note that this field cannot be set when spec.os.name is windows.
        - `runAsNonRoot` boolean — Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.
        - `runAsUser` integer — The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. Note that this field cannot be set when spec.os.name is windows.
        - `seLinuxOptions` V1SELinuxOptions — SELinuxOptions are the labels to be applied to the container
          - `level` string — Level is SELinux level label that applies to the container.
          - `role` string — Role is a SELinux role label that applies to the container.
          - `type` string — Type is a SELinux type label that applies to the container.
          - `user` string — User is a SELinux user label that applies to the container.
        - `seccompProfile` V1SeccompProfile — SeccompProfile defines a pod/container's seccomp profile settings. Only one profile source may be set.
          - `localhostProfile` string — localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must only be set if type is "Localhost".
          - `type` string, required — type indicates which kind of seccomp profile will be applied. Valid options are: Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied.
        - `supplementalGroups` integer[] — A list of groups applied to the first process run in each container, in addition to the container's primary GID. If unspecified, no groups will be added to any container. Note that this field cannot be set when spec.os.name is windows.
        - `sysctls` V1Sysctl[] — Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch. Note that this field cannot be set when spec.os.name is windows.
          - `name` string, required — Name of a property to set
          - `value` string, required — Value of a property to set
        - `windowsOptions` V1WindowsSecurityContextOptions — WindowsSecurityContextOptions contain Windows-specific options and credentials.
          - `gmsaCredentialSpec` string — GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.
          - `gmsaCredentialSpecName` string — GMSACredentialSpecName is the name of the GMSA credential spec to use.
          - `hostProcess` boolean — HostProcess determines if a container should be run as a 'Host Process' container. This field is alpha-level and will only be honored by components that enable the WindowsHostProcessContainers feature flag. Setting this field without the feature flag will result in errors when validating the Pod. All of a Pod's containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). In addition, if HostProcess is true then HostNetwork must also be set to true.
          - `runAsUserName` string — The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.
      - `serviceAccountName` string
      - `sidecars` V1alpha1UserContainer[]
        - `args` string[] — Arguments to the entrypoint. The container image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell
        - `command` string[] — Entrypoint array. Not executed within a shell. The container image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell
        - `env` V1EnvVar[] — List of environment variables to set in the container. Cannot be updated.
          - `name` string, required — Name of the environment variable. Must be a C_IDENTIFIER.
          - `value` string — Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "".
          - `valueFrom` V1EnvVarSource — EnvVarSource represents a source for the value of an EnvVar.
            - `configMapKeyRef` V1ConfigMapKeySelector — Selects a key from a ConfigMap.
              - …
            - `fieldRef` V1ObjectFieldSelector — ObjectFieldSelector selects an APIVersioned field of an object.
              - …
            - `resourceFieldRef` V1ResourceFieldSelector — ResourceFieldSelector represents container resources (cpu, memory) and their output format
              - …
            - `secretKeyRef` V1SecretKeySelector — SecretKeySelector selects a key of a Secret.
              - …
        - `envFrom` V1EnvFromSource[] — List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.
          - `configMapRef` V1ConfigMapEnvSource — ConfigMapEnvSource selects a ConfigMap to populate the environment variables with. The contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables.
            - `name` string — Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
            - `optional` boolean — Specify whether the ConfigMap must be defined
          - `prefix` string — An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.
          - `secretRef` V1SecretEnvSource — SecretEnvSource selects a Secret to populate the environment variables with. The contents of the target Secret's Data field will represent the key-value pairs as environment variables.
            - `name` string — Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
            - `optional` boolean — Specify whether the Secret must be defined
        - `image` string — Container image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.
        - `imagePullPolicy` string — Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images
        - `lifecycle` V1Lifecycle — Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.
          - `postStart` V1LifecycleHandler — LifecycleHandler defines a specific action that should be taken in a lifecycle hook. One and only one of the fields, except TCPSocket must be specified.
            - `exec` V1ExecAction — ExecAction describes a "run in container" action.
              - …
            - `httpGet` V1HTTPGetAction — HTTPGetAction describes an action based on HTTP Get requests.
              - …
            - `tcpSocket` V1TCPSocketAction — TCPSocketAction describes an action based on opening a socket
              - …
          - `preStop` V1LifecycleHandler — LifecycleHandler defines a specific action that should be taken in a lifecycle hook. One and only one of the fields, except TCPSocket must be specified.
            - `exec` V1ExecAction — ExecAction describes a "run in container" action.
              - …
            - `httpGet` V1HTTPGetAction — HTTPGetAction describes an action based on HTTP Get requests.
              - …
            - `tcpSocket` V1TCPSocketAction — TCPSocketAction describes an action based on opening a socket
              - …
        - `livenessProbe` V1Probe — Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.
          - `exec` V1ExecAction — ExecAction describes a "run in container" action.
            - `command` string[] — Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.
          - `failureThreshold` integer — Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.
          - `grpc` V1GRPCAction
            - `port` integer, required — Port number of the gRPC service. Number must be in the range 1 to 65535.
            - `service` string, required — Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). If this is not specified, the default behavior is defined by gRPC.
          - `httpGet` V1HTTPGetAction — HTTPGetAction describes an action based on HTTP Get requests.
            - `host` string — Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead.
            - `httpHeaders` V1HTTPHeader[] — Custom headers to set in the request. HTTP allows repeated headers.
              - …
            - `path` string — Path to access on the HTTP server.
            - `port` IntstrIntOrString, required
              - …
            - `scheme` string — Scheme to use for connecting to the host. Defaults to HTTP.
          - `initialDelaySeconds` integer — Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
          - `periodSeconds` integer — How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.
          - `successThreshold` integer — Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.
          - `tcpSocket` V1TCPSocketAction — TCPSocketAction describes an action based on opening a socket
            - `host` string — Optional: Host name to connect to, defaults to the pod IP.
            - `port` IntstrIntOrString, required
              - …
          - `terminationGracePeriodSeconds` integer — Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.
          - `timeoutSeconds` integer — Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
        - `mirrorVolumeMounts` boolean
        - `name` string, required — Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.
        - `ports` V1ContainerPort[] — List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default "0.0.0.0" address inside a container will be accessible from the network. Cannot be updated.
          - `containerPort` integer, required — Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.
          - `hostIP` string — What host IP to bind the external port to.
          - `hostPort` integer — Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.
          - `name` string — If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.
          - `protocol` string — Protocol for port. Must be UDP, TCP, or SCTP. Defaults to "TCP".
        - `readinessProbe` V1Probe — Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.
          - `exec` V1ExecAction — ExecAction describes a "run in container" action.
            - `command` string[] — Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.
          - `failureThreshold` integer — Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.
          - `grpc` V1GRPCAction
            - `port` integer, required — Port number of the gRPC service. Number must be in the range 1 to 65535.
- … truncated; see the full OpenAPI document linked below

## Response `200`

OK

---

[API](https://skmtc.dev/pipekit/apis/docs-pipekit-io.md) · [All operations](https://skmtc.dev/pipekit/apis/docs-pipekit-io/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/pipekit/docs-pipekit-io/revisions/7cf8ac45d948/schema)
