swagger: '2.0' info: description: Argo Workflows is an open source container-native workflow engine for orchestrating parallel jobs on Kubernetes. For more information, please see https://argo-workflows.readthedocs.io/en/latest/ title: Argo Workflows ArchivedWorkflowService WorkflowTemplateService API version: 3.6.0 host: localhost:2746 schemes: - http - https consumes: - application/json produces: - application/json security: - BearerToken: [] tags: - name: WorkflowTemplateService paths: /api/v1/workflow-templates/{namespace}: get: tags: - WorkflowTemplateService operationId: WorkflowTemplateService_ListWorkflowTemplates parameters: - type: string name: namespace in: path required: true - type: string name: namePattern in: query - type: string description: 'A selector to restrict the list of returned objects by their labels. Defaults to everything. +optional.' name: listOptions.labelSelector in: query - type: string description: 'A selector to restrict the list of returned objects by their fields. Defaults to everything. +optional.' name: listOptions.fieldSelector in: query - type: boolean description: 'Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. +optional.' name: listOptions.watch in: query - type: boolean description: 'allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server''s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. +optional.' name: listOptions.allowWatchBookmarks in: query - type: string description: 'resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset +optional' name: listOptions.resourceVersion in: query - type: string description: 'resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset +optional' name: listOptions.resourceVersionMatch in: query - type: string format: int64 description: 'Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. +optional.' name: listOptions.timeoutSeconds in: query - type: string format: int64 description: 'limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.' name: listOptions.limit in: query - type: string description: 'The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.' name: listOptions.continue in: query - type: boolean description: "`sendInitialEvents=true` may be set together with `watch=true`.\nIn that case, the watch stream will begin with synthetic events to\nproduce the current state of objects in the collection. Once all such\nevents have been sent, a synthetic \"Bookmark\" event will be sent.\nThe bookmark will report the ResourceVersion (RV) corresponding to the\nset of objects, and be marked with `\"io.k8s.initial-events-end\": \"true\"` annotation.\nAfterwards, the watch stream will proceed as usual, sending watch events\ncorresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch`\noption to also be set. The semantic of the watch request is as following:\n- `resourceVersionMatch` = NotOlderThan\n is interpreted as \"data at least as new as the provided `resourceVersion`\"\n and the bookmark event is send when the state is synced\n to a `resourceVersion` at least as fresh as the one provided by the ListOptions.\n If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the\n bookmark event is send when the state is synced at least to the moment\n when request started being processed.\n- `resourceVersionMatch` set to any other value or unset\n Invalid error is returned.\n\nDefaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward\ncompatibility reasons) and to false otherwise.\n+optional" name: listOptions.sendInitialEvents in: query responses: '200': description: A successful response. schema: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.WorkflowTemplateList' default: description: An unexpected error response. schema: $ref: '#/definitions/grpc.gateway.runtime.Error' x-microcks-operation: delay: 0 dispatcher: FALLBACK post: tags: - WorkflowTemplateService operationId: WorkflowTemplateService_CreateWorkflowTemplate parameters: - type: string name: namespace in: path required: true - name: body in: body required: true schema: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.WorkflowTemplateCreateRequest' responses: '200': description: A successful response. schema: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.WorkflowTemplate' default: description: An unexpected error response. schema: $ref: '#/definitions/grpc.gateway.runtime.Error' x-microcks-operation: delay: 0 dispatcher: FALLBACK /api/v1/workflow-templates/{namespace}/lint: post: tags: - WorkflowTemplateService operationId: WorkflowTemplateService_LintWorkflowTemplate parameters: - type: string name: namespace in: path required: true - name: body in: body required: true schema: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.WorkflowTemplateLintRequest' responses: '200': description: A successful response. schema: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.WorkflowTemplate' default: description: An unexpected error response. schema: $ref: '#/definitions/grpc.gateway.runtime.Error' x-microcks-operation: delay: 0 dispatcher: FALLBACK /api/v1/workflow-templates/{namespace}/{name}: get: tags: - WorkflowTemplateService operationId: WorkflowTemplateService_GetWorkflowTemplate parameters: - type: string name: namespace in: path required: true - type: string name: name in: path required: true - type: string description: 'resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset +optional' name: getOptions.resourceVersion in: query responses: '200': description: A successful response. schema: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.WorkflowTemplate' default: description: An unexpected error response. schema: $ref: '#/definitions/grpc.gateway.runtime.Error' x-microcks-operation: delay: 0 dispatcher: FALLBACK put: tags: - WorkflowTemplateService operationId: WorkflowTemplateService_UpdateWorkflowTemplate parameters: - type: string name: namespace in: path required: true - type: string description: 'DEPRECATED: This field is ignored.' name: name in: path required: true - name: body in: body required: true schema: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.WorkflowTemplateUpdateRequest' responses: '200': description: A successful response. schema: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.WorkflowTemplate' default: description: An unexpected error response. schema: $ref: '#/definitions/grpc.gateway.runtime.Error' x-microcks-operation: delay: 0 dispatcher: FALLBACK delete: tags: - WorkflowTemplateService operationId: WorkflowTemplateService_DeleteWorkflowTemplate parameters: - type: string name: namespace in: path required: true - type: string name: name in: path required: true - type: string format: int64 description: 'The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately. +optional.' name: deleteOptions.gracePeriodSeconds in: query - type: string description: 'Specifies the target UID. +optional.' name: deleteOptions.preconditions.uid in: query - type: string description: 'Specifies the target ResourceVersion +optional.' name: deleteOptions.preconditions.resourceVersion in: query - type: boolean description: 'Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object''s finalizers list. Either this field or PropagationPolicy may be set, but not both. +optional.' name: deleteOptions.orphanDependents in: query - type: string description: 'Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: ''Orphan'' - orphan the dependents; ''Background'' - allow the garbage collector to delete the dependents in the background; ''Foreground'' - a cascading policy that deletes all dependents in the foreground. +optional.' name: deleteOptions.propagationPolicy in: query - type: array items: type: string collectionFormat: multi description: 'When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed +optional +listType=atomic.' name: deleteOptions.dryRun in: query - type: boolean description: 'if set to true, it will trigger an unsafe deletion of the resource in case the normal deletion flow fails with a corrupt object error. A resource is considered corrupt if it can not be retrieved from the underlying storage successfully because of a) its data can not be transformed e.g. decryption failure, or b) it fails to decode into an object. NOTE: unsafe deletion ignores finalizer constraints, skips precondition checks, and removes the object from the storage. WARNING: This may potentially break the cluster if the workload associated with the resource being unsafe-deleted relies on normal deletion flow. Use only if you REALLY know what you are doing. The default value is false, and the user must opt in to enable it +optional.' name: deleteOptions.ignoreStoreReadErrorWithClusterBreakingPotential in: query responses: '200': description: A successful response. schema: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.WorkflowTemplateDeleteResponse' default: description: An unexpected error response. schema: $ref: '#/definitions/grpc.gateway.runtime.Error' x-microcks-operation: delay: 0 dispatcher: FALLBACK definitions: io.argoproj.workflow.v1alpha1.ArtifactoryArtifact: description: ArtifactoryArtifact is the location of an artifactory artifact type: object required: - url properties: passwordSecret: description: PasswordSecret is the secret selector to the repository password $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' url: description: URL of the artifact type: string usernameSecret: description: UsernameSecret is the secret selector to the repository username $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' io.argoproj.workflow.v1alpha1.Amount: description: Amount represent a numeric amount. type: number io.argoproj.workflow.v1alpha1.PluginArtifact: description: PluginArtifact is the location of a plugin artifact type: object required: - key properties: configuration: description: Configuration is the plugin defined configuration for the artifact driver plugin type: string connectionTimeoutSeconds: description: ConnectionTimeoutSeconds is the timeout for the artifact driver connection, overriding the driver's timeout type: integer key: description: Key is the path in the artifact repository where the artifact resides type: string name: description: Name is the name of the artifact driver plugin type: string io.k8s.api.core.v1.ScaleIOVolumeSource: description: ScaleIOVolumeSource represents a persistent ScaleIO volume type: object required: - gateway - system - secretRef properties: fsType: description: fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Default is "xfs". type: string gateway: description: gateway is the host address of the ScaleIO API Gateway. type: string protectionDomain: description: protectionDomain is the name of the ScaleIO Protection Domain for the configured storage. type: string readOnly: description: readOnly Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. type: boolean secretRef: description: secretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail. $ref: '#/definitions/io.k8s.api.core.v1.LocalObjectReference' sslEnabled: description: sslEnabled Flag enable/disable SSL communication with Gateway, default false type: boolean storageMode: description: storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned. type: string storagePool: description: storagePool is the ScaleIO Storage Pool associated with the protection domain. type: string system: description: system is the name of the storage system as configured in ScaleIO. type: string volumeName: description: volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source. type: string io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource: description: Represents a Photon Controller persistent disk resource. type: object required: - pdID properties: fsType: description: fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. type: string pdID: description: pdID is the ID that identifies Photon Controller persistent disk type: string io.k8s.api.core.v1.Volume: description: Volume represents a named volume in a pod that may be accessed by any container in the pod. type: object required: - name properties: awsElasticBlockStore: description: 'awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet''s host machine and then exposed to the pod. Deprecated: AWSElasticBlockStore is deprecated. All operations for the in-tree awsElasticBlockStore type are redirected to the ebs.csi.aws.com CSI driver. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore' $ref: '#/definitions/io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource' azureDisk: description: 'azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. Deprecated: AzureDisk is deprecated. All operations for the in-tree azureDisk type are redirected to the disk.csi.azure.com CSI driver.' $ref: '#/definitions/io.k8s.api.core.v1.AzureDiskVolumeSource' azureFile: description: 'azureFile represents an Azure File Service mount on the host and bind mount to the pod. Deprecated: AzureFile is deprecated. All operations for the in-tree azureFile type are redirected to the file.csi.azure.com CSI driver.' $ref: '#/definitions/io.k8s.api.core.v1.AzureFileVolumeSource' cephfs: description: 'cephFS represents a Ceph FS mount on the host that shares a pod''s lifetime. Deprecated: CephFS is deprecated and the in-tree cephfs type is no longer supported.' $ref: '#/definitions/io.k8s.api.core.v1.CephFSVolumeSource' cinder: description: 'cinder represents a cinder volume attached and mounted on kubelets host machine. Deprecated: Cinder is deprecated. All operations for the in-tree cinder type are redirected to the cinder.csi.openstack.org CSI driver. More info: https://examples.k8s.io/mysql-cinder-pd/README.md' $ref: '#/definitions/io.k8s.api.core.v1.CinderVolumeSource' configMap: description: configMap represents a configMap that should populate this volume $ref: '#/definitions/io.k8s.api.core.v1.ConfigMapVolumeSource' csi: description: csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers. $ref: '#/definitions/io.k8s.api.core.v1.CSIVolumeSource' downwardAPI: description: downwardAPI represents downward API about the pod that should populate this volume $ref: '#/definitions/io.k8s.api.core.v1.DownwardAPIVolumeSource' emptyDir: description: 'emptyDir represents a temporary directory that shares a pod''s lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir' $ref: '#/definitions/io.k8s.api.core.v1.EmptyDirVolumeSource' ephemeral: description: "ephemeral represents a volume that is handled by a cluster storage driver. The volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removed.\n\nUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity\n tracking are needed,\nc) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through\n a PersistentVolumeClaim (see EphemeralVolumeSource for more\n information on the connection between this volume type\n and PersistentVolumeClaim).\n\nUse PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual pod.\n\nUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more information.\n\nA pod can use both types of ephemeral volumes and persistent volumes at the same time." $ref: '#/definitions/io.k8s.api.core.v1.EphemeralVolumeSource' fc: description: fc represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod. $ref: '#/definitions/io.k8s.api.core.v1.FCVolumeSource' flexVolume: description: 'flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin. Deprecated: FlexVolume is deprecated. Consider using a CSIDriver instead.' $ref: '#/definitions/io.k8s.api.core.v1.FlexVolumeSource' flocker: description: 'flocker represents a Flocker volume attached to a kubelet''s host machine. This depends on the Flocker control service being running. Deprecated: Flocker is deprecated and the in-tree flocker type is no longer supported.' $ref: '#/definitions/io.k8s.api.core.v1.FlockerVolumeSource' gcePersistentDisk: description: 'gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet''s host machine and then exposed to the pod. Deprecated: GCEPersistentDisk is deprecated. All operations for the in-tree gcePersistentDisk type are redirected to the pd.csi.storage.gke.io CSI driver. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' $ref: '#/definitions/io.k8s.api.core.v1.GCEPersistentDiskVolumeSource' gitRepo: description: 'gitRepo represents a git repository at a particular revision. Deprecated: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod''s container.' $ref: '#/definitions/io.k8s.api.core.v1.GitRepoVolumeSource' glusterfs: description: 'glusterfs represents a Glusterfs mount on the host that shares a pod''s lifetime. Deprecated: Glusterfs is deprecated and the in-tree glusterfs type is no longer supported.' $ref: '#/definitions/io.k8s.api.core.v1.GlusterfsVolumeSource' hostPath: description: 'hostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath' $ref: '#/definitions/io.k8s.api.core.v1.HostPathVolumeSource' image: description: 'image represents an OCI object (a container image or artifact) pulled and mounted on the kubelet''s host machine. The volume is resolved at pod startup depending on which PullPolicy value is provided: - Always: the kubelet always attempts to pull the reference. Container creation will fail If the pull fails. - Never: the kubelet never pulls the reference and only uses a local image or artifact. Container creation will fail if the reference isn''t present. - IfNotPresent: the kubelet pulls if the reference isn''t already present on disk. Container creation will fail if the reference isn''t present and the pull fails. The volume gets re-resolved if the pod gets deleted and recreated, which means that new remote content will become available on pod recreation. A failure to resolve or pull the image during pod startup will block containers from starting and may add significant latency. Failures will be retried using normal volume backoff and will be reported on the pod reason and message. The types of objects that may be mounted by this volume are defined by the container runtime implementation on a host machine and at minimum must include all valid types supported by the container image field. The OCI object gets mounted in a single directory (spec.containers[*].volumeMounts.mountPath) by merging the manifest layers in the same way as for container images. The volume will be mounted read-only (ro) and non-executable files (noexec). Sub path mounts for containers are not supported (spec.containers[*].volumeMounts.subpath) before 1.33. The field spec.securityContext.fsGroupChangePolicy has no effect on this volume type.' $ref: '#/definitions/io.k8s.api.core.v1.ImageVolumeSource' iscsi: description: 'iscsi represents an ISCSI Disk resource that is attached to a kubelet''s host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes/#iscsi' $ref: '#/definitions/io.k8s.api.core.v1.ISCSIVolumeSource' name: description: 'name of the volume. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' type: string nfs: description: 'nfs represents an NFS mount on the host that shares a pod''s lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs' $ref: '#/definitions/io.k8s.api.core.v1.NFSVolumeSource' persistentVolumeClaim: description: 'persistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims' $ref: '#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimVolumeSource' photonPersistentDisk: description: 'photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine. Deprecated: PhotonPersistentDisk is deprecated and the in-tree photonPersistentDisk type is no longer supported.' $ref: '#/definitions/io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource' portworxVolume: description: 'portworxVolume represents a portworx volume attached and mounted on kubelets host machine. Deprecated: PortworxVolume is deprecated. All operations for the in-tree portworxVolume type are redirected to the pxd.portworx.com CSI driver when the CSIMigrationPortworx feature-gate is on.' $ref: '#/definitions/io.k8s.api.core.v1.PortworxVolumeSource' projected: description: projected items for all in one resources secrets, configmaps, and downward API $ref: '#/definitions/io.k8s.api.core.v1.ProjectedVolumeSource' quobyte: description: 'quobyte represents a Quobyte mount on the host that shares a pod''s lifetime. Deprecated: Quobyte is deprecated and the in-tree quobyte type is no longer supported.' $ref: '#/definitions/io.k8s.api.core.v1.QuobyteVolumeSource' rbd: description: 'rbd represents a Rados Block Device mount on the host that shares a pod''s lifetime. Deprecated: RBD is deprecated and the in-tree rbd type is no longer supported.' $ref: '#/definitions/io.k8s.api.core.v1.RBDVolumeSource' scaleIO: description: 'scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes. Deprecated: ScaleIO is deprecated and the in-tree scaleIO type is no longer supported.' $ref: '#/definitions/io.k8s.api.core.v1.ScaleIOVolumeSource' secret: description: 'secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret' $ref: '#/definitions/io.k8s.api.core.v1.SecretVolumeSource' storageos: description: 'storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes. Deprecated: StorageOS is deprecated and the in-tree storageos type is no longer supported.' $ref: '#/definitions/io.k8s.api.core.v1.StorageOSVolumeSource' vsphereVolume: description: 'vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine. Deprecated: VsphereVolume is deprecated. All operations for the in-tree vsphereVolume type are redirected to the csi.vsphere.vmware.com CSI driver.' $ref: '#/definitions/io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource' io.k8s.api.core.v1.GRPCAction: description: GRPCAction specifies an action involving a GRPC service. type: object required: - port properties: port: description: Port number of the gRPC service. Number must be in the range 1 to 65535. type: integer service: description: '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.' type: string io.argoproj.workflow.v1alpha1.WorkflowStep: description: 'WorkflowStep is a reference to a template to execute in a series of step Note: CEL validation cannot check withItems (Schemaless) or inline (PreserveUnknownFields) fields.' type: object properties: arguments: description: Arguments hold arguments to the template $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Arguments' continueOn: description: ContinueOn makes argo to proceed with the following step even if this step fails. Errors and Failed states can be specified $ref: '#/definitions/io.argoproj.workflow.v1alpha1.ContinueOn' hooks: description: Hooks holds the lifecycle hook which is invoked at lifecycle of step, irrespective of the success, failure, or error status of the primary step type: object additionalProperties: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.LifecycleHook' inline: description: 'Inline is the template. Template must be empty if this is declared (and vice-versa). Note: This struct is defined recursively, since the inline template can potentially contain steps/DAGs that also has an "inline" field. Kubernetes doesn''t allow recursive types, so we need "x-kubernetes-preserve-unknown-fields: true" in the validation schema.' $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Template' name: description: Name of the step type: string onExit: description: 'OnExit is a template reference which is invoked at the end of the template, irrespective of the success, failure, or error of the primary template. Deprecated: Use Hooks[exit].Template instead.' type: string template: description: Template is the name of the template to execute as the step type: string templateRef: description: TemplateRef is the reference to the template resource to execute as the step. $ref: '#/definitions/io.argoproj.workflow.v1alpha1.TemplateRef' when: description: When is an expression in which the step should conditionally execute type: string withItems: description: 'WithItems expands a step into multiple parallel steps from the items in the list Note: The structure of WithItems is free-form, so we need "x-kubernetes-preserve-unknown-fields: true" in the validation schema.' type: array items: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Item' withParam: description: WithParam expands a step into multiple parallel steps from the value in the parameter, which is expected to be a JSON list. type: string withSequence: description: WithSequence expands a step into a numeric sequence $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Sequence' io.argoproj.workflow.v1alpha1.Metrics: description: Metrics are a list of metrics emitted from a Workflow/Template type: object required: - prometheus properties: prometheus: description: Prometheus is a list of prometheus metrics to be emitted MaxItems is an artificial limit to limit CEL validation costs - see note at top of file type: array items: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Prometheus' io.k8s.api.core.v1.GCEPersistentDiskVolumeSource: description: 'Represents a Persistent Disk resource in Google Compute Engine. A GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling.' type: object required: - pdName properties: fsType: description: 'fsType is filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' type: string partition: description: 'partition is the partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as "1". Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' type: integer pdName: description: 'pdName is unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' type: string readOnly: description: 'readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk' type: boolean io.k8s.api.core.v1.DownwardAPIVolumeSource: description: DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling. type: object properties: defaultMode: description: 'Optional: mode bits to use on created files by default. Must be a Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' type: integer items: description: Items is a list of downward API volume file type: array items: $ref: '#/definitions/io.k8s.api.core.v1.DownwardAPIVolumeFile' x-kubernetes-list-type: atomic io.k8s.api.core.v1.NodeAffinity: description: Node affinity is a group of node affinity scheduling rules. type: object properties: preferredDuringSchedulingIgnoredDuringExecution: description: 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. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.PreferredSchedulingTerm' x-kubernetes-list-type: atomic requiredDuringSchedulingIgnoredDuringExecution: description: 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 an update), the system may or may not try to eventually evict the pod from its node. $ref: '#/definitions/io.k8s.api.core.v1.NodeSelector' io.argoproj.workflow.v1alpha1.ContainerSetTemplate: type: object required: - containers properties: containers: type: array items: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.ContainerNode' retryStrategy: description: RetryStrategy describes how to retry container nodes if the container set fails. Note that this works differently from the template-level `retryStrategy` as it is a process-level retry that does not create new Pods or containers. $ref: '#/definitions/io.argoproj.workflow.v1alpha1.ContainerSetRetryStrategy' volumeMounts: type: array items: $ref: '#/definitions/io.k8s.api.core.v1.VolumeMount' io.k8s.api.core.v1.EmptyDirVolumeSource: description: Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling. type: object properties: medium: description: 'medium represents what type of storage medium should back this directory. The default is "" which means to use the node''s default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir' type: string sizeLimit: description: 'sizeLimit is the total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir' $ref: '#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity' io.argoproj.workflow.v1alpha1.GitArtifact: description: GitArtifact is the location of a git artifact type: object required: - repo properties: branch: description: Branch is the branch to fetch when `SingleBranch` is enabled type: string depth: description: Depth specifies clones/fetches should be shallow and include the given number of commits from the branch tip type: integer disableSubmodules: description: DisableSubmodules disables submodules during git clone type: boolean fetch: description: Fetch specifies a number of refs that should be fetched before checkout type: array items: type: string insecureIgnoreHostKey: description: InsecureIgnoreHostKey disables SSH strict host key checking during git clone type: boolean insecureSkipTLS: description: InsecureSkipTLS disables server certificate verification resulting in insecure HTTPS connections type: boolean passwordSecret: description: PasswordSecret is the secret selector to the repository password $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' repo: description: Repo is the git repository type: string revision: description: Revision is the git commit, tag, branch to checkout type: string singleBranch: description: SingleBranch enables single branch clone, using the `branch` parameter type: boolean sshPrivateKeySecret: description: SSHPrivateKeySecret is the secret selector to the repository ssh private key $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' usernameSecret: description: UsernameSecret is the secret selector to the repository username $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' io.argoproj.workflow.v1alpha1.Data: description: Data is a data template type: object required: - source - transformation properties: source: description: Source sources external data into a data template $ref: '#/definitions/io.argoproj.workflow.v1alpha1.DataSource' transformation: description: Transformation applies a set of transformations type: array items: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.TransformationStep' io.k8s.api.core.v1.ServiceAccountTokenProjection: description: ServiceAccountTokenProjection represents a projected service account token volume. This projection can be used to insert a service account token into the pods runtime filesystem for use against APIs (Kubernetes API Server or otherwise). type: object required: - path properties: audience: description: audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver. type: string expirationSeconds: description: expirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes. type: integer path: description: path is the path relative to the mount point of the file to project the token into. type: string io.argoproj.workflow.v1alpha1.Synchronization: description: Synchronization holds synchronization lock configuration type: object properties: mutexes: description: 'v3.6 and after: Mutexes holds the list of Mutex lock details' type: array items: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Mutex' semaphores: description: 'v3.6 and after: Semaphores holds the list of Semaphores configuration' type: array items: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.SemaphoreRef' io.k8s.api.core.v1.Sysctl: description: Sysctl defines a kernel parameter to be set type: object required: - name - value properties: name: description: Name of a property to set type: string value: description: Value of a property to set type: string io.argoproj.workflow.v1alpha1.Item: description: Item expands a single workflow step into multiple parallel steps The value of Item can be a map, string, bool, or number io.k8s.api.core.v1.ClusterTrustBundleProjection: description: ClusterTrustBundleProjection describes how to select a set of ClusterTrustBundle objects and project their contents into the pod filesystem. type: object required: - path properties: labelSelector: description: Select all ClusterTrustBundles that match this label selector. Only has effect if signerName is set. Mutually-exclusive with name. If unset, interpreted as "match nothing". If set but empty, interpreted as "match everything". $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector' name: description: Select a single ClusterTrustBundle by object name. Mutually-exclusive with signerName and labelSelector. type: string optional: description: If true, don't block pod startup if the referenced ClusterTrustBundle(s) aren't available. If using name, then the named ClusterTrustBundle is allowed not to exist. If using signerName, then the combination of signerName and labelSelector is allowed to match zero ClusterTrustBundles. type: boolean path: description: Relative path from the volume root to write the bundle. type: string signerName: description: Select all ClusterTrustBundles that match this signer name. Mutually-exclusive with name. The contents of all selected ClusterTrustBundles will be unified and deduplicated. type: string io.k8s.api.core.v1.VolumeProjection: description: Projection that may be projected along with other supported volume types. Exactly one of these fields must be set. type: object properties: clusterTrustBundle: description: 'ClusterTrustBundle allows a pod to access the `.spec.trustBundle` field of ClusterTrustBundle objects in an auto-updating file. Alpha, gated by the ClusterTrustBundleProjection feature gate. ClusterTrustBundle objects can either be selected by name, or by the combination of signer name and a label selector. Kubelet performs aggressive normalization of the PEM contents written into the pod filesystem. Esoteric PEM features such as inter-block comments and block headers are stripped. Certificates are deduplicated. The ordering of certificates within the file is arbitrary, and Kubelet may change the order over time.' $ref: '#/definitions/io.k8s.api.core.v1.ClusterTrustBundleProjection' configMap: description: configMap information about the configMap data to project $ref: '#/definitions/io.k8s.api.core.v1.ConfigMapProjection' downwardAPI: description: downwardAPI information about the downwardAPI data to project $ref: '#/definitions/io.k8s.api.core.v1.DownwardAPIProjection' podCertificate: description: 'Projects an auto-rotating credential bundle (private key and certificate chain) that the pod can use either as a TLS client or server. Kubelet generates a private key and uses it to send a PodCertificateRequest to the named signer. Once the signer approves the request and issues a certificate chain, Kubelet writes the key and certificate chain to the pod filesystem. The pod does not start until certificates have been issued for each podCertificate projected volume source in its spec. Kubelet will begin trying to rotate the certificate at the time indicated by the signer using the PodCertificateRequest.Status.BeginRefreshAt timestamp. Kubelet can write a single file, indicated by the credentialBundlePath field, or separate files, indicated by the keyPath and certificateChainPath fields. The credential bundle is a single file in PEM format. The first PEM entry is the private key (in PKCS#8 format), and the remaining PEM entries are the certificate chain issued by the signer (typically, signers will return their certificate chain in leaf-to-root order). Prefer using the credential bundle format, since your application code can read it atomically. If you use keyPath and certificateChainPath, your application must make two separate file reads. If these coincide with a certificate rotation, it is possible that the private key and leaf certificate you read may not correspond to each other. Your application will need to check for this condition, and re-read until they are consistent. The named signer controls chooses the format of the certificate it issues; consult the signer implementation''s documentation to learn how to use the certificates it issues.' $ref: '#/definitions/io.k8s.api.core.v1.PodCertificateProjection' secret: description: secret information about the secret data to project $ref: '#/definitions/io.k8s.api.core.v1.SecretProjection' serviceAccountToken: description: serviceAccountToken is information about the serviceAccountToken data to project $ref: '#/definitions/io.k8s.api.core.v1.ServiceAccountTokenProjection' io.argoproj.workflow.v1alpha1.TarStrategy: description: TarStrategy will tar and gzip the file or directory when saving type: object properties: compressionLevel: description: CompressionLevel specifies the gzip compression level to use for the artifact. Defaults to gzip.DefaultCompression. type: integer io.argoproj.workflow.v1alpha1.PodGC: description: PodGC describes how to delete completed pods as they complete type: object properties: deleteDelayDuration: description: DeleteDelayDuration specifies the duration before pods in the GC queue get deleted. type: string labelSelector: description: LabelSelector is the label selector to check if the pods match the labels before being added to the pod GC queue. $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector' strategy: description: Strategy is the strategy to use. One of "OnPodCompletion", "OnPodSuccess", "OnWorkflowCompletion", "OnWorkflowSuccess". If unset, does not delete Pods type: string io.k8s.api.core.v1.EnvFromSource: description: EnvFromSource represents the source of a set of ConfigMaps or Secrets type: object properties: configMapRef: description: The ConfigMap to select from $ref: '#/definitions/io.k8s.api.core.v1.ConfigMapEnvSource' prefix: description: Optional text to prepend to the name of each environment variable. May consist of any printable ASCII characters except '='. type: string secretRef: description: The Secret to select from $ref: '#/definitions/io.k8s.api.core.v1.SecretEnvSource' io.argoproj.workflow.v1alpha1.ArtifactLocation: description: ArtifactLocation describes a location for a single or multiple artifacts. It is used as single artifact in the context of inputs/outputs (e.g. outputs.artifacts.artname). It is also used to describe the location of multiple artifacts such as the archive location of a single workflow step, which the executor will use as a default location to store its files. type: object properties: archiveLogs: description: ArchiveLogs indicates if the container logs should be archived type: boolean artifactory: description: Artifactory contains artifactory artifact location details $ref: '#/definitions/io.argoproj.workflow.v1alpha1.ArtifactoryArtifact' azure: description: Azure contains Azure Storage artifact location details $ref: '#/definitions/io.argoproj.workflow.v1alpha1.AzureArtifact' gcs: description: GCS contains GCS artifact location details $ref: '#/definitions/io.argoproj.workflow.v1alpha1.GCSArtifact' git: description: Git contains git artifact location details $ref: '#/definitions/io.argoproj.workflow.v1alpha1.GitArtifact' hdfs: description: HDFS contains HDFS artifact location details $ref: '#/definitions/io.argoproj.workflow.v1alpha1.HDFSArtifact' http: description: HTTP contains HTTP artifact location details $ref: '#/definitions/io.argoproj.workflow.v1alpha1.HTTPArtifact' oss: description: OSS contains OSS artifact location details $ref: '#/definitions/io.argoproj.workflow.v1alpha1.OSSArtifact' plugin: description: Plugin contains plugin artifact location details $ref: '#/definitions/io.argoproj.workflow.v1alpha1.PluginArtifact' raw: description: Raw contains raw artifact location details $ref: '#/definitions/io.argoproj.workflow.v1alpha1.RawArtifact' s3: description: S3 contains S3 artifact location details $ref: '#/definitions/io.argoproj.workflow.v1alpha1.S3Artifact' io.argoproj.workflow.v1alpha1.UserContainer: description: UserContainer is a container specified by a user. type: object required: - name properties: args: description: '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' type: array items: type: string x-kubernetes-list-type: atomic command: description: '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' type: array items: type: string x-kubernetes-list-type: atomic env: description: List of environment variables to set in the container. Cannot be updated. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.EnvVar' x-kubernetes-list-map-keys: - name x-kubernetes-list-type: map x-kubernetes-patch-merge-key: name x-kubernetes-patch-strategy: merge envFrom: description: List of sources to populate environment variables in the container. The keys defined within a source may consist of any printable ASCII characters except '='. 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. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.EnvFromSource' x-kubernetes-list-type: atomic image: description: '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.' type: string imagePullPolicy: description: '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' type: string lifecycle: description: Actions that the management system should take in response to container lifecycle events. Cannot be updated. $ref: '#/definitions/io.k8s.api.core.v1.Lifecycle' livenessProbe: description: 'Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' $ref: '#/definitions/io.k8s.api.core.v1.Probe' mirrorVolumeMounts: description: MirrorVolumeMounts will mount the same volumes specified in the main container to the container (including artifacts), at the same mountPaths. This enables dind daemon to partially see the same filesystem as the main container in order to use features such as docker volume binding type: boolean name: description: Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated. type: string ports: description: List of ports to expose from the container. 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. Modifying this array with strategic merge patch may corrupt the data. For more information See https://github.com/kubernetes/kubernetes/issues/108255. Cannot be updated. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.ContainerPort' x-kubernetes-list-map-keys: - containerPort - protocol x-kubernetes-list-type: map x-kubernetes-patch-merge-key: containerPort x-kubernetes-patch-strategy: merge readinessProbe: description: 'Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' $ref: '#/definitions/io.k8s.api.core.v1.Probe' resizePolicy: description: Resources resize policy for the container. This field cannot be set on ephemeral containers. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.ContainerResizePolicy' x-kubernetes-list-type: atomic resources: description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' $ref: '#/definitions/io.k8s.api.core.v1.ResourceRequirements' restartPolicy: description: 'RestartPolicy defines the restart behavior of individual containers in a pod. This overrides the pod-level restart policy. When this field is not specified, the restart behavior is defined by the Pod''s restart policy and the container type. Additionally, setting the RestartPolicy as "Always" for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated. Once all regular containers have completed, all init containers with restartPolicy "Always" will be shut down. This lifecycle differs from normal init containers and is often referred to as a "sidecar" container. Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container. Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed.' type: string restartPolicyRules: description: 'Represents a list of rules to be checked to determine if the container should be restarted on exit. The rules are evaluated in order. Once a rule matches a container exit condition, the remaining rules are ignored. If no rule matches the container exit condition, the Container-level restart policy determines the whether the container is restarted or not. Constraints on the rules: - At most 20 rules are allowed. - Rules can have the same action. - Identical rules are not forbidden in validations. When rules are specified, container MUST set RestartPolicy explicitly even it if matches the Pod''s RestartPolicy.' type: array items: $ref: '#/definitions/io.k8s.api.core.v1.ContainerRestartRule' x-kubernetes-list-type: atomic securityContext: description: 'SecurityContext defines the security options the container should be run with. If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext. More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/' $ref: '#/definitions/io.k8s.api.core.v1.SecurityContext' startupProbe: description: 'StartupProbe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. This can be used to provide different probe parameters at the beginning of a Pod''s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' $ref: '#/definitions/io.k8s.api.core.v1.Probe' stdin: description: 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. type: boolean stdinOnce: description: 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 type: boolean terminationMessagePath: description: '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.' type: string terminationMessagePolicy: description: 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. type: string tty: description: Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false. type: boolean volumeDevices: description: volumeDevices is the list of block devices to be used by the container. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.VolumeDevice' x-kubernetes-list-map-keys: - devicePath x-kubernetes-list-type: map x-kubernetes-patch-merge-key: devicePath x-kubernetes-patch-strategy: merge volumeMounts: description: Pod volumes to mount into the container's filesystem. Cannot be updated. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.VolumeMount' x-kubernetes-list-map-keys: - mountPath x-kubernetes-list-type: map x-kubernetes-patch-merge-key: mountPath x-kubernetes-patch-strategy: merge workingDir: description: 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. type: string io.k8s.api.core.v1.WeightedPodAffinityTerm: description: The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s) type: object required: - weight - podAffinityTerm properties: podAffinityTerm: description: Required. A pod affinity term, associated with the corresponding weight. $ref: '#/definitions/io.k8s.api.core.v1.PodAffinityTerm' weight: description: weight associated with matching the corresponding podAffinityTerm, in the range 1-100. type: integer io.k8s.api.core.v1.PreferredSchedulingTerm: description: An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op). type: object required: - weight - preference properties: preference: description: A node selector term, associated with the corresponding weight. $ref: '#/definitions/io.k8s.api.core.v1.NodeSelectorTerm' weight: description: Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100. type: integer io.k8s.api.core.v1.TypedLocalObjectReference: description: TypedLocalObjectReference contains enough information to let you locate the typed referenced object inside the same namespace. type: object required: - kind - name properties: apiGroup: description: APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required. type: string kind: description: Kind is the type of resource being referenced type: string name: description: Name is the name of resource being referenced type: string x-kubernetes-map-type: atomic io.k8s.api.core.v1.SecretProjection: description: 'Adapts a secret into a projected volume. The contents of the target Secret''s Data field will be presented in a projected volume as files using the keys in the Data field as the file names. Note that this is identical to a secret volume source without the default mode.' type: object properties: items: description: items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.KeyToPath' x-kubernetes-list-type: atomic name: description: 'Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' type: string optional: description: optional field specify whether the Secret or its key must be defined type: boolean io.k8s.api.policy.v1.PodDisruptionBudgetSpec: description: PodDisruptionBudgetSpec is a description of a PodDisruptionBudget. type: object properties: maxUnavailable: description: An eviction is allowed if at most "maxUnavailable" pods selected by "selector" are unavailable after the eviction, i.e. even in absence of the evicted pod. For example, one can prevent all voluntary evictions by specifying 0. This is a mutually exclusive setting with "minAvailable". $ref: '#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString' minAvailable: description: An eviction is allowed if at least "minAvailable" pods selected by "selector" will still be available after the eviction, i.e. even in the absence of the evicted pod. So for example you can prevent all voluntary evictions by specifying "100%". $ref: '#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString' selector: description: Label query over pods whose evictions are managed by the disruption budget. A null selector will match no pods, while an empty ({}) selector will select all pods within the namespace. x-kubernetes-patch-strategy: replace $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector' unhealthyPodEvictionPolicy: description: 'UnhealthyPodEvictionPolicy defines the criteria for when unhealthy pods should be considered for eviction. Current implementation considers healthy pods, as pods that have status.conditions item with type="Ready",status="True". Valid policies are IfHealthyBudget and AlwaysAllow. If no policy is specified, the default behavior will be used, which corresponds to the IfHealthyBudget policy. IfHealthyBudget policy means that running pods (status.phase="Running"), but not yet healthy can be evicted only if the guarded application is not disrupted (status.currentHealthy is at least equal to status.desiredHealthy). Healthy pods will be subject to the PDB for eviction. AlwaysAllow policy means that all running pods (status.phase="Running"), but not yet healthy are considered disrupted and can be evicted regardless of whether the criteria in a PDB is met. This means perspective running pods of a disrupted application might not get a chance to become healthy. Healthy pods will be subject to the PDB for eviction. Additional policies may be added in the future. Clients making eviction decisions should disallow eviction of unhealthy pods if they encounter an unrecognized policy in this field.' type: string io.argoproj.workflow.v1alpha1.Backoff: description: Backoff is a backoff strategy to use within retryStrategy type: object properties: cap: description: Cap is a limit on revised values of the duration parameter. If a multiplication by the factor parameter would make the duration exceed the cap then the duration is set to the cap type: string duration: description: Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. "2m", "1h") type: string factor: description: Factor is a factor to multiply the base duration after each failed retry $ref: '#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString' maxDuration: description: MaxDuration is the maximum amount of time allowed for a workflow in the backoff strategy. It is important to note that if the workflow template includes activeDeadlineSeconds, the pod's deadline is initially set with activeDeadlineSeconds. However, when the workflow fails, the pod's deadline is then overridden by maxDuration. This ensures that the workflow does not exceed the specified maximum duration when retries are involved. type: string io.argoproj.workflow.v1alpha1.LifecycleHook: type: object properties: arguments: description: Arguments hold arguments to the template $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Arguments' expression: description: Expression is a condition expression for when a node will be retried. If it evaluates to false, the node will not be retried and the retry strategy will be ignored type: string template: description: Template is the name of the template to execute by the hook type: string templateRef: description: TemplateRef is the reference to the template resource to execute by the hook $ref: '#/definitions/io.argoproj.workflow.v1alpha1.TemplateRef' io.argoproj.workflow.v1alpha1.TransformationStep: type: object required: - expression properties: expression: description: Expression defines an expr expression to apply type: string io.k8s.api.core.v1.Probe: description: Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic. type: object properties: exec: description: Exec specifies a command to execute in the container. $ref: '#/definitions/io.k8s.api.core.v1.ExecAction' failureThreshold: description: Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. type: integer grpc: description: GRPC specifies a GRPC HealthCheckRequest. $ref: '#/definitions/io.k8s.api.core.v1.GRPCAction' httpGet: description: HTTPGet specifies an HTTP GET request to perform. $ref: '#/definitions/io.k8s.api.core.v1.HTTPGetAction' initialDelaySeconds: description: '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' type: integer periodSeconds: description: How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. type: integer successThreshold: description: 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. type: integer tcpSocket: description: TCPSocket specifies a connection to a TCP port. $ref: '#/definitions/io.k8s.api.core.v1.TCPSocketAction' terminationGracePeriodSeconds: description: 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. type: integer timeoutSeconds: description: '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' type: integer io.argoproj.workflow.v1alpha1.TTLStrategy: description: TTLStrategy is the strategy for the time to live depending on if the workflow succeeded or failed type: object properties: secondsAfterCompletion: description: SecondsAfterCompletion is the number of seconds to live after completion type: integer secondsAfterFailure: description: SecondsAfterFailure is the number of seconds to live after failure type: integer secondsAfterSuccess: description: SecondsAfterSuccess is the number of seconds to live after success type: integer io.k8s.api.core.v1.PodDNSConfig: description: PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy. type: object properties: nameservers: description: A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed. type: array items: type: string x-kubernetes-list-type: atomic options: description: 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. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.PodDNSConfigOption' x-kubernetes-list-type: atomic searches: description: 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. type: array items: type: string x-kubernetes-list-type: atomic io.k8s.api.core.v1.PodSecurityContext: description: 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. type: object properties: appArmorProfile: description: appArmorProfile is the AppArmor options to use by the containers in this pod. Note that this field cannot be set when spec.os.name is windows. $ref: '#/definitions/io.k8s.api.core.v1.AppArmorProfile' fsGroup: description: '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---- If unset, the Kubelet will not modify the ownership and permissions of any volume. Note that this field cannot be set when spec.os.name is windows.' type: integer fsGroupChangePolicy: description: '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.' type: string runAsGroup: description: 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. type: integer runAsNonRoot: description: 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. type: boolean runAsUser: description: 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. type: integer seLinuxChangePolicy: description: 'seLinuxChangePolicy defines how the container''s SELinux label is applied to all volumes used by the Pod. It has no effect on nodes that do not support SELinux or to volumes does not support SELinux. Valid values are "MountOption" and "Recursive". "Recursive" means relabeling of all files on all Pod volumes by the container runtime. This may be slow for large volumes, but allows mixing privileged and unprivileged Pods sharing the same volume on the same node. "MountOption" mounts all eligible Pod volumes with `-o context` mount option. This requires all Pods that share the same volume to use the same SELinux label. It is not possible to share the same volume among privileged and unprivileged Pods. Eligible volumes are in-tree FibreChannel and iSCSI volumes, and all CSI volumes whose CSI driver announces SELinux support by setting spec.seLinuxMount: true in their CSIDriver instance. Other volumes are always re-labelled recursively. "MountOption" value is allowed only when SELinuxMount feature gate is enabled. If not specified and SELinuxMount feature gate is enabled, "MountOption" is used. If not specified and SELinuxMount feature gate is disabled, "MountOption" is used for ReadWriteOncePod volumes and "Recursive" for all other volumes. This field affects only Pods that have SELinux label set, either in PodSecurityContext or in SecurityContext of all containers. All Pods that use the same volume should use the same seLinuxChangePolicy, otherwise some pods can get stuck in ContainerCreating state. Note that this field cannot be set when spec.os.name is windows.' type: string seLinuxOptions: description: The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. 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. $ref: '#/definitions/io.k8s.api.core.v1.SELinuxOptions' seccompProfile: description: The seccomp options to use by the containers in this pod. Note that this field cannot be set when spec.os.name is windows. $ref: '#/definitions/io.k8s.api.core.v1.SeccompProfile' supplementalGroups: description: A list of groups applied to the first process run in each container, in addition to the container's primary GID and fsGroup (if specified). If the SupplementalGroupsPolicy feature is enabled, the supplementalGroupsPolicy field determines whether these are in addition to or instead of any group memberships defined in the container image. If unspecified, no additional groups are added, though group memberships defined in the container image may still be used, depending on the supplementalGroupsPolicy field. Note that this field cannot be set when spec.os.name is windows. type: array items: type: integer format: int64 x-kubernetes-list-type: atomic supplementalGroupsPolicy: description: Defines how supplemental groups of the first container processes are calculated. Valid values are "Merge" and "Strict". If not specified, "Merge" is used. (Alpha) Using the field requires the SupplementalGroupsPolicy feature gate to be enabled and the container runtime must implement support for this feature. Note that this field cannot be set when spec.os.name is windows. type: string sysctls: description: 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. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.Sysctl' x-kubernetes-list-type: atomic windowsOptions: description: The Windows specific settings applied to all containers. If unspecified, the options within a container's SecurityContext will be used. 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 linux. $ref: '#/definitions/io.k8s.api.core.v1.WindowsSecurityContextOptions' io.argoproj.workflow.v1alpha1.WorkflowLevelArtifactGC: description: WorkflowLevelArtifactGC describes how to delete artifacts from completed Workflows - this spec is used on the Workflow level type: object properties: forceFinalizerRemoval: description: 'ForceFinalizerRemoval: if set to true, the finalizer will be removed in the case that Artifact GC fails' type: boolean podMetadata: description: PodMetadata is an optional field for specifying the Labels and Annotations that should be assigned to the Pod doing the deletion $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Metadata' podSpecPatch: description: PodSpecPatch holds strategic merge patch to apply against the artgc pod spec. type: string serviceAccountName: description: ServiceAccountName is an optional field for specifying the Service Account that should be assigned to the Pod doing the deletion type: string strategy: description: Strategy is the strategy to use. type: string io.argoproj.workflow.v1alpha1.HTTPAuth: type: object properties: basicAuth: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.BasicAuth' clientCert: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.ClientCertAuth' oauth2: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.OAuth2Auth' io.k8s.api.core.v1.Capabilities: description: Adds and removes POSIX capabilities from running containers. type: object properties: add: description: Added capabilities type: array items: type: string x-kubernetes-list-type: atomic drop: description: Removed capabilities type: array items: type: string x-kubernetes-list-type: atomic io.k8s.api.core.v1.DownwardAPIProjection: description: Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode. type: object properties: items: description: Items is a list of DownwardAPIVolume file type: array items: $ref: '#/definitions/io.k8s.api.core.v1.DownwardAPIVolumeFile' x-kubernetes-list-type: atomic io.k8s.apimachinery.pkg.apis.meta.v1.CreateOptions: description: CreateOptions may be provided when creating an API object. type: object properties: dryRun: type: array title: 'When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed +optional +listType=atomic' items: type: string fieldManager: type: string title: 'fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. +optional' fieldValidation: type: string title: 'fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. +optional' io.argoproj.workflow.v1alpha1.ContainerNode: type: object required: - name properties: args: description: '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' type: array items: type: string x-kubernetes-list-type: atomic command: description: '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' type: array items: type: string x-kubernetes-list-type: atomic dependencies: type: array items: type: string env: description: List of environment variables to set in the container. Cannot be updated. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.EnvVar' x-kubernetes-list-map-keys: - name x-kubernetes-list-type: map x-kubernetes-patch-merge-key: name x-kubernetes-patch-strategy: merge envFrom: description: List of sources to populate environment variables in the container. The keys defined within a source may consist of any printable ASCII characters except '='. 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. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.EnvFromSource' x-kubernetes-list-type: atomic image: description: '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.' type: string imagePullPolicy: description: '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' type: string lifecycle: description: Actions that the management system should take in response to container lifecycle events. Cannot be updated. $ref: '#/definitions/io.k8s.api.core.v1.Lifecycle' livenessProbe: description: 'Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' $ref: '#/definitions/io.k8s.api.core.v1.Probe' name: description: Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated. type: string ports: description: List of ports to expose from the container. 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. Modifying this array with strategic merge patch may corrupt the data. For more information See https://github.com/kubernetes/kubernetes/issues/108255. Cannot be updated. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.ContainerPort' x-kubernetes-list-map-keys: - containerPort - protocol x-kubernetes-list-type: map x-kubernetes-patch-merge-key: containerPort x-kubernetes-patch-strategy: merge readinessProbe: description: 'Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' $ref: '#/definitions/io.k8s.api.core.v1.Probe' resizePolicy: description: Resources resize policy for the container. This field cannot be set on ephemeral containers. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.ContainerResizePolicy' x-kubernetes-list-type: atomic resources: description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' $ref: '#/definitions/io.k8s.api.core.v1.ResourceRequirements' restartPolicy: description: 'RestartPolicy defines the restart behavior of individual containers in a pod. This overrides the pod-level restart policy. When this field is not specified, the restart behavior is defined by the Pod''s restart policy and the container type. Additionally, setting the RestartPolicy as "Always" for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated. Once all regular containers have completed, all init containers with restartPolicy "Always" will be shut down. This lifecycle differs from normal init containers and is often referred to as a "sidecar" container. Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container. Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed.' type: string restartPolicyRules: description: 'Represents a list of rules to be checked to determine if the container should be restarted on exit. The rules are evaluated in order. Once a rule matches a container exit condition, the remaining rules are ignored. If no rule matches the container exit condition, the Container-level restart policy determines the whether the container is restarted or not. Constraints on the rules: - At most 20 rules are allowed. - Rules can have the same action. - Identical rules are not forbidden in validations. When rules are specified, container MUST set RestartPolicy explicitly even it if matches the Pod''s RestartPolicy.' type: array items: $ref: '#/definitions/io.k8s.api.core.v1.ContainerRestartRule' x-kubernetes-list-type: atomic securityContext: description: 'SecurityContext defines the security options the container should be run with. If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext. More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/' $ref: '#/definitions/io.k8s.api.core.v1.SecurityContext' startupProbe: description: 'StartupProbe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. This can be used to provide different probe parameters at the beginning of a Pod''s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' $ref: '#/definitions/io.k8s.api.core.v1.Probe' stdin: description: 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. type: boolean stdinOnce: description: 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 type: boolean terminationMessagePath: description: '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.' type: string terminationMessagePolicy: description: 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. type: string tty: description: Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false. type: boolean volumeDevices: description: volumeDevices is the list of block devices to be used by the container. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.VolumeDevice' x-kubernetes-list-map-keys: - devicePath x-kubernetes-list-type: map x-kubernetes-patch-merge-key: devicePath x-kubernetes-patch-strategy: merge volumeMounts: description: Pod volumes to mount into the container's filesystem. Cannot be updated. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.VolumeMount' x-kubernetes-list-map-keys: - mountPath x-kubernetes-list-type: map x-kubernetes-patch-merge-key: mountPath x-kubernetes-patch-strategy: merge workingDir: description: 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. type: string io.argoproj.workflow.v1alpha1.ContainerSetRetryStrategy: description: ContainerSetRetryStrategy provides controls on how to retry a container set type: object required: - retries properties: duration: description: Duration is the time between each retry, examples values are "300ms", "1s" or "5m". Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h". type: string retries: description: Retries is the maximum number of retry attempts for each container. It does not include the first, original attempt; the maximum number of total attempts will be `retries + 1`. $ref: '#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString' io.argoproj.workflow.v1alpha1.ResourceTemplate: description: ResourceTemplate is a template subtype to manipulate kubernetes resources type: object required: - action properties: action: description: 'Action is the action to perform to the resource. Must be one of: get, create, apply, delete, replace, patch' type: string failureCondition: description: FailureCondition is a label selector expression which describes the conditions of the k8s resource in which the step was considered failed type: string flags: description: "Flags is a set of additional options passed to kubectl before submitting a resource I.e. to disable resource validation: flags: [\n\t\"--validate=false\" # disable resource validation\n]" type: array items: type: string manifest: description: Manifest contains the kubernetes manifest type: string manifestFrom: description: ManifestFrom is the source for a single kubernetes manifest $ref: '#/definitions/io.argoproj.workflow.v1alpha1.ManifestFrom' mergeStrategy: description: 'MergeStrategy is the strategy used to merge a patch. It defaults to "strategic" Must be one of: strategic, merge, json' type: string setOwnerReference: description: SetOwnerReference sets the reference to the workflow on the OwnerReference of generated resource. type: boolean successCondition: description: SuccessCondition is a label selector expression which describes the conditions of the k8s resource in which it is acceptable to proceed to the following step type: string io.k8s.api.core.v1.TypedObjectReference: description: TypedObjectReference contains enough information to let you locate the typed referenced object type: object required: - kind - name properties: apiGroup: description: APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required. type: string kind: description: Kind is the type of resource being referenced type: string name: description: Name is the name of resource being referenced type: string namespace: description: Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details. (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled. type: string io.argoproj.workflow.v1alpha1.GCSArtifact: description: GCSArtifact is the location of a GCS artifact type: object required: - key properties: bucket: description: Bucket is the name of the bucket type: string key: description: Key is the path in the bucket where the artifact resides type: string serviceAccountKeySecret: description: ServiceAccountKeySecret is the secret selector to the bucket's service account key $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' io.argoproj.workflow.v1alpha1.OAuth2Auth: description: OAuth2Auth holds all information for client authentication via OAuth2 tokens type: object properties: clientIDSecret: $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' clientSecretSecret: $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' endpointParams: type: array items: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.OAuth2EndpointParam' scopes: type: array items: type: string tokenURLSecret: $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' io.argoproj.workflow.v1alpha1.TemplateRef: description: TemplateRef is a reference of template resource. type: object properties: clusterScope: description: ClusterScope indicates the referred template is cluster scoped (i.e. a ClusterWorkflowTemplate). type: boolean name: description: Name is the resource name of the template. type: string template: description: Template is the name of referred template in the resource. type: string io.k8s.api.core.v1.ObjectFieldSelector: description: ObjectFieldSelector selects an APIVersioned field of an object. type: object required: - fieldPath properties: apiVersion: description: Version of the schema the FieldPath is written in terms of, defaults to "v1". type: string fieldPath: description: Path of the field to select in the specified API version. type: string x-kubernetes-map-type: atomic io.k8s.api.core.v1.CSIVolumeSource: description: Represents a source location of a volume to mount, managed by an external CSI driver type: object required: - driver properties: driver: description: driver is the name of the CSI driver that handles this volume. Consult with your admin for the correct name as registered in the cluster. type: string fsType: description: fsType to mount. Ex. "ext4", "xfs", "ntfs". If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply. type: string nodePublishSecretRef: description: nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secret references are passed. $ref: '#/definitions/io.k8s.api.core.v1.LocalObjectReference' readOnly: description: readOnly specifies a read-only configuration for the volume. Defaults to false (read/write). type: boolean volumeAttributes: description: volumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver's documentation for supported values. type: object additionalProperties: type: string io.argoproj.workflow.v1alpha1.WorkflowMetadata: type: object properties: annotations: type: object additionalProperties: type: string labels: type: object additionalProperties: type: string labelsFrom: type: object additionalProperties: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.LabelValueFrom' io.argoproj.workflow.v1alpha1.RetryNodeAntiAffinity: description: RetryNodeAntiAffinity is a placeholder for future expansion, only empty nodeAntiAffinity is allowed. In order to prevent running steps on the same host, it uses "kubernetes.io/hostname". type: object io.argoproj.workflow.v1alpha1.ScriptTemplate: description: ScriptTemplate is a template subtype to enable scripting through code steps type: object required: - image - source properties: args: description: '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' type: array items: type: string x-kubernetes-list-type: atomic command: description: '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' type: array items: type: string x-kubernetes-list-type: atomic env: description: List of environment variables to set in the container. Cannot be updated. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.EnvVar' x-kubernetes-list-map-keys: - name x-kubernetes-list-type: map x-kubernetes-patch-merge-key: name x-kubernetes-patch-strategy: merge envFrom: description: List of sources to populate environment variables in the container. The keys defined within a source may consist of any printable ASCII characters except '='. 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. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.EnvFromSource' x-kubernetes-list-type: atomic image: description: '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.' type: string imagePullPolicy: description: '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' type: string lifecycle: description: Actions that the management system should take in response to container lifecycle events. Cannot be updated. $ref: '#/definitions/io.k8s.api.core.v1.Lifecycle' livenessProbe: description: 'Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' $ref: '#/definitions/io.k8s.api.core.v1.Probe' name: description: Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated. type: string ports: description: List of ports to expose from the container. 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. Modifying this array with strategic merge patch may corrupt the data. For more information See https://github.com/kubernetes/kubernetes/issues/108255. Cannot be updated. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.ContainerPort' x-kubernetes-list-map-keys: - containerPort - protocol x-kubernetes-list-type: map x-kubernetes-patch-merge-key: containerPort x-kubernetes-patch-strategy: merge readinessProbe: description: 'Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' $ref: '#/definitions/io.k8s.api.core.v1.Probe' resizePolicy: description: Resources resize policy for the container. This field cannot be set on ephemeral containers. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.ContainerResizePolicy' x-kubernetes-list-type: atomic resources: description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' $ref: '#/definitions/io.k8s.api.core.v1.ResourceRequirements' restartPolicy: description: 'RestartPolicy defines the restart behavior of individual containers in a pod. This overrides the pod-level restart policy. When this field is not specified, the restart behavior is defined by the Pod''s restart policy and the container type. Additionally, setting the RestartPolicy as "Always" for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated. Once all regular containers have completed, all init containers with restartPolicy "Always" will be shut down. This lifecycle differs from normal init containers and is often referred to as a "sidecar" container. Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container. Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed.' type: string restartPolicyRules: description: 'Represents a list of rules to be checked to determine if the container should be restarted on exit. The rules are evaluated in order. Once a rule matches a container exit condition, the remaining rules are ignored. If no rule matches the container exit condition, the Container-level restart policy determines the whether the container is restarted or not. Constraints on the rules: - At most 20 rules are allowed. - Rules can have the same action. - Identical rules are not forbidden in validations. When rules are specified, container MUST set RestartPolicy explicitly even it if matches the Pod''s RestartPolicy.' type: array items: $ref: '#/definitions/io.k8s.api.core.v1.ContainerRestartRule' x-kubernetes-list-type: atomic securityContext: description: 'SecurityContext defines the security options the container should be run with. If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext. More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/' $ref: '#/definitions/io.k8s.api.core.v1.SecurityContext' source: description: Source contains the source code of the script to execute type: string startupProbe: description: 'StartupProbe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. This can be used to provide different probe parameters at the beginning of a Pod''s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' $ref: '#/definitions/io.k8s.api.core.v1.Probe' stdin: description: 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. type: boolean stdinOnce: description: 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 type: boolean terminationMessagePath: description: '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.' type: string terminationMessagePolicy: description: 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. type: string tty: description: Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false. type: boolean volumeDevices: description: volumeDevices is the list of block devices to be used by the container. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.VolumeDevice' x-kubernetes-list-map-keys: - devicePath x-kubernetes-list-type: map x-kubernetes-patch-merge-key: devicePath x-kubernetes-patch-strategy: merge volumeMounts: description: Pod volumes to mount into the container's filesystem. Cannot be updated. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.VolumeMount' x-kubernetes-list-map-keys: - mountPath x-kubernetes-list-type: map x-kubernetes-patch-merge-key: mountPath x-kubernetes-patch-strategy: merge workingDir: description: 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. type: string io.argoproj.workflow.v1alpha1.ValueFrom: description: ValueFrom describes a location in which to obtain the value to a parameter type: object properties: configMapKeyRef: description: ConfigMapKeyRef is configmap selector for input parameter configuration $ref: '#/definitions/io.k8s.api.core.v1.ConfigMapKeySelector' default: description: Default specifies a value to be used if retrieving the value from the specified source fails type: string event: description: Selector (https://github.com/expr-lang/expr) that is evaluated against the event to get the value of the parameter. E.g. `payload.message` type: string expression: description: Expression, if defined, is evaluated to specify the value for the parameter type: string jqFilter: description: JQFilter expression against the resource object in resource templates type: string jsonPath: description: JSONPath of a resource to retrieve an output parameter value from in resource templates type: string parameter: description: Parameter reference to a step or dag task in which to retrieve an output parameter value from (e.g. '{{steps.mystep.outputs.myparam}}') type: string path: description: Path in the container to retrieve an output parameter value from in container templates type: string supplied: description: Supplied value to be filled in directly, either through the CLI, API, etc. $ref: '#/definitions/io.argoproj.workflow.v1alpha1.SuppliedValueFrom' io.argoproj.workflow.v1alpha1.VolumeClaimGC: description: VolumeClaimGC describes how to delete volumes from completed Workflows type: object properties: strategy: description: Strategy is the strategy to use. One of "OnWorkflowCompletion", "OnWorkflowSuccess". Defaults to "OnWorkflowSuccess" type: string io.argoproj.workflow.v1alpha1.WorkflowSpec: description: WorkflowSpec is the specification of a Workflow. type: object properties: activeDeadlineSeconds: description: Optional duration in seconds relative to the workflow start time which the workflow is allowed to run before the controller terminates the io.argoproj.workflow.v1alpha1. A value of zero is used to terminate a Running workflow type: integer affinity: description: Affinity sets the scheduling constraints for all pods in the io.argoproj.workflow.v1alpha1. Can be overridden by an affinity specified in the template $ref: '#/definitions/io.k8s.api.core.v1.Affinity' archiveLogs: description: ArchiveLogs indicates if the container logs should be archived type: boolean arguments: description: Arguments contain the parameters and artifacts sent to the workflow entrypoint Parameters are referencable globally using the 'workflow' variable prefix. e.g. {{io.argoproj.workflow.v1alpha1.parameters.myparam}} $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Arguments' artifactGC: description: ArtifactGC describes the strategy to use when deleting artifacts from completed or deleted workflows (applies to all output Artifacts unless Artifact.ArtifactGC is specified, which overrides this) $ref: '#/definitions/io.argoproj.workflow.v1alpha1.WorkflowLevelArtifactGC' artifactRepositoryRef: description: ArtifactRepositoryRef specifies the configMap name and key containing the artifact repository config. $ref: '#/definitions/io.argoproj.workflow.v1alpha1.ArtifactRepositoryRef' automountServiceAccountToken: description: AutomountServiceAccountToken indicates whether a service account token should be automatically mounted in pods. ServiceAccountName of ExecutorConfig must be specified if this value is false. type: boolean dnsConfig: description: PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy. $ref: '#/definitions/io.k8s.api.core.v1.PodDNSConfig' dnsPolicy: description: Set DNS policy for workflow pods. Defaults to "ClusterFirst". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'. type: string entrypoint: description: Entrypoint is a template reference to the starting point of the io.argoproj.workflow.v1alpha1. type: string executor: description: Executor holds configurations of executor containers of the io.argoproj.workflow.v1alpha1. $ref: '#/definitions/io.argoproj.workflow.v1alpha1.ExecutorConfig' hooks: description: Hooks holds the lifecycle hook which is invoked at lifecycle of step, irrespective of the success, failure, or error status of the primary step type: object additionalProperties: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.LifecycleHook' hostAliases: type: array items: $ref: '#/definitions/io.k8s.api.core.v1.HostAlias' x-kubernetes-patch-merge-key: ip x-kubernetes-patch-strategy: merge hostNetwork: description: Host networking requested for this workflow pod. Default to false. type: boolean imagePullSecrets: description: 'ImagePullSecrets is a list of references to secrets in the same namespace to use for pulling any images in pods that reference this ServiceAccount. ImagePullSecrets are distinct from Secrets because Secrets can be mounted in the pod, but ImagePullSecrets are only accessed by the kubelet. More info: https://kubernetes.io/docs/concepts/containers/images/#specifying-imagepullsecrets-on-a-pod' type: array items: $ref: '#/definitions/io.k8s.api.core.v1.LocalObjectReference' x-kubernetes-patch-merge-key: name x-kubernetes-patch-strategy: merge metrics: description: Metrics are a list of metrics emitted from this Workflow $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Metrics' nodeSelector: description: NodeSelector is a selector which will result in all pods of the workflow to be scheduled on the selected node(s). This is able to be overridden by a nodeSelector specified in the template. type: object additionalProperties: type: string onExit: description: OnExit is a template reference which is invoked at the end of the workflow, irrespective of the success, failure, or error of the primary io.argoproj.workflow.v1alpha1. type: string parallelism: description: Parallelism limits the max total parallel pods that can execute at the same time in a workflow type: integer podDisruptionBudget: description: 'PodDisruptionBudget holds the number of concurrent disruptions that you allow for Workflow''s Pods. Controller will automatically add the selector with workflow name, if selector is empty. Optional: Defaults to empty.' $ref: '#/definitions/io.k8s.api.policy.v1.PodDisruptionBudgetSpec' podGC: description: PodGC describes the strategy to use when deleting completed pods $ref: '#/definitions/io.argoproj.workflow.v1alpha1.PodGC' podMetadata: description: PodMetadata defines additional metadata that should be applied to workflow pods $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Metadata' podPriorityClassName: description: PriorityClassName to apply to workflow pods. type: string podSpecPatch: description: PodSpecPatch holds strategic merge patch to apply against the pod spec. Allows parameterization of container fields which are not strings (e.g. resource limits). type: string priority: description: Priority is used if controller is configured to process limited number of workflows in parallel. Workflows with higher priority are processed first. type: integer retryStrategy: description: RetryStrategy for all templates in the io.argoproj.workflow.v1alpha1. $ref: '#/definitions/io.argoproj.workflow.v1alpha1.RetryStrategy' schedulerName: description: Set scheduler name for all pods. Will be overridden if container/script template's scheduler name is set. Default scheduler will be used if neither specified. type: string securityContext: description: 'SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field.' $ref: '#/definitions/io.k8s.api.core.v1.PodSecurityContext' serviceAccountName: description: ServiceAccountName is the name of the ServiceAccount to run all pods of the workflow as. type: string shutdown: description: Shutdown will shutdown the workflow according to its ShutdownStrategy type: string suspend: description: Suspend will suspend the workflow and prevent execution of any future steps in the workflow type: boolean synchronization: description: Synchronization holds synchronization lock configuration for this Workflow $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Synchronization' templateDefaults: description: TemplateDefaults holds default template values that will apply to all templates in the Workflow, unless overridden on the template-level $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Template' templates: description: Templates is a list of workflow templates used in a workflow MaxItems is an artificial limit to limit CEL validation costs - see note at top of file type: array items: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Template' x-kubernetes-patch-merge-key: name x-kubernetes-patch-strategy: merge tolerations: description: Tolerations to apply to workflow pods. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.Toleration' x-kubernetes-patch-merge-key: key x-kubernetes-patch-strategy: merge ttlStrategy: description: TTLStrategy limits the lifetime of a Workflow that has finished execution depending on if it Succeeded or Failed. If this struct is set, once the Workflow finishes, it will be deleted after the time to live expires. If this field is unset, the controller config map will hold the default values. $ref: '#/definitions/io.argoproj.workflow.v1alpha1.TTLStrategy' volumeClaimGC: description: VolumeClaimGC describes the strategy to use when deleting volumes from completed workflows $ref: '#/definitions/io.argoproj.workflow.v1alpha1.VolumeClaimGC' volumeClaimTemplates: description: VolumeClaimTemplates is a list of claims that containers are allowed to reference. The Workflow controller will create the claims at the beginning of the workflow and delete the claims upon completion of the workflow type: array items: $ref: '#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim' volumes: description: Volumes is a list of volumes that can be mounted by containers in a io.argoproj.workflow.v1alpha1. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.Volume' x-kubernetes-patch-merge-key: name x-kubernetes-patch-strategy: merge workflowMetadata: description: WorkflowMetadata contains some metadata of the workflow to refer to $ref: '#/definitions/io.argoproj.workflow.v1alpha1.WorkflowMetadata' workflowTemplateRef: description: WorkflowTemplateRef holds a reference to a WorkflowTemplate for execution $ref: '#/definitions/io.argoproj.workflow.v1alpha1.WorkflowTemplateRef' io.k8s.api.core.v1.PersistentVolumeClaimStatus: description: PersistentVolumeClaimStatus is the current status of a persistent volume claim. type: object properties: accessModes: description: 'accessModes contains the actual access modes the volume backing the PVC has. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1' type: array items: type: string x-kubernetes-list-type: atomic allocatedResourceStatuses: description: "allocatedResourceStatuses stores status of resource being resized for the given PVC. Key names follow standard Kubernetes label syntax. Valid values are either:\n\t* Un-prefixed keys:\n\t\t- storage - the capacity of the volume.\n\t* Custom resources must use implementation-defined prefixed names such as \"example.com/my-custom-resource\"\nApart from above values - keys that are unprefixed or have kubernetes.io prefix are considered reserved and hence may not be used.\n\nClaimResourceStatus can be in any of following states:\n\t- ControllerResizeInProgress:\n\t\tState set when resize controller starts resizing the volume in control-plane.\n\t- ControllerResizeFailed:\n\t\tState set when resize has failed in resize controller with a terminal error.\n\t- NodeResizePending:\n\t\tState set when resize controller has finished resizing the volume but further resizing of\n\t\tvolume is needed on the node.\n\t- NodeResizeInProgress:\n\t\tState set when kubelet starts resizing the volume.\n\t- NodeResizeFailed:\n\t\tState set when resizing has failed in kubelet with a terminal error. Transient errors don't set\n\t\tNodeResizeFailed.\nFor example: if expanding a PVC for more capacity - this field can be one of the following states:\n\t- pvc.status.allocatedResourceStatus['storage'] = \"ControllerResizeInProgress\"\n - pvc.status.allocatedResourceStatus['storage'] = \"ControllerResizeFailed\"\n - pvc.status.allocatedResourceStatus['storage'] = \"NodeResizePending\"\n - pvc.status.allocatedResourceStatus['storage'] = \"NodeResizeInProgress\"\n - pvc.status.allocatedResourceStatus['storage'] = \"NodeResizeFailed\"\nWhen this field is not set, it means that no resize operation is in progress for the given PVC.\n\nA controller that receives PVC update with previously unknown resourceName or ClaimResourceStatus should ignore the update for the purpose it was designed. For example - a controller that only is responsible for resizing capacity of the volume, should ignore PVC updates that change other valid resources associated with PVC." type: object additionalProperties: type: string x-kubernetes-map-type: granular allocatedResources: description: "allocatedResources tracks the resources allocated to a PVC including its capacity. Key names follow standard Kubernetes label syntax. Valid values are either:\n\t* Un-prefixed keys:\n\t\t- storage - the capacity of the volume.\n\t* Custom resources must use implementation-defined prefixed names such as \"example.com/my-custom-resource\"\nApart from above values - keys that are unprefixed or have kubernetes.io prefix are considered reserved and hence may not be used.\n\nCapacity reported here may be larger than the actual capacity when a volume expansion operation is requested. For storage quota, the larger value from allocatedResources and PVC.spec.resources is used. If allocatedResources is not set, PVC.spec.resources alone is used for quota calculation. If a volume expansion capacity request is lowered, allocatedResources is only lowered if there are no expansion operations in progress and if the actual volume capacity is equal or lower than the requested capacity.\n\nA controller that receives PVC update with previously unknown resourceName should ignore the update for the purpose it was designed. For example - a controller that only is responsible for resizing capacity of the volume, should ignore PVC updates that change other valid resources associated with PVC." type: object additionalProperties: $ref: '#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity' capacity: description: capacity represents the actual resources of the underlying volume. type: object additionalProperties: $ref: '#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity' conditions: description: conditions is the current Condition of persistent volume claim. If underlying persistent volume is being resized then the Condition will be set to 'Resizing'. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimCondition' x-kubernetes-list-map-keys: - type x-kubernetes-list-type: map x-kubernetes-patch-merge-key: type x-kubernetes-patch-strategy: merge currentVolumeAttributesClassName: description: currentVolumeAttributesClassName is the current name of the VolumeAttributesClass the PVC is using. When unset, there is no VolumeAttributeClass applied to this PersistentVolumeClaim type: string modifyVolumeStatus: description: ModifyVolumeStatus represents the status object of ControllerModifyVolume operation. When this is unset, there is no ModifyVolume operation being attempted. $ref: '#/definitions/io.k8s.api.core.v1.ModifyVolumeStatus' phase: description: phase represents the current phase of PersistentVolumeClaim. type: string io.k8s.api.core.v1.PodAffinity: description: Pod affinity is a group of inter pod affinity scheduling rules. type: object properties: preferredDuringSchedulingIgnoredDuringExecution: description: 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. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.WeightedPodAffinityTerm' x-kubernetes-list-type: atomic requiredDuringSchedulingIgnoredDuringExecution: description: 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. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.PodAffinityTerm' x-kubernetes-list-type: atomic io.argoproj.workflow.v1alpha1.Histogram: description: Histogram is a Histogram prometheus metric type: object required: - value - buckets properties: buckets: description: Buckets is a list of bucket divisors for the histogram type: array items: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Amount' value: description: Value is the value of the metric type: string io.argoproj.workflow.v1alpha1.WorkflowTemplate: description: WorkflowTemplate is the definition of a workflow template resource type: object required: - metadata - spec properties: apiVersion: description: '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.io.k8s.community/contributors/devel/sig-architecture/api-conventions.md#resources' type: string kind: description: '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.io.k8s.community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' type: string metadata: $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta' spec: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.WorkflowSpec' io.argoproj.workflow.v1alpha1.WorkflowTemplateCreateRequest: type: object properties: createOptions: $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.CreateOptions' namespace: type: string template: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.WorkflowTemplate' io.k8s.api.core.v1.ISCSIVolumeSource: description: Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling. type: object required: - targetPortal - iqn - lun properties: chapAuthDiscovery: description: chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication type: boolean chapAuthSession: description: chapAuthSession defines whether support iSCSI Session CHAP authentication type: boolean fsType: description: 'fsType is the filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi' type: string initiatorName: description: initiatorName is the custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface : will be created for the connection. type: string iqn: description: iqn is the target iSCSI Qualified Name. type: string iscsiInterface: description: iscsiInterface is the interface Name that uses an iSCSI transport. Defaults to 'default' (tcp). type: string lun: description: lun represents iSCSI Target Lun number. type: integer portals: description: portals is the iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260). type: array items: type: string x-kubernetes-list-type: atomic readOnly: description: readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. type: boolean secretRef: description: secretRef is the CHAP Secret for iSCSI target and initiator authentication $ref: '#/definitions/io.k8s.api.core.v1.LocalObjectReference' targetPortal: description: targetPortal is iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260). type: string io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1: description: 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format. Each key is either a ''.'' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: ''f:'', where is the name of a field in a struct, or key in a map ''v:'', where is the exact json formatted value of a list item ''i:'', where is position of a item in a list ''k:'', where is a map of a list item''s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set. The exact format is defined in sigs.k8s.io/structured-merge-diff' type: object io.argoproj.workflow.v1alpha1.S3EncryptionOptions: description: S3EncryptionOptions used to determine encryption options during s3 operations type: object properties: enableEncryption: description: EnableEncryption tells the driver to encrypt objects if set to true. If kmsKeyId and serverSideCustomerKeySecret are not set, SSE-S3 will be used type: boolean kmsEncryptionContext: description: KmsEncryptionContext is a json blob that contains an encryption context. See https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context for more information type: string kmsKeyId: description: KMSKeyId tells the driver to encrypt the object using the specified KMS Key. type: string serverSideCustomerKeySecret: description: ServerSideCustomerKeySecret tells the driver to encrypt the output artifacts using SSE-C with the specified secret. $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' io.argoproj.workflow.v1alpha1.SyncDatabaseRef: type: object required: - key properties: key: type: string io.k8s.api.core.v1.ConfigMapProjection: description: 'Adapts a ConfigMap into a projected volume. The contents of the target ConfigMap''s Data field will be presented in a projected volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. Note that this is identical to a configmap volume source without the default mode.' type: object properties: items: description: items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.KeyToPath' x-kubernetes-list-type: atomic name: description: 'Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' type: string optional: description: optional specify whether the ConfigMap or its keys must be defined type: boolean io.k8s.api.core.v1.Lifecycle: description: 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. type: object properties: postStart: description: 'PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks' $ref: '#/definitions/io.k8s.api.core.v1.LifecycleHandler' preStop: description: 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The Pod''s termination grace period countdown begins before the PreStop hook is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod''s termination grace period (unless delayed by finalizers). Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks' $ref: '#/definitions/io.k8s.api.core.v1.LifecycleHandler' stopSignal: description: StopSignal defines which signal will be sent to a container when it is being stopped. If not specified, the default is defined by the container runtime in use. StopSignal can only be set for Pods with a non-empty .spec.os.name type: string io.k8s.api.core.v1.FlexVolumeSource: description: FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin. type: object required: - driver properties: driver: description: driver is the name of the driver to use for this volume. type: string fsType: description: fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". The default filesystem depends on FlexVolume script. type: string options: description: 'options is Optional: this field holds extra command options if any.' type: object additionalProperties: type: string readOnly: description: 'readOnly is Optional: defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.' type: boolean secretRef: description: 'secretRef is Optional: secretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts.' $ref: '#/definitions/io.k8s.api.core.v1.LocalObjectReference' io.k8s.api.core.v1.StorageOSVolumeSource: description: Represents a StorageOS persistent volume resource. type: object properties: fsType: description: fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. type: string readOnly: description: readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. type: boolean secretRef: description: secretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted. $ref: '#/definitions/io.k8s.api.core.v1.LocalObjectReference' volumeName: description: volumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace. type: string volumeNamespace: description: volumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to "default" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created. type: string io.k8s.api.core.v1.TCPSocketAction: description: TCPSocketAction describes an action based on opening a socket type: object required: - port properties: host: description: 'Optional: Host name to connect to, defaults to the pod IP.' type: string port: description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. $ref: '#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString' io.k8s.api.core.v1.EnvVar: description: EnvVar represents an environment variable present in a Container. type: object required: - name properties: name: description: Name of the environment variable. May consist of any printable ASCII characters except '='. type: string value: description: '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 "".' type: string valueFrom: description: Source for the environment variable's value. Cannot be used if value is not empty. $ref: '#/definitions/io.k8s.api.core.v1.EnvVarSource' io.k8s.api.core.v1.ContainerResizePolicy: description: ContainerResizePolicy represents resource resize policy for the container. type: object required: - resourceName - restartPolicy properties: resourceName: description: 'Name of the resource to which this resource resize policy applies. Supported values: cpu, memory.' type: string restartPolicy: description: Restart policy to apply when specified resource is resized. If not specified, it defaults to NotRequired. type: string io.k8s.api.core.v1.NodeSelector: description: 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. type: object required: - nodeSelectorTerms properties: nodeSelectorTerms: description: Required. A list of node selector terms. The terms are ORed. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.NodeSelectorTerm' x-kubernetes-list-type: atomic x-kubernetes-map-type: atomic io.k8s.api.core.v1.FileKeySelector: description: FileKeySelector selects a key of the env file. type: object required: - volumeName - path - key properties: key: description: The key within the env file. An invalid key will prevent the pod from starting. The keys defined within a source may consist of any printable ASCII characters except '='. During Alpha stage of the EnvFiles feature gate, the key size is limited to 128 characters. type: string optional: description: 'Specify whether the file or its key must be defined. If the file or key does not exist, then the env var is not published. If optional is set to true and the specified key does not exist, the environment variable will not be set in the Pod''s containers. If optional is set to false and the specified key does not exist, an error will be returned during Pod creation.' type: boolean path: description: The path within the volume from which to select the file. Must be relative and may not contain the '..' path or start with '..'. type: string volumeName: description: The name of the volume mount containing the env file. type: string x-kubernetes-map-type: atomic io.argoproj.workflow.v1alpha1.HDFSArtifact: description: HDFSArtifact is the location of an HDFS artifact type: object required: - path properties: addresses: description: Addresses is accessible addresses of HDFS name nodes type: array items: type: string dataTransferProtection: description: DataTransferProtection is the protection level for HDFS data transfer. It corresponds to the dfs.data.transfer.protection configuration in HDFS. type: string force: description: Force copies a file forcibly even if it exists type: boolean hdfsUser: description: HDFSUser is the user to access HDFS file system. It is ignored if either ccache or keytab is used. type: string krbCCacheSecret: description: KrbCCacheSecret is the secret selector for Kerberos ccache Either ccache or keytab can be set to use Kerberos. $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' krbConfigConfigMap: description: KrbConfig is the configmap selector for Kerberos config as string It must be set if either ccache or keytab is used. $ref: '#/definitions/io.k8s.api.core.v1.ConfigMapKeySelector' krbKeytabSecret: description: KrbKeytabSecret is the secret selector for Kerberos keytab Either ccache or keytab can be set to use Kerberos. $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' krbRealm: description: KrbRealm is the Kerberos realm used with Kerberos keytab It must be set if keytab is used. type: string krbServicePrincipalName: description: KrbServicePrincipalName is the principal name of Kerberos service It must be set if either ccache or keytab is used. type: string krbUsername: description: KrbUsername is the Kerberos username used with Kerberos keytab It must be set if keytab is used. type: string path: description: Path is a file path in HDFS type: string io.k8s.api.core.v1.EphemeralVolumeSource: description: Represents an ephemeral volume that is handled by a normal storage driver. type: object properties: volumeClaimTemplate: description: 'Will be used to create a stand-alone PVC to provision the volume. The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, i.e. the PVC will be deleted together with the pod. The name of the PVC will be `-` where `` is the name from the `PodSpec.Volumes` array entry. Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long). An existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake. Starting the pod is then blocked until the unrelated PVC is removed. If such a pre-created PVC is meant to be used by the pod, the PVC has to updated with an owner reference to the pod once the pod exists. Normally this should not be necessary, but it may be useful when manually reconstructing a broken cluster. This field is read-only and no changes will be made by Kubernetes to the PVC after it has been created. Required, must not be nil.' $ref: '#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimTemplate' io.argoproj.workflow.v1alpha1.ArtifactRepositoryRef: description: ArtifactRepositoryRef is a reference to an artifact repository config map. type: object properties: configMap: description: The name of the config map. Defaults to "artifact-repositories". type: string key: description: The config map key. Defaults to the value of the "workflows.argoproj.io/default-artifact-repository" annotation. type: string io.k8s.api.core.v1.VolumeMount: description: VolumeMount describes a mounting of a Volume within a container. type: object required: - name - mountPath properties: mountPath: description: Path within the container at which the volume should be mounted. Must not contain ':'. type: string mountPropagation: description: 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. When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None). type: string name: description: This must match the Name of a Volume. type: string readOnly: description: Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false. type: boolean recursiveReadOnly: description: 'RecursiveReadOnly specifies whether read-only mounts should be handled recursively. If ReadOnly is false, this field has no meaning and must be unspecified. If ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only. If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime. If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reason. If this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None). If this field is not specified, it is treated as an equivalent of Disabled.' type: string subPath: description: Path within the volume from which the container's volume should be mounted. Defaults to "" (volume's root). type: string subPathExpr: description: 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. type: string io.k8s.api.core.v1.PersistentVolumeClaimTemplate: description: PersistentVolumeClaimTemplate is used to produce PersistentVolumeClaim objects as part of an EphemeralVolumeSource. type: object required: - spec properties: metadata: description: May contain labels and annotations that will be copied into the PVC when creating it. No other fields are allowed and will be rejected during validation. $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta' spec: description: The specification for the PersistentVolumeClaim. The entire content is copied unchanged into the PVC that gets created from this template. The same fields as in a PersistentVolumeClaim are also valid here. $ref: '#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimSpec' io.k8s.api.core.v1.HTTPHeader: description: HTTPHeader describes a custom header to be used in HTTP probes type: object required: - name - value properties: name: description: The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header. type: string value: description: The header field value type: string io.argoproj.workflow.v1alpha1.OSSArtifact: description: OSSArtifact is the location of an Alibaba Cloud OSS artifact type: object required: - key properties: accessKeySecret: description: AccessKeySecret is the secret selector to the bucket's access key $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' bucket: description: Bucket is the name of the bucket type: string createBucketIfNotPresent: description: CreateBucketIfNotPresent tells the driver to attempt to create the OSS bucket for output artifacts, if it doesn't exist type: boolean endpoint: description: Endpoint is the hostname of the bucket endpoint type: string key: description: Key is the path in the bucket where the artifact resides type: string lifecycleRule: description: LifecycleRule specifies how to manage bucket's lifecycle $ref: '#/definitions/io.argoproj.workflow.v1alpha1.OSSLifecycleRule' secretKeySecret: description: SecretKeySecret is the secret selector to the bucket's secret key $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' securityToken: description: 'SecurityToken is the user''s temporary security token. For more details, check out: https://www.alibabacloud.com/help/doc-detail/100624.htm' type: string useSDKCreds: description: UseSDKCreds tells the driver to figure out credentials based on sdk defaults. type: boolean grpc.gateway.runtime.Error: type: object properties: code: type: integer details: type: array items: $ref: '#/definitions/google.protobuf.Any' error: type: string message: type: string io.argoproj.workflow.v1alpha1.S3Artifact: description: S3Artifact is the location of an S3 artifact type: object properties: accessKeySecret: description: AccessKeySecret is the secret selector to the bucket's access key $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' bucket: description: Bucket is the name of the bucket type: string caSecret: description: CASecret specifies the secret that contains the CA, used to verify the TLS connection $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' createBucketIfNotPresent: description: CreateBucketIfNotPresent tells the driver to attempt to create the S3 bucket for output artifacts, if it doesn't exist. Setting Enabled Encryption will apply either SSE-S3 to the bucket if KmsKeyId is not set or SSE-KMS if it is. $ref: '#/definitions/io.argoproj.workflow.v1alpha1.CreateS3BucketOptions' encryptionOptions: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.S3EncryptionOptions' endpoint: description: Endpoint is the hostname of the bucket endpoint type: string insecure: description: Insecure will connect to the service with TLS type: boolean key: description: Key is the key in the bucket where the artifact resides type: string region: description: Region contains the optional bucket region type: string roleARN: description: RoleARN is the Amazon Resource Name (ARN) of the role to assume. type: string secretKeySecret: description: SecretKeySecret is the secret selector to the bucket's secret key $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' sessionTokenSecret: description: SessionTokenSecret is used for ephemeral credentials like an IAM assume role or S3 access grant $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' useSDKCreds: description: UseSDKCreds tells the driver to figure out credentials based on sdk defaults. type: boolean io.argoproj.workflow.v1alpha1.ClientCertAuth: description: ClientCertAuth holds necessary information for client authentication via certificates type: object properties: clientCertSecret: $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' clientKeySecret: $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' io.k8s.api.core.v1.SecretEnvSource: description: '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.' type: object properties: name: description: 'Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' type: string optional: description: Specify whether the Secret must be defined type: boolean io.argoproj.workflow.v1alpha1.ArchiveStrategy: description: ArchiveStrategy describes how to archive files/directory when saving artifacts type: object properties: none: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.NoneStrategy' tar: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.TarStrategy' zip: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.ZipStrategy' io.k8s.api.core.v1.ContainerRestartRule: description: ContainerRestartRule describes how a container exit is handled. type: object required: - action properties: action: description: Specifies the action taken on a container exit if the requirements are satisfied. The only possible value is "Restart" to restart the container. type: string exitCodes: description: Represents the exit codes to check on container exits. $ref: '#/definitions/io.k8s.api.core.v1.ContainerRestartRuleOnExitCodes' io.argoproj.workflow.v1alpha1.Outputs: description: Outputs hold parameters, artifacts, and results from a step type: object properties: artifacts: description: Artifacts holds the list of output artifacts produced by a step type: array items: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Artifact' x-kubernetes-patch-merge-key: name x-kubernetes-patch-strategy: merge exitCode: description: ExitCode holds the exit code of a script template type: string parameters: description: Parameters holds the list of output parameters produced by a step type: array items: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Parameter' x-kubernetes-patch-merge-key: name x-kubernetes-patch-strategy: merge result: description: Result holds the result (stdout) of a script or container template, or the response body of an HTTP template type: string io.k8s.api.core.v1.AppArmorProfile: description: AppArmorProfile defines a pod or container's AppArmor settings. type: object required: - type properties: localhostProfile: description: localhostProfile indicates a profile loaded on the node that should be used. The profile must be preconfigured on the node to work. Must match the loaded name of the profile. Must be set if and only if type is "Localhost". type: string type: description: "type indicates which kind of AppArmor profile will be applied. Valid options are:\n Localhost - a profile pre-loaded on the node.\n RuntimeDefault - the container runtime's default profile.\n Unconfined - no AppArmor enforcement." type: string x-kubernetes-unions: - discriminator: type fields-to-discriminateBy: localhostProfile: LocalhostProfile io.k8s.api.core.v1.SecurityContext: description: 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. type: object properties: allowPrivilegeEscalation: description: '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.' type: boolean appArmorProfile: description: appArmorProfile is the AppArmor options to use by this container. If set, this profile overrides the pod's appArmorProfile. Note that this field cannot be set when spec.os.name is windows. $ref: '#/definitions/io.k8s.api.core.v1.AppArmorProfile' capabilities: description: The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime. Note that this field cannot be set when spec.os.name is windows. $ref: '#/definitions/io.k8s.api.core.v1.Capabilities' privileged: description: 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. type: boolean procMount: description: procMount denotes the type of proc mount to use for the containers. The default value is Default 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. type: string readOnlyRootFilesystem: description: 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. type: boolean runAsGroup: description: 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. type: integer runAsNonRoot: description: 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. type: boolean runAsUser: description: 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. type: integer seLinuxOptions: description: The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. 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. $ref: '#/definitions/io.k8s.api.core.v1.SELinuxOptions' seccompProfile: description: The seccomp options to use by this container. If seccomp options are provided at both the pod & container level, the container options override the pod options. Note that this field cannot be set when spec.os.name is windows. $ref: '#/definitions/io.k8s.api.core.v1.SeccompProfile' windowsOptions: description: The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. 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 linux. $ref: '#/definitions/io.k8s.api.core.v1.WindowsSecurityContextOptions' io.k8s.api.core.v1.PersistentVolumeClaimSpec: description: PersistentVolumeClaimSpec describes the common attributes of storage devices and allows a Source for provider-specific attributes type: object properties: accessModes: description: 'accessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1' type: array items: type: string x-kubernetes-list-type: atomic dataSource: description: 'dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source. When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified. If the namespace is specified, then dataSourceRef will not be copied to dataSource.' $ref: '#/definitions/io.k8s.api.core.v1.TypedLocalObjectReference' dataSourceRef: description: "dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired. This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object. When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner. This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value. For backwards compatibility, when namespace isn't specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty. When namespace is specified in dataSourceRef, dataSource isn't set to the same value and must be empty. There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef\n allows any non-core object, as well as PersistentVolumeClaim objects.\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\n preserves all values, and generates an error if a disallowed value is\n specified.\n* While dataSource only allows local objects, dataSourceRef allows objects\n in any namespaces.\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled. (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled." $ref: '#/definitions/io.k8s.api.core.v1.TypedObjectReference' resources: description: 'resources represents the minimum resources the volume should have. Users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources' $ref: '#/definitions/io.k8s.api.core.v1.VolumeResourceRequirements' selector: description: selector is a label query over volumes to consider for binding. $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector' storageClassName: description: 'storageClassName is the name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1' type: string volumeAttributesClassName: description: 'volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim. If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass. This has a different purpose than storageClassName, it can be changed after the claim is created. An empty string or nil value indicates that no VolumeAttributesClass will be applied to the claim. If the claim enters an Infeasible error state, this field can be reset to its previous value (including nil) to cancel the modification. If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists. More info: https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/' type: string volumeMode: description: volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec. type: string volumeName: description: volumeName is the binding reference to the PersistentVolume backing this claim. type: string io.argoproj.workflow.v1alpha1.OSSLifecycleRule: description: OSSLifecycleRule specifies how to manage bucket's lifecycle type: object properties: markDeletionAfterDays: description: MarkDeletionAfterDays is the number of days before we delete objects in the bucket type: integer markInfrequentAccessAfterDays: description: MarkInfrequentAccessAfterDays is the number of days before we convert the objects in the bucket to Infrequent Access (IA) storage type type: integer io.argoproj.workflow.v1alpha1.WorkflowTemplateRef: description: WorkflowTemplateRef is a reference to a WorkflowTemplate resource. type: object properties: clusterScope: description: ClusterScope indicates the referred template is cluster scoped (i.e. a ClusterWorkflowTemplate). type: boolean name: description: Name is the resource name of the workflow template. type: string io.k8s.api.core.v1.HostPathVolumeSource: description: Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling. type: object required: - path properties: path: description: 'path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath' type: string type: description: 'type for HostPath Volume Defaults to "" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath' type: string io.argoproj.workflow.v1alpha1.ManifestFrom: type: object required: - artifact properties: artifact: description: Artifact contains the artifact to use $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Artifact' io.argoproj.workflow.v1alpha1.Metadata: description: Metadata is pod metadata. type: object properties: annotations: type: object additionalProperties: type: string labels: type: object additionalProperties: type: string io.argoproj.workflow.v1alpha1.ZipStrategy: description: ZipStrategy will unzip zipped input artifacts type: object io.argoproj.workflow.v1alpha1.Inputs: description: Inputs are the mechanism for passing parameters, artifacts, volumes from one template to another type: object properties: artifacts: description: Artifact are a list of artifacts passed as inputs type: array items: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Artifact' x-kubernetes-patch-merge-key: name x-kubernetes-patch-strategy: merge parameters: description: Parameters are a list of parameters passed as inputs MaxItems is an artificial limit to limit CEL validation costs - see note at top of file type: array items: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Parameter' x-kubernetes-patch-merge-key: name x-kubernetes-patch-strategy: merge io.argoproj.workflow.v1alpha1.LabelValueFrom: type: object required: - expression properties: expression: type: string io.argoproj.workflow.v1alpha1.WorkflowTemplateDeleteResponse: type: object io.k8s.api.core.v1.ResourceClaim: description: ResourceClaim references one entry in PodSpec.ResourceClaims. type: object required: - name properties: name: description: Name must match the name of one entry in pod.spec.resourceClaims of the Pod where this field is used. It makes that resource available inside a container. type: string request: description: Request is the name chosen for a request in the referenced claim. If empty, everything from the claim is made available, otherwise only the result of this request. type: string io.argoproj.workflow.v1alpha1.Parameter: description: Parameter indicate a passed string parameter to a service template with an optional default value type: object required: - name properties: default: description: Default is the default value to use for an input parameter if a value was not supplied type: string description: description: Description is the parameter description type: string enum: description: Enum holds a list of string values to choose from, for the actual value of the parameter type: array items: type: string globalName: description: GlobalName exports an output parameter to the global scope, making it available as '{{io.argoproj.workflow.v1alpha1.outputs.parameters.XXXX}} and in workflow.status.outputs.parameters type: string name: description: Name is the parameter name type: string value: description: Value is the literal value to use for the parameter. If specified in the context of an input parameter, any passed values take precedence over the specified value type: string valueFrom: description: ValueFrom is the source for the output parameter's value $ref: '#/definitions/io.argoproj.workflow.v1alpha1.ValueFrom' io.k8s.api.core.v1.CephFSVolumeSource: description: Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling. type: object required: - monitors properties: monitors: description: 'monitors is Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' type: array items: type: string x-kubernetes-list-type: atomic path: description: 'path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /' type: string readOnly: description: 'readOnly is Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' type: boolean secretFile: description: 'secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' type: string secretRef: description: 'secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' $ref: '#/definitions/io.k8s.api.core.v1.LocalObjectReference' user: description: 'user is optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it' type: string io.k8s.api.core.v1.WindowsSecurityContextOptions: description: WindowsSecurityContextOptions contain Windows-specific options and credentials. type: object properties: gmsaCredentialSpec: description: 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. type: string gmsaCredentialSpecName: description: GMSACredentialSpecName is the name of the GMSA credential spec to use. type: string hostProcess: description: HostProcess determines if a container should be run as a 'Host Process' container. 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. type: boolean runAsUserName: description: 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. type: string io.argoproj.workflow.v1alpha1.Arguments: description: Arguments to a template type: object properties: artifacts: description: Artifacts is the list of artifacts to pass to the template or workflow type: array items: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Artifact' x-kubernetes-patch-merge-key: name x-kubernetes-patch-strategy: merge parameters: description: Parameters is the list of parameters to pass to the template or workflow type: array items: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Parameter' x-kubernetes-patch-merge-key: name x-kubernetes-patch-strategy: merge io.argoproj.workflow.v1alpha1.SuspendTemplate: description: SuspendTemplate is a template subtype to suspend a workflow at a predetermined point in time type: object properties: duration: description: 'Duration is the seconds to wait before automatically resuming a template. Must be a string. Default unit is seconds. Could also be a Duration, e.g.: "2m", "6h"' type: string io.k8s.api.core.v1.ConfigMapKeySelector: description: Selects a key from a ConfigMap. type: object required: - key properties: key: description: The key to select. type: string name: description: 'Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' type: string optional: description: Specify whether the ConfigMap or its key must be defined type: boolean x-kubernetes-map-type: atomic io.argoproj.workflow.v1alpha1.Mutex: description: Mutex holds Mutex configuration type: object properties: database: description: Database specifies this is database controlled if this is set true type: boolean name: description: name of the mutex type: string namespace: description: 'Namespace is the namespace of the mutex, default: [namespace of workflow]' type: string io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource: description: 'Represents a Persistent Disk resource in AWS. An AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.' type: object required: - volumeID properties: fsType: description: 'fsType is the filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore' type: string partition: description: 'partition is the partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as "1". Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty).' type: integer readOnly: description: 'readOnly value true will force the readOnly setting in VolumeMounts. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore' type: boolean volumeID: description: 'volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore' type: string io.k8s.apimachinery.pkg.util.intstr.IntOrString: type: string io.k8s.api.core.v1.CinderVolumeSource: description: Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling. type: object required: - volumeID properties: fsType: description: 'fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md' type: string readOnly: description: 'readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md' type: boolean secretRef: description: 'secretRef is optional: points to a secret object containing parameters used to connect to OpenStack.' $ref: '#/definitions/io.k8s.api.core.v1.LocalObjectReference' volumeID: description: 'volumeID used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md' type: string io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta: description: ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}. type: object properties: continue: description: continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message. type: string remainingItemCount: description: remainingItemCount is the number of subsequent items in the list which are not included in this list response. If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization. If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization. Servers older than v1.15 do not set this field. The intended use of the remainingItemCount is *estimating* the size of a collection. Clients should not rely on the remainingItemCount to be set or to be exact. type: integer resourceVersion: description: 'String that identifies the server''s internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency' type: string selfLink: description: 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.' type: string io.k8s.api.core.v1.ResourceFieldSelector: description: ResourceFieldSelector represents container resources (cpu, memory) and their output format type: object required: - resource properties: containerName: description: 'Container name: required for volumes, optional for env vars' type: string divisor: description: Specifies the output format of the exposed resources, defaults to "1" $ref: '#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity' resource: description: 'Required: resource to select' type: string x-kubernetes-map-type: atomic io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector: description: 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. type: object properties: matchExpressions: description: matchExpressions is a list of label selector requirements. The requirements are ANDed. type: array items: $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelectorRequirement' x-kubernetes-list-type: atomic matchLabels: description: 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. type: object additionalProperties: type: string x-kubernetes-map-type: atomic io.k8s.api.core.v1.ModifyVolumeStatus: description: ModifyVolumeStatus represents the status object of ControllerModifyVolume operation type: object required: - status properties: status: description: "status is the status of the ControllerModifyVolume operation. It can be in any of following states:\n - Pending\n Pending indicates that the PersistentVolumeClaim cannot be modified due to unmet requirements, such as\n the specified VolumeAttributesClass not existing.\n - InProgress\n InProgress indicates that the volume is being modified.\n - Infeasible\n Infeasible indicates that the request has been rejected as invalid by the CSI driver. To\n\t resolve the error, a valid VolumeAttributesClass needs to be specified.\nNote: New statuses can be added in the future. Consumers should check for unknown statuses and fail appropriately." type: string targetVolumeAttributesClassName: description: targetVolumeAttributesClassName is the name of the VolumeAttributesClass the PVC currently being reconciled type: string io.k8s.api.core.v1.FlockerVolumeSource: description: Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling. type: object properties: datasetName: description: datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated type: string datasetUUID: description: datasetUUID is the UUID of the dataset. This is unique identifier of a Flocker dataset type: string io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta: description: ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. type: object properties: annotations: description: '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: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations' type: object additionalProperties: type: string creationTimestamp: description: 'CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. Populated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata' $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time' deletionGracePeriodSeconds: description: 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. type: integer deletionTimestamp: description: 'DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested. Populated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata' $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time' finalizers: description: 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. type: array items: type: string x-kubernetes-list-type: set x-kubernetes-patch-strategy: merge generateName: description: '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' type: string generation: description: A sequence number representing a specific generation of the desired state. Populated by the system. Read-only. type: integer labels: description: '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: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels' type: object additionalProperties: type: string managedFields: description: 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. type: array items: $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ManagedFieldsEntry' x-kubernetes-list-type: atomic name: description: '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: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names' type: string namespace: description: '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: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces' type: string ownerReferences: description: 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. type: array items: $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference' x-kubernetes-list-map-keys: - uid x-kubernetes-list-type: map x-kubernetes-patch-merge-key: uid x-kubernetes-patch-strategy: merge resourceVersion: description: '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' type: string selfLink: description: 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.' type: string uid: description: '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: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids' type: string io.k8s.apimachinery.pkg.apis.meta.v1.Time: description: Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers. type: string format: date-time io.k8s.api.core.v1.ConfigMapVolumeSource: description: 'Adapts a ConfigMap into a volume. The contents of the target ConfigMap''s Data field will be presented in a volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. ConfigMap volumes support ownership management and SELinux relabeling.' type: object properties: defaultMode: description: 'defaultMode is optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' type: integer items: description: items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.KeyToPath' x-kubernetes-list-type: atomic name: description: 'Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' type: string optional: description: optional specify whether the ConfigMap or its keys must be defined type: boolean io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource: description: Represents a vSphere volume resource. type: object required: - volumePath properties: fsType: description: fsType is filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. type: string storagePolicyID: description: storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName. type: string storagePolicyName: description: storagePolicyName is the storage Policy Based Management (SPBM) profile name. type: string volumePath: description: volumePath is the path that identifies vSphere volume vmdk type: string io.k8s.api.core.v1.NFSVolumeSource: description: Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling. type: object required: - server - path properties: path: description: 'path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs' type: string readOnly: description: 'readOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs' type: boolean server: description: 'server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs' type: string io.k8s.api.core.v1.KeyToPath: description: Maps a string key to a path within a volume. type: object required: - key - path properties: key: description: key is the key to project. type: string mode: description: 'mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' type: integer path: description: path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'. type: string io.k8s.api.core.v1.ContainerRestartRuleOnExitCodes: description: ContainerRestartRuleOnExitCodes describes the condition for handling an exited container based on its exit codes. type: object required: - operator properties: operator: description: "Represents the relationship between the container exit code(s) and the specified values. Possible values are: - In: the requirement is satisfied if the container exit code is in the\n set of specified values.\n- NotIn: the requirement is satisfied if the container exit code is\n not in the set of specified values." type: string values: description: Specifies the set of values to check for container exit codes. At most 255 elements are allowed. type: array items: type: integer format: int32 x-kubernetes-list-type: set io.k8s.api.core.v1.FCVolumeSource: description: Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling. type: object properties: fsType: description: fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. type: string lun: description: 'lun is Optional: FC target lun number' type: integer readOnly: description: 'readOnly is Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.' type: boolean targetWWNs: description: 'targetWWNs is Optional: FC target worldwide names (WWNs)' type: array items: type: string x-kubernetes-list-type: atomic wwids: description: 'wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.' type: array items: type: string x-kubernetes-list-type: atomic io.argoproj.workflow.v1alpha1.Plugin: description: Plugin is an Object with exactly one key type: object io.k8s.api.core.v1.ResourceRequirements: description: ResourceRequirements describes the compute resource requirements. type: object properties: claims: description: 'Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container. This field depends on the DynamicResourceAllocation feature gate. This field is immutable. It can only be set for containers.' type: array items: $ref: '#/definitions/io.k8s.api.core.v1.ResourceClaim' x-kubernetes-list-map-keys: - name x-kubernetes-list-type: map limits: description: 'Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' type: object additionalProperties: $ref: '#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity' requests: description: '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. Requests cannot exceed Limits. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' type: object additionalProperties: $ref: '#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity' io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference: description: OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field. type: object required: - apiVersion - kind - name - uid properties: apiVersion: description: API version of the referent. type: string blockOwnerDeletion: description: 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. type: boolean controller: description: If true, this reference points to the managing controller. type: boolean kind: description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' type: string name: description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names' type: string uid: description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids' type: string x-kubernetes-map-type: atomic io.k8s.api.core.v1.PodAffinityTerm: description: 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 matches that of any node on which a pod of the set of pods is running type: object required: - topologyKey properties: labelSelector: description: A label query over a set of resources, in this case pods. If it's null, this PodAffinityTerm matches with no Pods. $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector' matchLabelKeys: description: MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration. The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)` to select the group of existing pods which pods will be taken into consideration for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming pod labels will be ignored. The default value is empty. The same key is forbidden to exist in both matchLabelKeys and labelSelector. Also, matchLabelKeys cannot be set when labelSelector isn't set. type: array items: type: string x-kubernetes-list-type: atomic mismatchLabelKeys: description: MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration. The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)` to select the group of existing pods which pods will be taken into consideration for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming pod labels will be ignored. The default value is empty. The same key is forbidden to exist in both mismatchLabelKeys and labelSelector. Also, mismatchLabelKeys cannot be set when labelSelector isn't set. type: array items: type: string x-kubernetes-list-type: atomic namespaceSelector: description: A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means "this pod's namespace". An empty selector ({}) matches all namespaces. $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector' namespaces: description: 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". type: array items: type: string x-kubernetes-list-type: atomic topologyKey: description: 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. type: string io.argoproj.workflow.v1alpha1.SuppliedValueFrom: description: SuppliedValueFrom is a placeholder for a value to be filled in directly, either through the CLI, API, etc. type: object io.argoproj.workflow.v1alpha1.Artifact: description: Artifact indicates an artifact to place at a specified path type: object required: - name properties: archive: description: Archive controls how the artifact will be saved to the artifact repository. $ref: '#/definitions/io.argoproj.workflow.v1alpha1.ArchiveStrategy' archiveLogs: description: ArchiveLogs indicates if the container logs should be archived type: boolean artifactGC: description: ArtifactGC describes the strategy to use when to deleting an artifact from completed or deleted workflows $ref: '#/definitions/io.argoproj.workflow.v1alpha1.ArtifactGC' artifactory: description: Artifactory contains artifactory artifact location details $ref: '#/definitions/io.argoproj.workflow.v1alpha1.ArtifactoryArtifact' azure: description: Azure contains Azure Storage artifact location details $ref: '#/definitions/io.argoproj.workflow.v1alpha1.AzureArtifact' deleted: description: Has this been deleted? type: boolean from: description: From allows an artifact to reference an artifact from a previous step type: string fromExpression: description: FromExpression, if defined, is evaluated to specify the value for the artifact type: string gcs: description: GCS contains GCS artifact location details $ref: '#/definitions/io.argoproj.workflow.v1alpha1.GCSArtifact' git: description: Git contains git artifact location details $ref: '#/definitions/io.argoproj.workflow.v1alpha1.GitArtifact' globalName: description: GlobalName exports an output artifact to the global scope, making it available as '{{io.argoproj.workflow.v1alpha1.outputs.artifacts.XXXX}} and in workflow.status.outputs.artifacts type: string hdfs: description: HDFS contains HDFS artifact location details $ref: '#/definitions/io.argoproj.workflow.v1alpha1.HDFSArtifact' http: description: HTTP contains HTTP artifact location details $ref: '#/definitions/io.argoproj.workflow.v1alpha1.HTTPArtifact' mode: description: mode bits to use on this file, must be a value between 0 and 0777. Set when loading input artifacts. It is recommended to set the mode value to ensure the artifact has the expected permissions in your container. type: integer name: description: name of the artifact. must be unique within a template's inputs/outputs. type: string optional: description: Make Artifacts optional, if Artifacts doesn't generate or exist type: boolean oss: description: OSS contains OSS artifact location details $ref: '#/definitions/io.argoproj.workflow.v1alpha1.OSSArtifact' path: description: Path is the container path to the artifact type: string plugin: description: Plugin contains plugin artifact location details $ref: '#/definitions/io.argoproj.workflow.v1alpha1.PluginArtifact' raw: description: Raw contains raw artifact location details $ref: '#/definitions/io.argoproj.workflow.v1alpha1.RawArtifact' recurseMode: description: If mode is set, apply the permission recursively into the artifact if it is a folder type: boolean s3: description: S3 contains S3 artifact location details $ref: '#/definitions/io.argoproj.workflow.v1alpha1.S3Artifact' subPath: description: SubPath allows an artifact to be sourced from a subpath within the specified source type: string io.k8s.api.core.v1.SleepAction: description: SleepAction describes a "sleep" action. type: object required: - seconds properties: seconds: description: Seconds is the number of seconds to sleep. type: integer io.argoproj.workflow.v1alpha1.HTTPArtifact: description: HTTPArtifact allows a file served on HTTP to be placed as an input artifact in a container type: object required: - url properties: auth: description: Auth contains information for client authentication $ref: '#/definitions/io.argoproj.workflow.v1alpha1.HTTPAuth' headers: description: Headers are an optional list of headers to send with HTTP requests for artifacts type: array items: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Header' url: description: URL of the artifact type: string io.k8s.api.core.v1.SeccompProfile: description: SeccompProfile defines a pod/container's seccomp profile settings. Only one profile source may be set. type: object required: - type properties: localhostProfile: description: 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 be set if type is "Localhost". Must NOT be set for any other type. type: string type: description: '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.' type: string x-kubernetes-unions: - discriminator: type fields-to-discriminateBy: localhostProfile: LocalhostProfile io.argoproj.workflow.v1alpha1.Template: description: Template is a reusable and composable unit of execution in a workflow type: object properties: activeDeadlineSeconds: description: Optional duration in seconds relative to the StartTime that the pod may be active on a node before the system actively tries to terminate the pod; value must be positive integer This field is only applicable to container and script templates. $ref: '#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString' affinity: description: Affinity sets the pod's scheduling constraints Overrides the affinity set at the workflow level (if any) $ref: '#/definitions/io.k8s.api.core.v1.Affinity' annotations: description: Annotations is a list of annotations to add to the template at runtime type: object additionalProperties: type: string archiveLocation: description: Location in which all files related to the step will be stored (logs, artifacts, etc...). Can be overridden by individual items in Outputs. If omitted, will use the default artifact repository location configured in the controller, appended with the / in the key. $ref: '#/definitions/io.argoproj.workflow.v1alpha1.ArtifactLocation' automountServiceAccountToken: description: AutomountServiceAccountToken indicates whether a service account token should be automatically mounted in pods. ServiceAccountName of ExecutorConfig must be specified if this value is false. type: boolean container: description: Container is the main container image to run in the pod $ref: '#/definitions/io.k8s.api.core.v1.Container' containerSet: description: ContainerSet groups multiple containers within a single pod. $ref: '#/definitions/io.argoproj.workflow.v1alpha1.ContainerSetTemplate' daemon: description: Daemon will allow a workflow to proceed to the next step so long as the container reaches readiness type: boolean dag: description: DAG template subtype which runs a DAG $ref: '#/definitions/io.argoproj.workflow.v1alpha1.DAGTemplate' data: description: Data is a data template $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Data' executor: description: Executor holds configurations of the executor container. $ref: '#/definitions/io.argoproj.workflow.v1alpha1.ExecutorConfig' failFast: description: FailFast, if specified, will fail this template if any of its child pods has failed. This is useful for when this template is expanded with `withItems`, etc. type: boolean hostAliases: description: HostAliases is an optional list of hosts and IPs that will be injected into the pod spec type: array items: $ref: '#/definitions/io.k8s.api.core.v1.HostAlias' x-kubernetes-patch-merge-key: ip x-kubernetes-patch-strategy: merge http: description: HTTP makes a HTTP request $ref: '#/definitions/io.argoproj.workflow.v1alpha1.HTTP' initContainers: description: InitContainers is a list of containers which run before the main container. type: array items: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.UserContainer' x-kubernetes-patch-merge-key: name x-kubernetes-patch-strategy: merge inputs: description: Inputs describe what inputs parameters and artifacts are supplied to this template $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Inputs' memoize: description: Memoize allows templates to use outputs generated from already executed templates $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Memoize' metadata: description: Metadata sets the pods's metadata, i.e. annotations and labels $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Metadata' metrics: description: Metrics are a list of metrics emitted from this template $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Metrics' name: description: Name is the name of the template type: string nodeSelector: description: NodeSelector is a selector to schedule this step of the workflow to be run on the selected node(s). Overrides the selector set at the workflow level. type: object additionalProperties: type: string outputs: description: Outputs describe the parameters and artifacts that this template produces $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Outputs' parallelism: description: Parallelism limits the max total parallel pods that can execute at the same time within the boundaries of this template invocation. If additional steps/dag templates are invoked, the pods created by those templates will not be counted towards this total. type: integer plugin: description: 'Plugin is a plugin template Note: the structure of a plugin template is free-form, so we need to have "x-kubernetes-preserve-unknown-fields: true" in the validation schema.' $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Plugin' podSpecPatch: description: PodSpecPatch holds strategic merge patch to apply against the pod spec. Allows parameterization of container fields which are not strings (e.g. resource limits). type: string priorityClassName: description: PriorityClassName to apply to workflow pods. type: string resource: description: Resource template subtype which can run k8s resources $ref: '#/definitions/io.argoproj.workflow.v1alpha1.ResourceTemplate' retryStrategy: description: RetryStrategy describes how to retry a template when it fails $ref: '#/definitions/io.argoproj.workflow.v1alpha1.RetryStrategy' schedulerName: description: If specified, the pod will be dispatched by specified scheduler. Or it will be dispatched by workflow scope scheduler if specified. If neither specified, the pod will be dispatched by default scheduler. type: string script: description: Script runs a portion of code against an interpreter $ref: '#/definitions/io.argoproj.workflow.v1alpha1.ScriptTemplate' securityContext: description: 'SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field.' $ref: '#/definitions/io.k8s.api.core.v1.PodSecurityContext' serviceAccountName: description: ServiceAccountName to apply to workflow pods type: string sidecars: description: Sidecars is a list of containers which run alongside the main container Sidecars are automatically killed when the main container completes type: array items: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.UserContainer' x-kubernetes-patch-merge-key: name x-kubernetes-patch-strategy: merge steps: description: Steps define a series of sequential/parallel workflow steps type: array items: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.ParallelSteps' suspend: description: Suspend template subtype which can suspend a workflow when reaching the step $ref: '#/definitions/io.argoproj.workflow.v1alpha1.SuspendTemplate' synchronization: description: Synchronization holds synchronization lock configuration for this template $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Synchronization' timeout: description: Timeout allows to set the total node execution timeout duration counting from the node's start time. This duration also includes time in which the node spends in Pending state. This duration may not be applied to Step or DAG templates. type: string tolerations: description: Tolerations to apply to workflow pods. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.Toleration' x-kubernetes-patch-merge-key: key x-kubernetes-patch-strategy: merge volumes: description: Volumes is a list of volumes that can be mounted by containers in a template. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.Volume' x-kubernetes-patch-merge-key: name x-kubernetes-patch-strategy: merge io.k8s.api.core.v1.VolumeDevice: description: volumeDevice describes a mapping of a raw block device within a container. type: object required: - name - devicePath properties: devicePath: description: devicePath is the path inside of the container that the device will be mapped to. type: string name: description: name must match the name of a persistentVolumeClaim in the pod type: string io.k8s.api.core.v1.GlusterfsVolumeSource: description: Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling. type: object required: - endpoints - path properties: endpoints: description: endpoints is the endpoint name that details Glusterfs topology. type: string path: description: 'path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod' type: string readOnly: description: 'readOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod' type: boolean io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelectorRequirement: description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. type: object required: - key - operator properties: key: description: key is the label key that the selector applies to. type: string operator: description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. type: string values: description: 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. type: array items: type: string x-kubernetes-list-type: atomic io.argoproj.workflow.v1alpha1.HTTP: type: object required: - url properties: body: description: Body is content of the HTTP Request type: string bodyFrom: description: BodyFrom is content of the HTTP Request as Bytes $ref: '#/definitions/io.argoproj.workflow.v1alpha1.HTTPBodySource' headers: description: Headers are an optional list of headers to send with HTTP requests type: array items: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.HTTPHeader' insecureSkipVerify: description: InsecureSkipVerify is a bool when if set to true will skip TLS verification for the HTTP client type: boolean method: description: Method is HTTP methods for HTTP Request type: string successCondition: description: SuccessCondition is an expression if evaluated to true is considered successful type: string timeoutSeconds: description: TimeoutSeconds is request timeout for HTTP Request. Default is 30 seconds type: integer url: description: URL of the HTTP Request type: string io.k8s.api.core.v1.ExecAction: description: ExecAction describes a "run in container" action. type: object properties: command: description: 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. type: array items: type: string x-kubernetes-list-type: atomic io.argoproj.workflow.v1alpha1.CreateS3BucketOptions: description: CreateS3BucketOptions options used to determine automatic automatic bucket-creation process type: object properties: objectLocking: description: ObjectLocking Enable object locking type: boolean io.argoproj.workflow.v1alpha1.MetricLabel: description: MetricLabel is a single label for a prometheus metric type: object required: - key - value properties: key: type: string value: type: string io.argoproj.workflow.v1alpha1.WorkflowTemplateUpdateRequest: type: object properties: name: description: 'DEPRECATED: This field is ignored.' type: string namespace: type: string template: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.WorkflowTemplate' io.k8s.api.core.v1.ConfigMapEnvSource: description: '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.' type: object properties: name: description: 'Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' type: string optional: description: Specify whether the ConfigMap must be defined type: boolean io.k8s.api.core.v1.Toleration: description: The pod this Toleration is attached to tolerates any taint that matches the triple using the matching operator . type: object properties: effect: description: Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute. type: string key: description: Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys. type: string operator: description: Operator represents a key's relationship to the value. Valid operators are Exists, Equal, Lt, and Gt. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category. Lt and Gt perform numeric comparisons (requires feature gate TaintTolerationComparisonOperators). type: string tolerationSeconds: description: TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system. type: integer value: description: Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string. type: string io.argoproj.workflow.v1alpha1.ExecutorConfig: description: ExecutorConfig holds configurations of an executor container. type: object properties: serviceAccountName: description: ServiceAccountName specifies the service account name of the executor container. type: string io.k8s.api.core.v1.ProjectedVolumeSource: description: Represents a projected volume source type: object properties: defaultMode: description: defaultMode are the mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set. type: integer sources: description: sources is the list of volume projections. Each entry in this list handles one source. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.VolumeProjection' x-kubernetes-list-type: atomic io.argoproj.workflow.v1alpha1.HTTPBodySource: description: HTTPBodySource contains the source of the HTTP body. type: object properties: bytes: type: string format: byte io.k8s.api.core.v1.HostAlias: description: HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file. type: object required: - ip properties: hostnames: description: Hostnames for the above IP address. type: array items: type: string x-kubernetes-list-type: atomic ip: description: IP address of the host file entry. type: string io.k8s.api.core.v1.ContainerPort: description: ContainerPort represents a network port in a single container. type: object required: - containerPort properties: containerPort: description: Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536. type: integer hostIP: description: What host IP to bind the external port to. type: string hostPort: description: 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. type: integer name: description: 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. type: string protocol: description: Protocol for port. Must be UDP, TCP, or SCTP. Defaults to "TCP". type: string io.k8s.api.core.v1.DownwardAPIVolumeFile: description: DownwardAPIVolumeFile represents information to create the file containing the pod field type: object required: - path properties: fieldRef: description: 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported.' $ref: '#/definitions/io.k8s.api.core.v1.ObjectFieldSelector' mode: description: 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' type: integer path: description: 'Required: Path is the relative path name of the file to be created. Must not be absolute or contain the ''..'' path. Must be utf-8 encoded. The first item of the relative path must not start with ''..''' type: string resourceFieldRef: description: 'Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.' $ref: '#/definitions/io.k8s.api.core.v1.ResourceFieldSelector' io.k8s.api.core.v1.GitRepoVolumeSource: description: 'Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod''s container.' type: object required: - repository properties: directory: description: directory is the target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name. type: string repository: description: repository is the URL type: string revision: description: revision is the commit hash for the specified revision. type: string io.argoproj.workflow.v1alpha1.HTTPHeaderSource: type: object properties: secretKeyRef: $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' io.k8s.api.core.v1.PersistentVolumeClaimCondition: description: PersistentVolumeClaimCondition contains details about state of pvc type: object required: - type - status properties: lastProbeTime: description: lastProbeTime is the time we probed the condition. $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time' lastTransitionTime: description: lastTransitionTime is the time the condition transitioned from one status to another. $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time' message: description: message is the human-readable message indicating details about last transition. type: string reason: description: reason is a unique, this should be a short, machine understandable string that gives the reason for condition's last transition. If it reports "Resizing" that means the underlying persistent volume is being resized. type: string status: description: 'Status is the status of the condition. Can be True, False, Unknown. More info: https://kubernetes.io/docs/reference/kubernetes-api/config-and-storage-resources/persistent-volume-claim-v1/#:~:text=state%20of%20pvc-,conditions.status,-(string)%2C%20required' type: string type: description: 'Type is the type of the condition. More info: https://kubernetes.io/docs/reference/kubernetes-api/config-and-storage-resources/persistent-volume-claim-v1/#:~:text=set%20to%20%27ResizeStarted%27.-,PersistentVolumeClaimCondition,-contains%20details%20about' type: string io.k8s.api.core.v1.VolumeResourceRequirements: description: VolumeResourceRequirements describes the storage resource requirements for a volume. type: object properties: limits: description: 'Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' type: object additionalProperties: $ref: '#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity' requests: description: '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. Requests cannot exceed Limits. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' type: object additionalProperties: $ref: '#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity' io.argoproj.workflow.v1alpha1.WorkflowTemplateList: description: WorkflowTemplateList is list of WorkflowTemplate resources type: object required: - metadata - items properties: apiVersion: description: '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.io.k8s.community/contributors/devel/sig-architecture/api-conventions.md#resources' type: string items: type: array items: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.WorkflowTemplate' kind: description: '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.io.k8s.community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' type: string metadata: $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta' io.argoproj.workflow.v1alpha1.DAGTask: description: 'DAGTask represents a node in the graph during DAG execution Note: CEL validation cannot check withItems (Schemaless) or inline (PreserveUnknownFields) fields.' type: object required: - name properties: arguments: description: Arguments are the parameter and artifact arguments to the template $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Arguments' continueOn: description: ContinueOn makes argo to proceed with the following step even if this step fails. Errors and Failed states can be specified $ref: '#/definitions/io.argoproj.workflow.v1alpha1.ContinueOn' dependencies: description: Dependencies are name of other targets which this depends on type: array items: type: string depends: description: Depends are name of other targets which this depends on type: string hooks: description: Hooks hold the lifecycle hook which is invoked at lifecycle of task, irrespective of the success, failure, or error status of the primary task type: object additionalProperties: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.LifecycleHook' inline: description: 'Inline is the template. Template must be empty if this is declared (and vice-versa). Note: As mentioned in the corresponding definition in WorkflowStep, this struct is defined recursively, so we need "x-kubernetes-preserve-unknown-fields: true" in the validation schema.' $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Template' name: description: Name is the name of the target type: string onExit: description: 'OnExit is a template reference which is invoked at the end of the template, irrespective of the success, failure, or error of the primary template. Deprecated: Use Hooks[exit].Template instead.' type: string template: description: Name of template to execute type: string templateRef: description: TemplateRef is the reference to the template resource to execute. $ref: '#/definitions/io.argoproj.workflow.v1alpha1.TemplateRef' when: description: When is an expression in which the task should conditionally execute type: string withItems: description: 'WithItems expands a task into multiple parallel tasks from the items in the list Note: The structure of WithItems is free-form, so we need "x-kubernetes-preserve-unknown-fields: true" in the validation schema.' type: array items: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Item' withParam: description: WithParam expands a task into multiple parallel tasks from the value in the parameter, which is expected to be a JSON list. type: string withSequence: description: WithSequence expands a task into a numeric sequence $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Sequence' io.argoproj.workflow.v1alpha1.Cache: description: Cache is the configuration for the type of cache to be used type: object required: - configMap properties: configMap: description: ConfigMap sets a ConfigMap-based cache $ref: '#/definitions/io.k8s.api.core.v1.LocalObjectReference' io.k8s.api.core.v1.PodCertificateProjection: description: PodCertificateProjection provides a private key and X.509 certificate in the pod filesystem. type: object required: - signerName - keyType properties: certificateChainPath: description: 'Write the certificate chain at this path in the projected volume. Most applications should use credentialBundlePath. When using keyPath and certificateChainPath, your application needs to check that the key and leaf certificate are consistent, because it is possible to read the files mid-rotation.' type: string credentialBundlePath: description: 'Write the credential bundle at this path in the projected volume. The credential bundle is a single file that contains multiple PEM blocks. The first PEM block is a PRIVATE KEY block, containing a PKCS#8 private key. The remaining blocks are CERTIFICATE blocks, containing the issued certificate chain from the signer (leaf and any intermediates). Using credentialBundlePath lets your Pod''s application code make a single atomic read that retrieves a consistent key and certificate chain. If you project them to separate files, your application code will need to additionally check that the leaf certificate was issued to the key.' type: string keyPath: description: 'Write the key at this path in the projected volume. Most applications should use credentialBundlePath. When using keyPath and certificateChainPath, your application needs to check that the key and leaf certificate are consistent, because it is possible to read the files mid-rotation.' type: string keyType: description: 'The type of keypair Kubelet will generate for the pod. Valid values are "RSA3072", "RSA4096", "ECDSAP256", "ECDSAP384", "ECDSAP521", and "ED25519".' type: string maxExpirationSeconds: description: 'maxExpirationSeconds is the maximum lifetime permitted for the certificate. Kubelet copies this value verbatim into the PodCertificateRequests it generates for this projection. If omitted, kube-apiserver will set it to 86400(24 hours). kube-apiserver will reject values shorter than 3600 (1 hour). The maximum allowable value is 7862400 (91 days). The signer implementation is then free to issue a certificate with any lifetime *shorter* than MaxExpirationSeconds, but no shorter than 3600 seconds (1 hour). This constraint is enforced by kube-apiserver. `kubernetes.io` signers will never issue certificates with a lifetime longer than 24 hours.' type: integer signerName: description: Kubelet's generated CSRs will be addressed to this signer. type: string userAnnotations: description: 'userAnnotations allow pod authors to pass additional information to the signer implementation. Kubernetes does not restrict or validate this metadata in any way. These values are copied verbatim into the `spec.unverifiedUserAnnotations` field of the PodCertificateRequest objects that Kubelet creates. Entries are subject to the same validation as object metadata annotations, with the addition that all keys must be domain-prefixed. No restrictions are placed on values, except an overall size limitation on the entire field. Signers should document the keys and values they support. Signers should deny requests that contain keys they do not recognize.' type: object additionalProperties: type: string io.k8s.api.core.v1.NodeSelectorRequirement: description: A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values. type: object required: - key - operator properties: key: description: The label key that the selector applies to. type: string operator: description: Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. type: string values: description: 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. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. type: array items: type: string x-kubernetes-list-type: atomic io.argoproj.workflow.v1alpha1.SemaphoreRef: description: SemaphoreRef is a reference of Semaphore type: object properties: configMapKeyRef: description: ConfigMapKeyRef is a configmap selector for Semaphore configuration $ref: '#/definitions/io.k8s.api.core.v1.ConfigMapKeySelector' database: description: SyncDatabaseRef is a database reference for Semaphore configuration $ref: '#/definitions/io.argoproj.workflow.v1alpha1.SyncDatabaseRef' namespace: description: 'Namespace is the namespace of the configmap, default: [namespace of workflow]' type: string io.k8s.apimachinery.pkg.apis.meta.v1.ManagedFieldsEntry: description: ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to. type: object properties: apiVersion: description: 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. type: string fieldsType: description: 'FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: "FieldsV1"' type: string fieldsV1: description: FieldsV1 holds the first JSON version format as described in the "FieldsV1" type. $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1' manager: description: Manager is an identifier of the workflow managing these fields. type: string operation: description: Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'. type: string subresource: description: 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. type: string time: description: Time is the timestamp of when the ManagedFields entry was added. The timestamp will also be updated if a field is added, the manager changes any of the owned fields value or removes a field. The timestamp does not update when a field is removed from the entry because another manager took it over. $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time' io.argoproj.workflow.v1alpha1.AzureArtifact: description: AzureArtifact is the location of an Azure Storage artifact type: object required: - endpoint - container - blob properties: accountKeySecret: description: AccountKeySecret is the secret selector to the Azure Blob Storage account access key $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' blob: description: Blob is the blob name (i.e., path) in the container where the artifact resides type: string container: description: Container is the container where resources will be stored type: string endpoint: description: Endpoint is the service url associated with an account. It is most likely "https://.blob.core.windows.net" type: string useSDKCreds: description: UseSDKCreds tells the driver to figure out credentials based on sdk defaults. type: boolean io.argoproj.workflow.v1alpha1.ContinueOn: description: ContinueOn defines if a workflow should continue even if a task or step fails/errors. It can be specified if the workflow should continue when the pod errors, fails or both. type: object properties: error: type: boolean failed: type: boolean io.k8s.api.core.v1.EnvVarSource: description: EnvVarSource represents a source for the value of an EnvVar. type: object properties: configMapKeyRef: description: Selects a key of a ConfigMap. $ref: '#/definitions/io.k8s.api.core.v1.ConfigMapKeySelector' fieldRef: description: 'Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['''']`, `metadata.annotations['''']`, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.' $ref: '#/definitions/io.k8s.api.core.v1.ObjectFieldSelector' fileKeyRef: description: FileKeyRef selects a key of the env file. Requires the EnvFiles feature gate to be enabled. $ref: '#/definitions/io.k8s.api.core.v1.FileKeySelector' resourceFieldRef: description: 'Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.' $ref: '#/definitions/io.k8s.api.core.v1.ResourceFieldSelector' secretKeyRef: description: Selects a key of a secret in the pod's namespace $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' io.k8s.api.core.v1.RBDVolumeSource: description: Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling. type: object required: - monitors - image properties: fsType: description: 'fsType is the filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd' type: string image: description: 'image is the rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' type: string keyring: description: 'keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' type: string monitors: description: 'monitors is a collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' type: array items: type: string x-kubernetes-list-type: atomic pool: description: 'pool is the rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' type: string readOnly: description: 'readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' type: boolean secretRef: description: 'secretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' $ref: '#/definitions/io.k8s.api.core.v1.LocalObjectReference' user: description: 'user is the rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it' type: string io.k8s.api.core.v1.HTTPGetAction: description: HTTPGetAction describes an action based on HTTP Get requests. type: object required: - port properties: host: description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. type: string httpHeaders: description: Custom headers to set in the request. HTTP allows repeated headers. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.HTTPHeader' x-kubernetes-list-type: atomic path: description: Path to access on the HTTP server. type: string port: description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. $ref: '#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString' scheme: description: Scheme to use for connecting to the host. Defaults to HTTP. type: string io.argoproj.workflow.v1alpha1.Sequence: description: Sequence expands a workflow step into numeric range type: object properties: count: description: 'Count is number of elements in the sequence (default: 0). Not to be used with end' $ref: '#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString' end: description: 'Number at which to end the sequence (default: 0). Not to be used with Count' $ref: '#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString' format: description: Format is a printf format string to format the value in the sequence type: string start: description: 'Number at which to start the sequence (default: 0)' $ref: '#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString' io.k8s.api.core.v1.Container: description: A single application container that you want to run within a pod. type: object required: - image properties: args: description: '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' type: array items: type: string x-kubernetes-list-type: atomic command: description: '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' type: array items: type: string x-kubernetes-list-type: atomic env: description: List of environment variables to set in the container. Cannot be updated. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.EnvVar' x-kubernetes-list-map-keys: - name x-kubernetes-list-type: map x-kubernetes-patch-merge-key: name x-kubernetes-patch-strategy: merge envFrom: description: List of sources to populate environment variables in the container. The keys defined within a source may consist of any printable ASCII characters except '='. 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. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.EnvFromSource' x-kubernetes-list-type: atomic image: description: '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.' type: string imagePullPolicy: description: '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' type: string lifecycle: description: Actions that the management system should take in response to container lifecycle events. Cannot be updated. $ref: '#/definitions/io.k8s.api.core.v1.Lifecycle' livenessProbe: description: 'Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' $ref: '#/definitions/io.k8s.api.core.v1.Probe' name: description: Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated. type: string ports: description: List of ports to expose from the container. 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. Modifying this array with strategic merge patch may corrupt the data. For more information See https://github.com/kubernetes/kubernetes/issues/108255. Cannot be updated. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.ContainerPort' x-kubernetes-list-map-keys: - containerPort - protocol x-kubernetes-list-type: map x-kubernetes-patch-merge-key: containerPort x-kubernetes-patch-strategy: merge readinessProbe: description: 'Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' $ref: '#/definitions/io.k8s.api.core.v1.Probe' resizePolicy: description: Resources resize policy for the container. This field cannot be set on ephemeral containers. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.ContainerResizePolicy' x-kubernetes-list-type: atomic resources: description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' $ref: '#/definitions/io.k8s.api.core.v1.ResourceRequirements' restartPolicy: description: 'RestartPolicy defines the restart behavior of individual containers in a pod. This overrides the pod-level restart policy. When this field is not specified, the restart behavior is defined by the Pod''s restart policy and the container type. Additionally, setting the RestartPolicy as "Always" for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated. Once all regular containers have completed, all init containers with restartPolicy "Always" will be shut down. This lifecycle differs from normal init containers and is often referred to as a "sidecar" container. Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container. Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed.' type: string restartPolicyRules: description: 'Represents a list of rules to be checked to determine if the container should be restarted on exit. The rules are evaluated in order. Once a rule matches a container exit condition, the remaining rules are ignored. If no rule matches the container exit condition, the Container-level restart policy determines the whether the container is restarted or not. Constraints on the rules: - At most 20 rules are allowed. - Rules can have the same action. - Identical rules are not forbidden in validations. When rules are specified, container MUST set RestartPolicy explicitly even it if matches the Pod''s RestartPolicy.' type: array items: $ref: '#/definitions/io.k8s.api.core.v1.ContainerRestartRule' x-kubernetes-list-type: atomic securityContext: description: 'SecurityContext defines the security options the container should be run with. If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext. More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/' $ref: '#/definitions/io.k8s.api.core.v1.SecurityContext' startupProbe: description: 'StartupProbe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. This can be used to provide different probe parameters at the beginning of a Pod''s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' $ref: '#/definitions/io.k8s.api.core.v1.Probe' stdin: description: 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. type: boolean stdinOnce: description: 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 type: boolean terminationMessagePath: description: '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.' type: string terminationMessagePolicy: description: 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. type: string tty: description: Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false. type: boolean volumeDevices: description: volumeDevices is the list of block devices to be used by the container. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.VolumeDevice' x-kubernetes-list-map-keys: - devicePath x-kubernetes-list-type: map x-kubernetes-patch-merge-key: devicePath x-kubernetes-patch-strategy: merge volumeMounts: description: Pod volumes to mount into the container's filesystem. Cannot be updated. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.VolumeMount' x-kubernetes-list-map-keys: - mountPath x-kubernetes-list-type: map x-kubernetes-patch-merge-key: mountPath x-kubernetes-patch-strategy: merge workingDir: description: 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. type: string io.k8s.api.core.v1.PodDNSConfigOption: description: PodDNSConfigOption defines DNS resolver options of a pod. type: object properties: name: description: Name is this DNS resolver option's name. Required. type: string value: description: Value is this DNS resolver option's value. type: string io.k8s.api.core.v1.Affinity: description: Affinity is a group of affinity scheduling rules. type: object properties: nodeAffinity: description: Describes node affinity scheduling rules for the pod. $ref: '#/definitions/io.k8s.api.core.v1.NodeAffinity' podAffinity: description: Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)). $ref: '#/definitions/io.k8s.api.core.v1.PodAffinity' podAntiAffinity: description: Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)). $ref: '#/definitions/io.k8s.api.core.v1.PodAntiAffinity' io.argoproj.workflow.v1alpha1.Gauge: description: Gauge is a Gauge prometheus metric type: object required: - value - realtime properties: operation: description: Operation defines the operation to apply with value and the metrics' current value type: string realtime: description: Realtime emits this metric in real time if applicable type: boolean value: description: Value is the value to be used in the operation with the metric's current value. If no operation is set, value is the value of the metric MaxLength is an artificial limit to limit CEL validation costs - see note at top of file type: string io.argoproj.workflow.v1alpha1.OAuth2EndpointParam: description: OAuth2EndpointParam is an optional field that should be sent in the OAuth request. type: object required: - key properties: key: description: Name is the header name type: string value: description: Value is the literal value to use for the header type: string io.k8s.api.core.v1.SecretVolumeSource: description: 'Adapts a Secret into a volume. The contents of the target Secret''s Data field will be presented in a volume as files using the keys in the Data field as the file names. Secret volumes support ownership management and SELinux relabeling.' type: object properties: defaultMode: description: 'defaultMode is Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.' type: integer items: description: items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.KeyToPath' x-kubernetes-list-type: atomic optional: description: optional field specify whether the Secret or its keys must be defined type: boolean secretName: description: 'secretName is the name of the secret in the pod''s namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret' type: string io.k8s.api.core.v1.ImageVolumeSource: description: ImageVolumeSource represents a image volume resource. type: object properties: pullPolicy: description: 'Policy for pulling OCI objects. Possible values are: Always: the kubelet always attempts to pull the reference. Container creation will fail If the pull fails. Never: the kubelet never pulls the reference and only uses a local image or artifact. Container creation will fail if the reference isn''t present. IfNotPresent: the kubelet pulls if the reference isn''t already present on disk. Container creation will fail if the reference isn''t present and the pull fails. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise.' type: string reference: description: 'Required: Image or artifact reference to be used. Behaves in the same way as pod.spec.containers[*].image. Pull secrets will be assembled in the same way as for the container image by looking up node credentials, SA image pull secrets, and pod spec image pull secrets. 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.' type: string io.argoproj.workflow.v1alpha1.ParallelSteps: type: array items: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.WorkflowStep' io.k8s.api.core.v1.LocalObjectReference: description: LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace. type: object properties: name: description: 'Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' type: string x-kubernetes-map-type: atomic io.argoproj.workflow.v1alpha1.Counter: description: Counter is a Counter prometheus metric type: object required: - value properties: value: description: Value is the value of the metric type: string io.argoproj.workflow.v1alpha1.ArtifactGC: description: ArtifactGC describes how to delete artifacts from completed Workflows - this is embedded into the WorkflowLevelArtifactGC, and also used for individual Artifacts to override that as needed type: object properties: podMetadata: description: PodMetadata is an optional field for specifying the Labels and Annotations that should be assigned to the Pod doing the deletion $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Metadata' serviceAccountName: description: ServiceAccountName is an optional field for specifying the Service Account that should be assigned to the Pod doing the deletion type: string strategy: description: Strategy is the strategy to use. type: string io.k8s.apimachinery.pkg.api.resource.Quantity: description: "Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and AsInt64() accessors.\n\nThe serialization format is:\n\n``` ::= \n\n\t(Note that may be empty, from the \"\" case in .)\n\n ::= 0 | 1 | ... | 9 ::= | ::= | . | . | . ::= \"+\" | \"-\" ::= | ::= | | ::= Ki | Mi | Gi | Ti | Pi | Ei\n\n\t(International System of units; See: http://physics.nist.gov/cuu/Units/binary.html)\n\n ::= m | \"\" | k | M | G | T | P | E\n\n\t(Note that 1024 = 1Ki but 1000 = 1k; I didn't choose the capitalization.)\n\n ::= \"e\" | \"E\" ```\n\nNo matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities.\n\nWhen a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again when it is serialized.\n\nBefore serializing, Quantity will be put in \"canonical form\". This means that Exponent/suffix will be adjusted up or down (with a corresponding increase or decrease in Mantissa) such that:\n\n- No precision is lost - No fractional digits will be emitted - The exponent (or suffix) is as large as possible.\n\nThe sign will be omitted unless the number is negative.\n\nExamples:\n\n- 1.5 will be serialized as \"1500m\" - 1.5Gi will be serialized as \"1536Mi\"\n\nNote that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise.\n\nNon-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don't diff.)\n\nThis format is intended to make it difficult to use these numbers without writing some sort of special handling code in the hopes that that will cause implementors to also use a fixed point implementation." type: string google.protobuf.Any: type: object properties: type_url: type: string value: type: string format: byte io.argoproj.workflow.v1alpha1.DAGTemplate: description: DAGTemplate is a template subtype for directed acyclic graph templates type: object required: - tasks properties: failFast: description: This flag is for DAG logic. The DAG logic has a built-in "fail fast" feature to stop scheduling new steps, as soon as it detects that one of the DAG nodes is failed. Then it waits until all DAG nodes are completed before failing the DAG itself. The FailFast flag default is true, if set to false, it will allow a DAG to run all branches of the DAG to completion (either success or failure), regardless of the failed outcomes of branches in the DAG. More info and example about this feature at https://github.com/argoproj/argo-workflows/issues/1442 type: boolean target: description: Target are one or more names of targets to execute in a DAG type: string tasks: description: Tasks are a list of DAG tasks MaxItems is an artificial limit to limit CEL validation costs - see note at top of file type: array items: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.DAGTask' x-kubernetes-patch-merge-key: name x-kubernetes-patch-strategy: merge io.argoproj.workflow.v1alpha1.Memoize: description: Memoize enables caching for the Outputs of the template. type: object required: - key - cache - maxAge properties: cache: description: Cache sets and configures the kind of cache $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Cache' key: description: Key is the key to use as the caching key type: string maxAge: description: MaxAge is the maximum age (e.g. "180s", "24h") of an entry that is still considered valid. If an entry is older than the MaxAge, it will be ignored. type: string io.k8s.api.core.v1.AzureDiskVolumeSource: description: AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. type: object required: - diskName - diskURI properties: cachingMode: description: 'cachingMode is the Host Caching mode: None, Read Only, Read Write.' type: string diskName: description: diskName is the Name of the data disk in the blob storage type: string diskURI: description: diskURI is the URI of data disk in the blob storage type: string fsType: description: fsType is Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. type: string kind: description: 'kind expected values are Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared' type: string readOnly: description: readOnly Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. type: boolean io.argoproj.workflow.v1alpha1.RawArtifact: description: RawArtifact allows raw string content to be placed as an artifact in a container type: object required: - data properties: data: description: Data is the string contents of the artifact type: string io.k8s.api.core.v1.SecretKeySelector: description: SecretKeySelector selects a key of a Secret. type: object required: - key properties: key: description: The key of the secret to select from. Must be a valid secret key. type: string name: description: 'Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names' type: string optional: description: Specify whether the Secret or its key must be defined type: boolean x-kubernetes-map-type: atomic io.k8s.api.core.v1.SELinuxOptions: description: SELinuxOptions are the labels to be applied to the container type: object properties: level: description: Level is SELinux level label that applies to the container. type: string role: description: Role is a SELinux role label that applies to the container. type: string type: description: Type is a SELinux type label that applies to the container. type: string user: description: User is a SELinux user label that applies to the container. type: string io.k8s.api.core.v1.NodeSelectorTerm: description: 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. type: object properties: matchExpressions: description: A list of node selector requirements by node's labels. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.NodeSelectorRequirement' x-kubernetes-list-type: atomic matchFields: description: A list of node selector requirements by node's fields. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.NodeSelectorRequirement' x-kubernetes-list-type: atomic x-kubernetes-map-type: atomic io.argoproj.workflow.v1alpha1.RetryStrategy: description: RetryStrategy provides controls on how to retry a workflow step type: object properties: affinity: description: Affinity prevents running workflow's step on the same host $ref: '#/definitions/io.argoproj.workflow.v1alpha1.RetryAffinity' backoff: description: Backoff is a backoff strategy $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Backoff' expression: description: Expression is a condition expression for when a node will be retried. If it evaluates to false, the node will not be retried and the retry strategy will be ignored type: string limit: description: Limit is the maximum number of retry attempts when retrying a container. It does not include the original container; the maximum number of total attempts will be `limit + 1`. $ref: '#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString' retryPolicy: description: RetryPolicy is a policy of NodePhase statuses that will be retried type: string io.argoproj.workflow.v1alpha1.WorkflowTemplateLintRequest: type: object properties: createOptions: $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.CreateOptions' namespace: type: string template: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.WorkflowTemplate' io.argoproj.workflow.v1alpha1.ArtifactPaths: description: ArtifactPaths expands a step from a collection of artifacts type: object required: - name properties: archive: description: Archive controls how the artifact will be saved to the artifact repository. $ref: '#/definitions/io.argoproj.workflow.v1alpha1.ArchiveStrategy' archiveLogs: description: ArchiveLogs indicates if the container logs should be archived type: boolean artifactGC: description: ArtifactGC describes the strategy to use when to deleting an artifact from completed or deleted workflows $ref: '#/definitions/io.argoproj.workflow.v1alpha1.ArtifactGC' artifactory: description: Artifactory contains artifactory artifact location details $ref: '#/definitions/io.argoproj.workflow.v1alpha1.ArtifactoryArtifact' azure: description: Azure contains Azure Storage artifact location details $ref: '#/definitions/io.argoproj.workflow.v1alpha1.AzureArtifact' deleted: description: Has this been deleted? type: boolean from: description: From allows an artifact to reference an artifact from a previous step type: string fromExpression: description: FromExpression, if defined, is evaluated to specify the value for the artifact type: string gcs: description: GCS contains GCS artifact location details $ref: '#/definitions/io.argoproj.workflow.v1alpha1.GCSArtifact' git: description: Git contains git artifact location details $ref: '#/definitions/io.argoproj.workflow.v1alpha1.GitArtifact' globalName: description: GlobalName exports an output artifact to the global scope, making it available as '{{io.argoproj.workflow.v1alpha1.outputs.artifacts.XXXX}} and in workflow.status.outputs.artifacts type: string hdfs: description: HDFS contains HDFS artifact location details $ref: '#/definitions/io.argoproj.workflow.v1alpha1.HDFSArtifact' http: description: HTTP contains HTTP artifact location details $ref: '#/definitions/io.argoproj.workflow.v1alpha1.HTTPArtifact' mode: description: mode bits to use on this file, must be a value between 0 and 0777. Set when loading input artifacts. It is recommended to set the mode value to ensure the artifact has the expected permissions in your container. type: integer name: description: name of the artifact. must be unique within a template's inputs/outputs. type: string optional: description: Make Artifacts optional, if Artifacts doesn't generate or exist type: boolean oss: description: OSS contains OSS artifact location details $ref: '#/definitions/io.argoproj.workflow.v1alpha1.OSSArtifact' path: description: Path is the container path to the artifact type: string plugin: description: Plugin contains plugin artifact location details $ref: '#/definitions/io.argoproj.workflow.v1alpha1.PluginArtifact' raw: description: Raw contains raw artifact location details $ref: '#/definitions/io.argoproj.workflow.v1alpha1.RawArtifact' recurseMode: description: If mode is set, apply the permission recursively into the artifact if it is a folder type: boolean s3: description: S3 contains S3 artifact location details $ref: '#/definitions/io.argoproj.workflow.v1alpha1.S3Artifact' subPath: description: SubPath allows an artifact to be sourced from a subpath within the specified source type: string io.argoproj.workflow.v1alpha1.BasicAuth: description: BasicAuth describes the secret selectors required for basic authentication type: object properties: passwordSecret: description: PasswordSecret is the secret selector to the repository password $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' usernameSecret: description: UsernameSecret is the secret selector to the repository username $ref: '#/definitions/io.k8s.api.core.v1.SecretKeySelector' io.argoproj.workflow.v1alpha1.Prometheus: description: Prometheus is a prometheus metric to be emitted type: object required: - name - help properties: counter: description: Counter is a counter metric $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Counter' gauge: description: Gauge is a gauge metric $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Gauge' help: description: Help is a string that describes the metric type: string histogram: description: Histogram is a histogram metric $ref: '#/definitions/io.argoproj.workflow.v1alpha1.Histogram' labels: description: Labels is a list of metric labels type: array items: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.MetricLabel' name: description: Name is the name of the metric type: string when: description: When is a conditional statement that decides when to emit the metric type: string io.argoproj.workflow.v1alpha1.NoneStrategy: description: NoneStrategy indicates to skip tar process and upload the files or directory tree as independent files. Note that if the artifact is a directory, the artifact driver must support the ability to save/load the directory appropriately. type: object io.argoproj.workflow.v1alpha1.DataSource: description: DataSource sources external data into a data template type: object properties: artifactPaths: description: ArtifactPaths is a data transformation that collects a list of artifact paths $ref: '#/definitions/io.argoproj.workflow.v1alpha1.ArtifactPaths' io.k8s.api.core.v1.QuobyteVolumeSource: description: Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling. type: object required: - registry - volume properties: group: description: group to map volume access to Default is no group type: string readOnly: description: readOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false. type: boolean registry: description: registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes type: string tenant: description: tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin type: string user: description: user to map volume access to Defaults to serivceaccount user type: string volume: description: volume is a string that references an already created Quobyte volume by name. type: string io.k8s.api.core.v1.PersistentVolumeClaimVolumeSource: description: PersistentVolumeClaimVolumeSource references the user's PVC in the same namespace. This volume finds the bound PV and mounts that volume for the pod. A PersistentVolumeClaimVolumeSource is, essentially, a wrapper around another type of volume that is owned by someone else (the system). type: object required: - claimName properties: claimName: description: 'claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims' type: string readOnly: description: readOnly Will force the ReadOnly setting in VolumeMounts. Default false. type: boolean io.k8s.api.core.v1.PodAntiAffinity: description: Pod anti affinity is a group of inter pod anti affinity scheduling rules. type: object properties: preferredDuringSchedulingIgnoredDuringExecution: description: 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 subtracting "weight" from the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.WeightedPodAffinityTerm' x-kubernetes-list-type: atomic requiredDuringSchedulingIgnoredDuringExecution: description: 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. type: array items: $ref: '#/definitions/io.k8s.api.core.v1.PodAffinityTerm' x-kubernetes-list-type: atomic io.k8s.api.core.v1.AzureFileVolumeSource: description: AzureFile represents an Azure File Service mount on the host and bind mount to the pod. type: object required: - secretName - shareName properties: readOnly: description: readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. type: boolean secretName: description: secretName is the name of secret that contains Azure Storage Account Name and Key type: string shareName: description: shareName is the azure share Name type: string io.k8s.api.core.v1.LifecycleHandler: description: 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. type: object properties: exec: description: Exec specifies a command to execute in the container. $ref: '#/definitions/io.k8s.api.core.v1.ExecAction' httpGet: description: HTTPGet specifies an HTTP GET request to perform. $ref: '#/definitions/io.k8s.api.core.v1.HTTPGetAction' sleep: description: Sleep represents a duration that the container should sleep. $ref: '#/definitions/io.k8s.api.core.v1.SleepAction' tcpSocket: description: Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept for backward compatibility. There is no validation of this field and lifecycle hooks will fail at runtime when it is specified. $ref: '#/definitions/io.k8s.api.core.v1.TCPSocketAction' io.argoproj.workflow.v1alpha1.RetryAffinity: description: RetryAffinity prevents running steps on the same host. type: object properties: nodeAntiAffinity: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.RetryNodeAntiAffinity' io.k8s.api.core.v1.PortworxVolumeSource: description: PortworxVolumeSource represents a Portworx volume resource. type: object required: - volumeID properties: fsType: description: fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs". Implicitly inferred to be "ext4" if unspecified. type: string readOnly: description: readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. type: boolean volumeID: description: volumeID uniquely identifies a Portworx volume type: string io.k8s.api.core.v1.PersistentVolumeClaim: description: PersistentVolumeClaim is a user's request for and claim to a persistent volume type: object properties: apiVersion: description: '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' type: string kind: description: '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' type: string metadata: description: 'Standard object''s metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata' $ref: '#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta' spec: description: 'spec defines the desired characteristics of a volume requested by a pod author. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims' $ref: '#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimSpec' status: description: 'status represents the current information/status of a persistent volume claim. Read-only. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims' $ref: '#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimStatus' x-kubernetes-group-version-kind: - group: '' kind: PersistentVolumeClaim version: v1 io.argoproj.workflow.v1alpha1.HTTPHeader: type: object required: - name properties: name: type: string value: type: string valueFrom: $ref: '#/definitions/io.argoproj.workflow.v1alpha1.HTTPHeaderSource' io.argoproj.workflow.v1alpha1.Header: description: Header indicate a key-value request header to be used when fetching artifacts over HTTP type: object required: - name - value properties: name: description: Name is the header name type: string value: description: Value is the literal value to use for the header type: string securityDefinitions: BearerToken: type: apiKey in: header name: Authorization description: JWT Bearer token