Hera Workflows
hera.workflows
Hera classes.
AWSElasticBlockStoreVolumeVolume
Representation of AWS elastic block store volume.
Source code in src/hera/workflows/volume.py
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
AccessMode
A representations of the volume access modes for Kubernetes.
Notes
See: access modes docs for more information.
Source code in src/hera/workflows/volume.py
read_only_many
class-attribute
instance-attribute
The volume can be mounted as read-only by many nodes
read_write_many
class-attribute
instance-attribute
The volume can be mounted as read-write by many nodes
read_write_once
class-attribute
instance-attribute
The volume can be mounted as read-write by a single node. ReadWriteOnce access mode still can allow multiple pods to access the volume when the pods are running on the same node
read_write_once_pod
class-attribute
instance-attribute
The volume can be mounted as read-write by a single Pod. Use ReadWriteOncePod access mode if you want to ensure that only one pod across whole cluster can read that PVC or write to it. This is only supported for CSI volumes and Kubernetes version 1.22+.
ArchiveStrategy
Base archive strategy model.
Source code in src/hera/workflows/archive.py
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
Artifact
Base artifact representation.
Source code in src/hera/workflows/artifact.py
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 |
|
archive_logs
class-attribute
instance-attribute
whether to log the archive object
artifact_gc
class-attribute
instance-attribute
artifact garbage collection configuration
from_expression
class-attribute
instance-attribute
an expression that dictates where to obtain the artifact from
loader
class-attribute
instance-attribute
used for input Artifact annotations for determining how to load the data.
Note: A loader value of ‘None’ must be used with an underlying type of ‘str’ or Path-like class.
mode
class-attribute
instance-attribute
mode bits to use on the artifact, must be a value between 0 and 0777 set when loading input artifacts.
optional
class-attribute
instance-attribute
whether the Artifact is optional. For an input Artifact, this means it may possibly not exist at the specified path during the template’s runtime. For an output Artifact, it may possibly not be generated during the step/task and available as an output to subsequent steps/tasks.
output
class-attribute
instance-attribute
used to specify artifact as an output in function signature annotations
path
class-attribute
instance-attribute
path where the artifact should be placed/loaded from
recurse_mode
class-attribute
instance-attribute
recursion mode when applying the permissions of the artifact if it is an artifact folder
sub_path
class-attribute
instance-attribute
allows the specification of an artifact from a subpath within the main source.
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
as_name
DEPRECATED, use with_name.
Returns a ‘built’ copy of the current artifact, renamed using the specified name
.
Source code in src/hera/workflows/artifact.py
with_name
Returns a copy of the current artifact, renamed using the specified name
.
ArtifactLoader
Enum for artifact loader options.
Source code in src/hera/workflows/artifact.py
file
class-attribute
instance-attribute
Read the contents of the Artifact file directly as a string (the target variable must be a str
type).
ArtifactoryArtifact
An artifact sourced from Artifactory.
Source code in src/hera/workflows/artifact.py
archive_logs
class-attribute
instance-attribute
whether to log the archive object
artifact_gc
class-attribute
instance-attribute
artifact garbage collection configuration
from_expression
class-attribute
instance-attribute
an expression that dictates where to obtain the artifact from
loader
class-attribute
instance-attribute
used for input Artifact annotations for determining how to load the data.
Note: A loader value of ‘None’ must be used with an underlying type of ‘str’ or Path-like class.
mode
class-attribute
instance-attribute
mode bits to use on the artifact, must be a value between 0 and 0777 set when loading input artifacts.
optional
class-attribute
instance-attribute
whether the Artifact is optional. For an input Artifact, this means it may possibly not exist at the specified path during the template’s runtime. For an output Artifact, it may possibly not be generated during the step/task and available as an output to subsequent steps/tasks.
output
class-attribute
instance-attribute
used to specify artifact as an output in function signature annotations
path
class-attribute
instance-attribute
path where the artifact should be placed/loaded from
recurse_mode
class-attribute
instance-attribute
recursion mode when applying the permissions of the artifact if it is an artifact folder
sub_path
class-attribute
instance-attribute
allows the specification of an artifact from a subpath within the main source.
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
as_name
DEPRECATED, use with_name.
Returns a ‘built’ copy of the current artifact, renamed using the specified name
.
Source code in src/hera/workflows/artifact.py
with_name
Returns a copy of the current artifact, renamed using the specified name
.
AzureArtifact
An artifact sourced from Microsoft Azure.
Source code in src/hera/workflows/artifact.py
archive_logs
class-attribute
instance-attribute
whether to log the archive object
artifact_gc
class-attribute
instance-attribute
artifact garbage collection configuration
from_expression
class-attribute
instance-attribute
an expression that dictates where to obtain the artifact from
loader
class-attribute
instance-attribute
used for input Artifact annotations for determining how to load the data.
Note: A loader value of ‘None’ must be used with an underlying type of ‘str’ or Path-like class.
mode
class-attribute
instance-attribute
mode bits to use on the artifact, must be a value between 0 and 0777 set when loading input artifacts.
optional
class-attribute
instance-attribute
whether the Artifact is optional. For an input Artifact, this means it may possibly not exist at the specified path during the template’s runtime. For an output Artifact, it may possibly not be generated during the step/task and available as an output to subsequent steps/tasks.
output
class-attribute
instance-attribute
used to specify artifact as an output in function signature annotations
path
class-attribute
instance-attribute
path where the artifact should be placed/loaded from
recurse_mode
class-attribute
instance-attribute
recursion mode when applying the permissions of the artifact if it is an artifact folder
sub_path
class-attribute
instance-attribute
allows the specification of an artifact from a subpath within the main source.
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
as_name
DEPRECATED, use with_name.
Returns a ‘built’ copy of the current artifact, renamed using the specified name
.
Source code in src/hera/workflows/artifact.py
with_name
Returns a copy of the current artifact, renamed using the specified name
.
AzureDiskVolumeVolume
Representation of an Azure disk volume.
Source code in src/hera/workflows/volume.py
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
AzureFileVolumeVolume
Representation of an Azure file that can be mounted as a volume.
Source code in src/hera/workflows/volume.py
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
CSIVolume
Representation of a container service interface volume.
Source code in src/hera/workflows/volume.py
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
CephFSVolumeVolume
Representation of a Ceph file system volume.
Source code in src/hera/workflows/volume.py
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
CinderVolume
Representation of a Cinder volume.
Source code in src/hera/workflows/volume.py
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
ClusterWorkflowTemplate
ClusterWorkflowTemplates are cluster scoped templates.
Since cluster workflow templates are scoped at the cluster level, they are available globally in the cluster.
Source code in src/hera/workflows/cluster_workflow_template.py
automount_service_account_token
class-attribute
instance-attribute
deletion_grace_period_seconds
class-attribute
instance-attribute
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
Container
The Container template type defines a container to run on Argo.
The container generally consists of running a Docker container remotely, which is configured via fields such as
command
(the command to run to start the container), args
(arguments for the container), working_dir
(for
setting the active working directory relative to container execution), etc.
Source code in src/hera/workflows/container.py
automount_service_account_token
class-attribute
instance-attribute
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
get_artifact
Finds and returns the artifact with the supplied name.
Note that this method will raise an error if the artifact is not found.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
name of the input artifact to find and return. |
required |
Returns:
Name | Type | Description |
---|---|---|
Artifact |
Artifact
|
the artifact with the supplied name. |
Raises:
Type | Description |
---|---|
KeyError
|
if the artifact is not found. |
Source code in src/hera/workflows/_mixins.py
get_parameter
Finds and returns the parameter with the supplied name.
Note that this method will raise an error if the parameter is not found.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
name of the input parameter to find and return. |
required |
Returns:
Name | Type | Description |
---|---|---|
Parameter |
Parameter
|
the parameter with the supplied name. |
Raises:
Type | Description |
---|---|
KeyError
|
if the parameter is not found. |
Source code in src/hera/workflows/_mixins.py
DAG
A DAG template invocator is used to define Task dependencies as an acyclic graph.
DAG implements the contextmanager interface so allows usage of with
, under which any
hera.workflows.task.Task
objects instantiated will be added to the DAG’s list of Tasks.
Examples:
Source code in src/hera/workflows/dag.py
automount_service_account_token
class-attribute
instance-attribute
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
get_artifact
Finds and returns the artifact with the supplied name.
Note that this method will raise an error if the artifact is not found.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
name of the input artifact to find and return. |
required |
Returns:
Name | Type | Description |
---|---|---|
Artifact |
Artifact
|
the artifact with the supplied name. |
Raises:
Type | Description |
---|---|
KeyError
|
if the artifact is not found. |
Source code in src/hera/workflows/_mixins.py
get_parameter
Finds and returns the parameter with the supplied name.
Note that this method will raise an error if the parameter is not found.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
name of the input parameter to find and return. |
required |
Returns:
Name | Type | Description |
---|---|---|
Parameter |
Parameter
|
the parameter with the supplied name. |
Raises:
Type | Description |
---|---|
KeyError
|
if the parameter is not found. |
Source code in src/hera/workflows/_mixins.py
ModelMapper
Source code in src/hera/workflows/_meta_mixins.py
build_model
classmethod
Source code in src/hera/workflows/_meta_mixins.py
Script
A Script acts as a wrapper around a container.
In Hera this defaults to a “python:3.9” image specified by global_config.image, which runs a python source
specified by Script.source
.
Source code in src/hera/workflows/script.py
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 |
|
automount_service_account_token
class-attribute
instance-attribute
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
get_artifact
Finds and returns the artifact with the supplied name.
Note that this method will raise an error if the artifact is not found.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
name of the input artifact to find and return. |
required |
Returns:
Name | Type | Description |
---|---|---|
Artifact |
Artifact
|
the artifact with the supplied name. |
Raises:
Type | Description |
---|---|
KeyError
|
if the artifact is not found. |
Source code in src/hera/workflows/_mixins.py
get_parameter
Finds and returns the parameter with the supplied name.
Note that this method will raise an error if the parameter is not found.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
name of the input parameter to find and return. |
required |
Returns:
Name | Type | Description |
---|---|---|
Parameter |
Parameter
|
the parameter with the supplied name. |
Raises:
Type | Description |
---|---|
KeyError
|
if the parameter is not found. |
Source code in src/hera/workflows/_mixins.py
Steps
A Steps template invocator is used to define a sequence of steps which can run sequentially or in parallel.
Steps implements the contextmanager interface so allows usage of with
, under which any
hera.workflows.steps.Step
objects instantiated will be added to the Steps’ list of sub_steps.
- Step and Parallel objects initialised within a Steps context will be added to the list of sub_steps in the order they are initialised.
- All Step objects initialised within a Parallel context will run in parallel.
Source code in src/hera/workflows/steps.py
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 |
|
automount_service_account_token
class-attribute
instance-attribute
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
get_artifact
Finds and returns the artifact with the supplied name.
Note that this method will raise an error if the artifact is not found.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
name of the input artifact to find and return. |
required |
Returns:
Name | Type | Description |
---|---|---|
Artifact |
Artifact
|
the artifact with the supplied name. |
Raises:
Type | Description |
---|---|
KeyError
|
if the artifact is not found. |
Source code in src/hera/workflows/_mixins.py
get_parameter
Finds and returns the parameter with the supplied name.
Note that this method will raise an error if the parameter is not found.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
name of the input parameter to find and return. |
required |
Returns:
Name | Type | Description |
---|---|---|
Parameter |
Parameter
|
the parameter with the supplied name. |
Raises:
Type | Description |
---|---|
KeyError
|
if the parameter is not found. |
Source code in src/hera/workflows/_mixins.py
add_template_set
Add the templates stored in the template_set to this Workflow.
build
Builds the ClusterWorkflowTemplate and its components into an Argo schema ClusterWorkflowTemplate object.
Source code in src/hera/workflows/cluster_workflow_template.py
container
Source code in src/hera/workflows/_meta_mixins.py
create
Creates the ClusterWorkflowTemplate on the Argo cluster.
Source code in src/hera/workflows/cluster_workflow_template.py
create_as_workflow
Run this WorkflowTemplate instantly as a Workflow.
If generate_name is given, the workflow created uses generate_name as a prefix, as per the usual for hera.workflows.Workflow.generate_name. If not given, the WorkflowTemplate’s name will be used, truncated to 57 chars and appended with a hyphen.
Note: this function does not require the WorkflowTemplate to already exist on the cluster
Source code in src/hera/workflows/workflow_template.py
dag
from_dict
classmethod
Create a WorkflowTemplate from a WorkflowTemplate contained in a dict.
Examples:
>>> my_workflow_template = WorkflowTemplate(name="my-wft")
>>> my_workflow_template == WorkflowTemplate.from_dict(my_workflow_template.to_dict())
True
Source code in src/hera/workflows/workflow_template.py
from_file
classmethod
Create a WorkflowTemplate from a WorkflowTemplate contained in a YAML file.
Examples:
Source code in src/hera/workflows/workflow_template.py
from_yaml
classmethod
Create a WorkflowTemplate from a WorkflowTemplate contained in a YAML string.
Examples:
Source code in src/hera/workflows/workflow_template.py
get
Attempts to get a workflow template based on the parameters of this template e.g. name + namespace.
Source code in src/hera/workflows/cluster_workflow_template.py
get_parameter
Attempts to find and return a Parameter
of the specified name.
Source code in src/hera/workflows/workflow.py
get_workflow_link
Returns the workflow link for the workflow.
Source code in src/hera/workflows/workflow.py
lint
Lints the ClusterWorkflowTemplate using the Argo cluster.
Source code in src/hera/workflows/cluster_workflow_template.py
script
A decorator that wraps a function into a Script object.
Using this decorator users can define a function that will be executed as a script in a container. Once the
Script
is returned users can use it as they generally use a Script
e.g. as a callable inside a DAG or Steps.
Note that invoking the function will result in the template associated with the script to be added to the
workflow context, so users do not have to worry about that.
Parameters
**script_kwargs Keyword arguments to be passed to the Script object.
Returns:
Callable
Function wrapper that holds a Script
and allows the function to be called to create a Step or Task if
in a Steps or DAG context.
Source code in src/hera/workflows/_meta_mixins.py
661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 |
|
set_entrypoint
Decorator function to set entrypoint.
Source code in src/hera/workflows/workflow.py
steps
to_dict
Builds the Workflow as an Argo schema Workflow object and returns it as a dictionary.
to_file
Writes the Workflow as an Argo schema Workflow object to a YAML file and returns the path to the file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
output_directory
|
Union[Path, str]
|
The directory to write the file to. Defaults to the current working directory. |
'.'
|
name
|
str
|
The name of the file to write without the file extension. Defaults to the Workflow’s name or a generated name. |
''
|
*args
|
Additional arguments to pass to |
()
|
|
**kwargs
|
Additional keyword arguments to pass to |
{}
|
Source code in src/hera/workflows/workflow.py
to_yaml
Builds the Workflow as an Argo schema Workflow object and returns it as yaml string.
Source code in src/hera/workflows/workflow.py
update
Attempts to perform a workflow template update based on the parameters of this template.
Note that this creates the template if it does not exist. In addition, this performs
a get prior to updating to get the resource version to update in the first place. If you know the template
does not exist ahead of time, it is more efficient to use create()
directly to avoid one round trip.
Source code in src/hera/workflows/cluster_workflow_template.py
wait
Waits for the Workflow to complete execution.
Parameters
poll_interval: int = 5 The interval in seconds to poll the workflow status.
Source code in src/hera/workflows/workflow.py
ConfigMapEnv
ConfigMapEnv
is an environment variable whose value originates from a Kubernetes config map.
Source code in src/hera/workflows/env.py
config_map_key
instance-attribute
the name of the field key whole value should be registered as an environment variable
config_map_name
instance-attribute
the name of the config map to reference in Kubernetes
name
instance-attribute
the name of the environment variable. This is universally required irrespective of the type of env variable
optional
class-attribute
instance-attribute
whether the existence of the config map is optional
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
build
Constructs and returns the Argo environment specification.
Source code in src/hera/workflows/env.py
ConfigMapEnvFrom
Exposes a K8s config map’s value as an environment variable.
Source code in src/hera/workflows/env_from.py
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
build
Constructs and returns the Argo EnvFrom specification.
Source code in src/hera/workflows/env_from.py
ConfigMapVolume
Representation of a config map volume.
Source code in src/hera/workflows/volume.py
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
Container
The Container template type defines a container to run on Argo.
The container generally consists of running a Docker container remotely, which is configured via fields such as
command
(the command to run to start the container), args
(arguments for the container), working_dir
(for
setting the active working directory relative to container execution), etc.
Source code in src/hera/workflows/container.py
automount_service_account_token
class-attribute
instance-attribute
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
get_artifact
Finds and returns the artifact with the supplied name.
Note that this method will raise an error if the artifact is not found.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
name of the input artifact to find and return. |
required |
Returns:
Name | Type | Description |
---|---|---|
Artifact |
Artifact
|
the artifact with the supplied name. |
Raises:
Type | Description |
---|---|
KeyError
|
if the artifact is not found. |
Source code in src/hera/workflows/_mixins.py
get_parameter
Finds and returns the parameter with the supplied name.
Note that this method will raise an error if the parameter is not found.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
name of the input parameter to find and return. |
required |
Returns:
Name | Type | Description |
---|---|---|
Parameter |
Parameter
|
the parameter with the supplied name. |
Raises:
Type | Description |
---|---|
KeyError
|
if the parameter is not found. |
Source code in src/hera/workflows/_mixins.py
ContainerNode
A regular container that can be used as part of a hera.workflows.ContainerSet
.
See Also
Source code in src/hera/workflows/container_set.py
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 |
|
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
next
Sets the given container as a dependency of this container and returns the given container.
Examples:
>>> from hera.workflows import ContainerNode
>>> a, b = ContainerNode(name="a"), ContainerNode(name="b")
>>> a.next(b)
>>> b.dependencies
['a']
Source code in src/hera/workflows/container_set.py
ContainerSet
ContainerSet
is the implementation of a set of containers that can be run in parallel on Kubernetes.
The containers are run within the same pod.
Examples:
Source code in src/hera/workflows/container_set.py
automount_service_account_token
class-attribute
instance-attribute
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
get_artifact
Finds and returns the artifact with the supplied name.
Note that this method will raise an error if the artifact is not found.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
name of the input artifact to find and return. |
required |
Returns:
Name | Type | Description |
---|---|---|
Artifact |
Artifact
|
the artifact with the supplied name. |
Raises:
Type | Description |
---|---|
KeyError
|
if the artifact is not found. |
Source code in src/hera/workflows/_mixins.py
get_parameter
Finds and returns the parameter with the supplied name.
Note that this method will raise an error if the parameter is not found.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
name of the input parameter to find and return. |
required |
Returns:
Name | Type | Description |
---|---|---|
Parameter |
Parameter
|
the parameter with the supplied name. |
Raises:
Type | Description |
---|---|
KeyError
|
if the parameter is not found. |
Source code in src/hera/workflows/_mixins.py
Counter
Counter metric component used to count specific events based on the given value.
Notes
See https://argoproj.github.io/argo-workflows/metrics/#grafana-dashboard-for-argo-controller-metrics
Source code in src/hera/workflows/metrics.py
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
CronWorkflow
CronWorkflow allows a user to run a Workflow on a recurring basis.
Note
Hera’s CronWorkflow is a subclass of Workflow which means certain fields are renamed
for compatibility, see cron_suspend
and cron_status
which are different from the Argo
spec. See CronWorkflowSpec for more details.
Source code in src/hera/workflows/cron_workflow.py
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 |
|
automount_service_account_token
class-attribute
instance-attribute
deletion_grace_period_seconds
class-attribute
instance-attribute
successful_jobs_history_limit
class-attribute
instance-attribute
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
Container
The Container template type defines a container to run on Argo.
The container generally consists of running a Docker container remotely, which is configured via fields such as
command
(the command to run to start the container), args
(arguments for the container), working_dir
(for
setting the active working directory relative to container execution), etc.
Source code in src/hera/workflows/container.py
automount_service_account_token
class-attribute
instance-attribute
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
get_artifact
Finds and returns the artifact with the supplied name.
Note that this method will raise an error if the artifact is not found.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
name of the input artifact to find and return. |
required |
Returns:
Name | Type | Description |
---|---|---|
Artifact |
Artifact
|
the artifact with the supplied name. |
Raises:
Type | Description |
---|---|
KeyError
|
if the artifact is not found. |
Source code in src/hera/workflows/_mixins.py
get_parameter
Finds and returns the parameter with the supplied name.
Note that this method will raise an error if the parameter is not found.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
name of the input parameter to find and return. |
required |
Returns:
Name | Type | Description |
---|---|---|
Parameter |
Parameter
|
the parameter with the supplied name. |
Raises:
Type | Description |
---|---|
KeyError
|
if the parameter is not found. |
Source code in src/hera/workflows/_mixins.py
DAG
A DAG template invocator is used to define Task dependencies as an acyclic graph.
DAG implements the contextmanager interface so allows usage of with
, under which any
hera.workflows.task.Task
objects instantiated will be added to the DAG’s list of Tasks.
Examples:
Source code in src/hera/workflows/dag.py
automount_service_account_token
class-attribute
instance-attribute
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
get_artifact
Finds and returns the artifact with the supplied name.
Note that this method will raise an error if the artifact is not found.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
name of the input artifact to find and return. |
required |
Returns:
Name | Type | Description |
---|---|---|
Artifact |
Artifact
|
the artifact with the supplied name. |
Raises:
Type | Description |
---|---|
KeyError
|
if the artifact is not found. |
Source code in src/hera/workflows/_mixins.py
get_parameter
Finds and returns the parameter with the supplied name.
Note that this method will raise an error if the parameter is not found.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
name of the input parameter to find and return. |
required |
Returns:
Name | Type | Description |
---|---|---|
Parameter |
Parameter
|
the parameter with the supplied name. |
Raises:
Type | Description |
---|---|
KeyError
|
if the parameter is not found. |
Source code in src/hera/workflows/_mixins.py
ModelMapper
Source code in src/hera/workflows/_meta_mixins.py
build_model
classmethod
Source code in src/hera/workflows/_meta_mixins.py
Script
A Script acts as a wrapper around a container.
In Hera this defaults to a “python:3.9” image specified by global_config.image, which runs a python source
specified by Script.source
.
Source code in src/hera/workflows/script.py
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 |
|
automount_service_account_token
class-attribute
instance-attribute
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
get_artifact
Finds and returns the artifact with the supplied name.
Note that this method will raise an error if the artifact is not found.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
name of the input artifact to find and return. |
required |
Returns:
Name | Type | Description |
---|---|---|
Artifact |
Artifact
|
the artifact with the supplied name. |
Raises:
Type | Description |
---|---|
KeyError
|
if the artifact is not found. |
Source code in src/hera/workflows/_mixins.py
get_parameter
Finds and returns the parameter with the supplied name.
Note that this method will raise an error if the parameter is not found.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
name of the input parameter to find and return. |
required |
Returns:
Name | Type | Description |
---|---|---|
Parameter |
Parameter
|
the parameter with the supplied name. |
Raises:
Type | Description |
---|---|
KeyError
|
if the parameter is not found. |
Source code in src/hera/workflows/_mixins.py
Steps
A Steps template invocator is used to define a sequence of steps which can run sequentially or in parallel.
Steps implements the contextmanager interface so allows usage of with
, under which any
hera.workflows.steps.Step
objects instantiated will be added to the Steps’ list of sub_steps.
- Step and Parallel objects initialised within a Steps context will be added to the list of sub_steps in the order they are initialised.
- All Step objects initialised within a Parallel context will run in parallel.
Source code in src/hera/workflows/steps.py
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 |
|
automount_service_account_token
class-attribute
instance-attribute
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
get_artifact
Finds and returns the artifact with the supplied name.
Note that this method will raise an error if the artifact is not found.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
name of the input artifact to find and return. |
required |
Returns:
Name | Type | Description |
---|---|---|
Artifact |
Artifact
|
the artifact with the supplied name. |
Raises:
Type | Description |
---|---|
KeyError
|
if the artifact is not found. |
Source code in src/hera/workflows/_mixins.py
get_parameter
Finds and returns the parameter with the supplied name.
Note that this method will raise an error if the parameter is not found.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
name of the input parameter to find and return. |
required |
Returns:
Name | Type | Description |
---|---|---|
Parameter |
Parameter
|
the parameter with the supplied name. |
Raises:
Type | Description |
---|---|
KeyError
|
if the parameter is not found. |
Source code in src/hera/workflows/_mixins.py
add_template_set
Add the templates stored in the template_set to this Workflow.
build
Builds the CronWorkflow and its components into an Argo schema CronWorkflow object.
Source code in src/hera/workflows/cron_workflow.py
container
Source code in src/hera/workflows/_meta_mixins.py
create
Creates the CronWorkflow on the Argo cluster.
Source code in src/hera/workflows/cron_workflow.py
dag
from_dict
classmethod
Create a CronWorkflow from a CronWorkflow contained in a dict.
Examples:
>>> my_cron_workflow = CronWorkflow(name="my-cron-wf")
>>> my_cron_workflow == CronWorkflow.from_dict(my_cron_workflow.to_dict())
True
Source code in src/hera/workflows/cron_workflow.py
from_file
classmethod
Create a CronWorkflow from a CronWorkflow contained in a YAML file.
Examples:
Source code in src/hera/workflows/cron_workflow.py
from_yaml
classmethod
Create a CronWorkflow from a CronWorkflow contained in a YAML string.
Examples:
Source code in src/hera/workflows/cron_workflow.py
get
Attempts to get a cron workflow based on the parameters of this template e.g. name + namespace.
Source code in src/hera/workflows/cron_workflow.py
get_parameter
Attempts to find and return a Parameter
of the specified name.
Source code in src/hera/workflows/workflow.py
get_workflow_link
Returns the workflow link for the workflow.
Source code in src/hera/workflows/cron_workflow.py
lint
Lints the CronWorkflow using the Argo cluster.
Source code in src/hera/workflows/cron_workflow.py
script
A decorator that wraps a function into a Script object.
Using this decorator users can define a function that will be executed as a script in a container. Once the
Script
is returned users can use it as they generally use a Script
e.g. as a callable inside a DAG or Steps.
Note that invoking the function will result in the template associated with the script to be added to the
workflow context, so users do not have to worry about that.
Parameters
**script_kwargs Keyword arguments to be passed to the Script object.
Returns:
Callable
Function wrapper that holds a Script
and allows the function to be called to create a Step or Task if
in a Steps or DAG context.
Source code in src/hera/workflows/_meta_mixins.py
661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 |
|
set_entrypoint
Decorator function to set entrypoint.
Source code in src/hera/workflows/workflow.py
steps
to_dict
Builds the Workflow as an Argo schema Workflow object and returns it as a dictionary.
to_file
Writes the Workflow as an Argo schema Workflow object to a YAML file and returns the path to the file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
output_directory
|
Union[Path, str]
|
The directory to write the file to. Defaults to the current working directory. |
'.'
|
name
|
str
|
The name of the file to write without the file extension. Defaults to the Workflow’s name or a generated name. |
''
|
*args
|
Additional arguments to pass to |
()
|
|
**kwargs
|
Additional keyword arguments to pass to |
{}
|
Source code in src/hera/workflows/workflow.py
to_yaml
Builds the Workflow as an Argo schema Workflow object and returns it as yaml string.
Source code in src/hera/workflows/workflow.py
update
Attempts to perform a workflow template update based on the parameters of this template.
Note that this creates the template if it does not exist. In addition, this performs
a get prior to updating to get the resource version to update in the first place. If you know the template
does not exist ahead of time, it is more efficient to use create()
directly to avoid one round trip.
Source code in src/hera/workflows/cron_workflow.py
wait
Waits for the Workflow to complete execution.
Parameters
poll_interval: int = 5 The interval in seconds to poll the workflow status.
Source code in src/hera/workflows/workflow.py
DAG
A DAG template invocator is used to define Task dependencies as an acyclic graph.
DAG implements the contextmanager interface so allows usage of with
, under which any
hera.workflows.task.Task
objects instantiated will be added to the DAG’s list of Tasks.
Examples:
Source code in src/hera/workflows/dag.py
automount_service_account_token
class-attribute
instance-attribute
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
get_artifact
Finds and returns the artifact with the supplied name.
Note that this method will raise an error if the artifact is not found.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
name of the input artifact to find and return. |
required |
Returns:
Name | Type | Description |
---|---|---|
Artifact |
Artifact
|
the artifact with the supplied name. |
Raises:
Type | Description |
---|---|
KeyError
|
if the artifact is not found. |
Source code in src/hera/workflows/_mixins.py
get_parameter
Finds and returns the parameter with the supplied name.
Note that this method will raise an error if the parameter is not found.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
name of the input parameter to find and return. |
required |
Returns:
Name | Type | Description |
---|---|---|
Parameter |
Parameter
|
the parameter with the supplied name. |
Raises:
Type | Description |
---|---|
KeyError
|
if the parameter is not found. |
Source code in src/hera/workflows/_mixins.py
Data
Data
implements the Argo data template representation.
Data can be used to indicate that some data, identified by a source
, should be processed via the specified
transformations
. The transformations
field can be either expressed via a pure str
or via a hera.expr
,
which transpiles the expression into a statement that can be processed by Argo.
Source code in src/hera/workflows/data.py
automount_service_account_token
class-attribute
instance-attribute
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
get_artifact
Finds and returns the artifact with the supplied name.
Note that this method will raise an error if the artifact is not found.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
name of the input artifact to find and return. |
required |
Returns:
Name | Type | Description |
---|---|---|
Artifact |
Artifact
|
the artifact with the supplied name. |
Raises:
Type | Description |
---|---|
KeyError
|
if the artifact is not found. |
Source code in src/hera/workflows/_mixins.py
get_parameter
Finds and returns the parameter with the supplied name.
Note that this method will raise an error if the parameter is not found.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
name of the input parameter to find and return. |
required |
Returns:
Name | Type | Description |
---|---|---|
Parameter |
Parameter
|
the parameter with the supplied name. |
Raises:
Type | Description |
---|---|
KeyError
|
if the parameter is not found. |
Source code in src/hera/workflows/_mixins.py
DownwardAPIVolume
Representation of a volume passed via the downward API.
Source code in src/hera/workflows/volume.py
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
EmptyDirVolume
Representation of an empty dir volume from K8s.
Source code in src/hera/workflows/volume.py
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
Env
A variable implementation that can expose a plain value
or value from input
as an env variable.
Source code in src/hera/workflows/env.py
name
instance-attribute
the name of the environment variable. This is universally required irrespective of the type of env variable
param_name
property
Returns the parameter name of the environment variable, conditioned on the use of value_from_input
.
value_from_input
class-attribute
instance-attribute
an optional str
or Parameter
representation of the origin of the environment variable value
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
build
Constructs and returns the Argo environment specification.
Source code in src/hera/workflows/env.py
EphemeralVolume
Representation of a volume that uses ephemeral storage shared with the K8s node a pod is scheduled on.
Source code in src/hera/workflows/volume.py
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
ExistingVolume
ExistingVolume
is a representation of an existing volume in K8s.
The existing volume is mounted based on the supplied claim name. This tells K8s that the specified persistent volume claim should be used to mount a volume to a pod.
Source code in src/hera/workflows/volume.py
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
FCVolume
An FV volume representation.
Source code in src/hera/workflows/volume.py
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
FieldEnv
FieldEnv
is an environment variable whose origin is in a field specification.
The field path specification points to a particular field within the workflow/container YAML specification. For instance, if there’s a YAML that has 3 fields like so
then a reference to the field a must be encoded asspec.a
in order for the value of 42
to be extracted and set
as an environment variable.
Source code in src/hera/workflows/env.py
api_version
class-attribute
instance-attribute
optionally, an API version specification. This defaults to the Hera global config api_version
field_path
instance-attribute
the path to the field whose value should be extracted into an environment variable
name
instance-attribute
the name of the environment variable. This is universally required irrespective of the type of env variable
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
build
Constructs and returns the Argo environment specification.
Source code in src/hera/workflows/env.py
FlexVolume
A Flex volume representation.
Source code in src/hera/workflows/volume.py
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
FlockerVolume
A Flocker volume representation.
Source code in src/hera/workflows/volume.py
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
GCEPersistentDiskVolume
A representation of a Google Cloud Compute Enginer persistent disk.
Notes
The volume must exist on GCE before a request to mount it to a pod is performed.
Source code in src/hera/workflows/volume.py
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
GCSArtifact
An artifact sourced from Google Cloud Storage.
Source code in src/hera/workflows/artifact.py
archive_logs
class-attribute
instance-attribute
whether to log the archive object
artifact_gc
class-attribute
instance-attribute
artifact garbage collection configuration
from_expression
class-attribute
instance-attribute
an expression that dictates where to obtain the artifact from
loader
class-attribute
instance-attribute
used for input Artifact annotations for determining how to load the data.
Note: A loader value of ‘None’ must be used with an underlying type of ‘str’ or Path-like class.
mode
class-attribute
instance-attribute
mode bits to use on the artifact, must be a value between 0 and 0777 set when loading input artifacts.
optional
class-attribute
instance-attribute
whether the Artifact is optional. For an input Artifact, this means it may possibly not exist at the specified path during the template’s runtime. For an output Artifact, it may possibly not be generated during the step/task and available as an output to subsequent steps/tasks.
output
class-attribute
instance-attribute
used to specify artifact as an output in function signature annotations
path
class-attribute
instance-attribute
path where the artifact should be placed/loaded from
recurse_mode
class-attribute
instance-attribute
recursion mode when applying the permissions of the artifact if it is an artifact folder
sub_path
class-attribute
instance-attribute
allows the specification of an artifact from a subpath within the main source.
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
as_name
DEPRECATED, use with_name.
Returns a ‘built’ copy of the current artifact, renamed using the specified name
.
Source code in src/hera/workflows/artifact.py
with_name
Returns a copy of the current artifact, renamed using the specified name
.
Gauge
Gauge metric component used to record intervals based on the given value.
Notes
See https://argoproj.github.io/argo-workflows/metrics/#grafana-dashboard-for-argo-controller-metrics
Source code in src/hera/workflows/metrics.py
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
GitArtifact
An artifact sourced from GitHub.
Source code in src/hera/workflows/artifact.py
archive_logs
class-attribute
instance-attribute
whether to log the archive object
artifact_gc
class-attribute
instance-attribute
artifact garbage collection configuration
from_expression
class-attribute
instance-attribute
an expression that dictates where to obtain the artifact from
loader
class-attribute
instance-attribute
used for input Artifact annotations for determining how to load the data.
Note: A loader value of ‘None’ must be used with an underlying type of ‘str’ or Path-like class.
mode
class-attribute
instance-attribute
mode bits to use on the artifact, must be a value between 0 and 0777 set when loading input artifacts.
optional
class-attribute
instance-attribute
whether the Artifact is optional. For an input Artifact, this means it may possibly not exist at the specified path during the template’s runtime. For an output Artifact, it may possibly not be generated during the step/task and available as an output to subsequent steps/tasks.
output
class-attribute
instance-attribute
used to specify artifact as an output in function signature annotations
path
class-attribute
instance-attribute
path where the artifact should be placed/loaded from
recurse_mode
class-attribute
instance-attribute
recursion mode when applying the permissions of the artifact if it is an artifact folder
sub_path
class-attribute
instance-attribute
allows the specification of an artifact from a subpath within the main source.
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
as_name
DEPRECATED, use with_name.
Returns a ‘built’ copy of the current artifact, renamed using the specified name
.
Source code in src/hera/workflows/artifact.py
with_name
Returns a copy of the current artifact, renamed using the specified name
.
GitRepoVolume
A representation of a Git repo that can be mounted as a volume.
Source code in src/hera/workflows/volume.py
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
GlusterfsVolume
A representation for a Gluster filesystem volume.
Source code in src/hera/workflows/volume.py
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
HDFSArtifact
A Hadoop File System artifact.
Note that HDFSArtifact
does not inherit from the auto-generated HDFSArtifact
because there’s a
conflict in path
with the base class Artifact
. Here, we redefine the HDFS path
to hdfs_path
to
differentiate between the parent class and the child class path
.
Source code in src/hera/workflows/artifact.py
archive_logs
class-attribute
instance-attribute
whether to log the archive object
artifact_gc
class-attribute
instance-attribute
artifact garbage collection configuration
from_expression
class-attribute
instance-attribute
an expression that dictates where to obtain the artifact from
loader
class-attribute
instance-attribute
used for input Artifact annotations for determining how to load the data.
Note: A loader value of ‘None’ must be used with an underlying type of ‘str’ or Path-like class.
mode
class-attribute
instance-attribute
mode bits to use on the artifact, must be a value between 0 and 0777 set when loading input artifacts.
optional
class-attribute
instance-attribute
whether the Artifact is optional. For an input Artifact, this means it may possibly not exist at the specified path during the template’s runtime. For an output Artifact, it may possibly not be generated during the step/task and available as an output to subsequent steps/tasks.
output
class-attribute
instance-attribute
used to specify artifact as an output in function signature annotations
path
class-attribute
instance-attribute
path where the artifact should be placed/loaded from
recurse_mode
class-attribute
instance-attribute
recursion mode when applying the permissions of the artifact if it is an artifact folder
sub_path
class-attribute
instance-attribute
allows the specification of an artifact from a subpath within the main source.
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
as_name
DEPRECATED, use with_name.
Returns a ‘built’ copy of the current artifact, renamed using the specified name
.
Source code in src/hera/workflows/artifact.py
with_name
Returns a copy of the current artifact, renamed using the specified name
.
HTTP
HTTP
is an implementation of the HTTP template that supports executing HTTP actions in a step/task.
Source code in src/hera/workflows/http_template.py
automount_service_account_token
class-attribute
instance-attribute
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
get_artifact
Finds and returns the artifact with the supplied name.
Note that this method will raise an error if the artifact is not found.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
name of the input artifact to find and return. |
required |
Returns:
Name | Type | Description |
---|---|---|
Artifact |
Artifact
|
the artifact with the supplied name. |
Raises:
Type | Description |
---|---|
KeyError
|
if the artifact is not found. |
Source code in src/hera/workflows/_mixins.py
get_parameter
Finds and returns the parameter with the supplied name.
Note that this method will raise an error if the parameter is not found.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
name of the input parameter to find and return. |
required |
Returns:
Name | Type | Description |
---|---|---|
Parameter |
Parameter
|
the parameter with the supplied name. |
Raises:
Type | Description |
---|---|
KeyError
|
if the parameter is not found. |
Source code in src/hera/workflows/_mixins.py
HTTPArtifact
An artifact sourced from an HTTP URL.
Source code in src/hera/workflows/artifact.py
archive_logs
class-attribute
instance-attribute
whether to log the archive object
artifact_gc
class-attribute
instance-attribute
artifact garbage collection configuration
from_expression
class-attribute
instance-attribute
an expression that dictates where to obtain the artifact from
loader
class-attribute
instance-attribute
used for input Artifact annotations for determining how to load the data.
Note: A loader value of ‘None’ must be used with an underlying type of ‘str’ or Path-like class.
mode
class-attribute
instance-attribute
mode bits to use on the artifact, must be a value between 0 and 0777 set when loading input artifacts.
optional
class-attribute
instance-attribute
whether the Artifact is optional. For an input Artifact, this means it may possibly not exist at the specified path during the template’s runtime. For an output Artifact, it may possibly not be generated during the step/task and available as an output to subsequent steps/tasks.
output
class-attribute
instance-attribute
used to specify artifact as an output in function signature annotations
path
class-attribute
instance-attribute
path where the artifact should be placed/loaded from
recurse_mode
class-attribute
instance-attribute
recursion mode when applying the permissions of the artifact if it is an artifact folder
sub_path
class-attribute
instance-attribute
allows the specification of an artifact from a subpath within the main source.
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
as_name
DEPRECATED, use with_name.
Returns a ‘built’ copy of the current artifact, renamed using the specified name
.
Source code in src/hera/workflows/artifact.py
with_name
Returns a copy of the current artifact, renamed using the specified name
.
Histogram
Histogram metric that records the value at the specified bucket intervals.
Notes
See https://argoproj.github.io/argo-workflows/metrics/#grafana-dashboard-for-argo-controller-metrics
Source code in src/hera/workflows/metrics.py
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
HostPathVolume
Representation for a volume that can be mounted from a host path/node location.
Source code in src/hera/workflows/volume.py
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
ISCSIVolume
Representation of ISCSI volume.
Source code in src/hera/workflows/volume.py
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
InlineScriptConstructor
InlineScriptConstructor
is a script constructor that submits a script as a source
to Argo.
This script constructor is focused on taking a Python script/function “as is” for remote execution. The
constructor processes the script to infer what parameters it needs to deserialize so the script can execute.
The submitted script will contain prefixes such as new imports, e.g. import os
, import json
, etc. and
will contain the necessary json.loads
calls to deserialize the parameters so they are usable by the script just
like a normal Python script/function.
Source code in src/hera/workflows/script.py
732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 |
|
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
generate_source
Assembles and returns a script representation of the given function.
This also assembles any extra script material prefixed to the string source.
The script is expected to be a callable function the client is interested in submitting
for execution on Argo and the script_extra
material represents the parameter loading part obtained, likely,
through get_param_script_portion
.
Returns:
str Final formatted script.
Source code in src/hera/workflows/script.py
transform_script_template_post_build
A hook to transform the generated script template.
transform_template_post_build
transform_values
Input
Input model usable by the Hera Runner.
Input is a Pydantic model which users can create a subclass of. When a subclass of Input is used as a function parameter type, Hera will take the fields of the user’s subclass to create template input parameters and artifacts. See the example for the script_pydantic_io experimental feature.
Source code in src/hera/workflows/io/v1.py
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
InvalidDispatchType
InvalidTemplateCall
InvalidType
Metric
Prometheus metric that can be used at the workflow or task/template level.
Notes
See https://argoproj.github.io/argo-workflows/metrics/#grafana-dashboard-for-argo-controller-metrics
Source code in src/hera/workflows/metrics.py
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
Metrics
A collection of Prometheus metrics.
Notes
See https://argoproj.github.io/argo-workflows/metrics/#grafana-dashboard-for-argo-controller-metrics
Source code in src/hera/workflows/metrics.py
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
NFSVolume
A network file system volume representation.
Source code in src/hera/workflows/volume.py
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
NodeNameConflict
NoneArchiveStrategy
NoneArchiveStrategy
indicates artifacts should skip serialization.
Source code in src/hera/workflows/archive.py
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
OSSArtifact
An artifact sourced from OSS.
Source code in src/hera/workflows/artifact.py
archive_logs
class-attribute
instance-attribute
whether to log the archive object
artifact_gc
class-attribute
instance-attribute
artifact garbage collection configuration
from_expression
class-attribute
instance-attribute
an expression that dictates where to obtain the artifact from
loader
class-attribute
instance-attribute
used for input Artifact annotations for determining how to load the data.
Note: A loader value of ‘None’ must be used with an underlying type of ‘str’ or Path-like class.
mode
class-attribute
instance-attribute
mode bits to use on the artifact, must be a value between 0 and 0777 set when loading input artifacts.
optional
class-attribute
instance-attribute
whether the Artifact is optional. For an input Artifact, this means it may possibly not exist at the specified path during the template’s runtime. For an output Artifact, it may possibly not be generated during the step/task and available as an output to subsequent steps/tasks.
output
class-attribute
instance-attribute
used to specify artifact as an output in function signature annotations
path
class-attribute
instance-attribute
path where the artifact should be placed/loaded from
recurse_mode
class-attribute
instance-attribute
recursion mode when applying the permissions of the artifact if it is an artifact folder
sub_path
class-attribute
instance-attribute
allows the specification of an artifact from a subpath within the main source.
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
as_name
DEPRECATED, use with_name.
Returns a ‘built’ copy of the current artifact, renamed using the specified name
.
Source code in src/hera/workflows/artifact.py
with_name
Returns a copy of the current artifact, renamed using the specified name
.
Operator
Operator is a representation of mathematical comparison symbols.
This can be used on tasks that execute conditionally based on the output of another task.
Notes
The task that outputs its result needs to do so using stdout. See examples
for a sample workflow.
Source code in src/hera/workflows/operator.py
Output
Output model usable by the Hera Runner.
Output is a Pydantic model which users can create a subclass of. When a subclass of Output is used as a function return type, Hera will take the fields of the user’s subclass to create template output parameters and artifacts. See the example for the script_pydantic_io experimental feature.
Source code in src/hera/workflows/io/v1.py
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
Parallel
Parallel is used to add a list of steps which will run in parallel.
Parallel implements the contextmanager interface so allows usage of with
, under which any
hera.workflows.steps.Step
objects instantiated will be added to Parallel’s list of sub_steps.
Source code in src/hera/workflows/steps.py
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
Parameter
A Parameter
is used to pass values in and out of templates.
They are to declare input and output parameters in the case of templates, and are used for Steps and Tasks to assign values.
Source code in src/hera/workflows/parameter.py
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 |
|
output
class-attribute
instance-attribute
used to specify parameter as an output in function signature annotations
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
as_argument
Assembles the parameter for use as an argument of a step or a task.
Source code in src/hera/workflows/parameter.py
as_input
Assembles the parameter for use as an input of a template.
Source code in src/hera/workflows/parameter.py
as_output
Assembles the parameter for use as an output of a template.
Source code in src/hera/workflows/parameter.py
from_model
classmethod
Creates a Parameter
from a Parameter
model without running validation.
with_name
PhotonPersistentDiskVolume
A Photon Persisten Disk representation.
Source code in src/hera/workflows/volume.py
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
PortworxVolume
PortworxVolume
represents a Portworx volume to mount to a container.
Source code in src/hera/workflows/volume.py
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
ProjectedVolume
ProjectedVolume
represents a projected volume to mount to a container.
Source code in src/hera/workflows/volume.py
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
QuobyteVolume
QuobyteVolume
represents a Quobyte volume to mount to a container.
Source code in src/hera/workflows/volume.py
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
RBDVolume
An RDB volume representation.
Source code in src/hera/workflows/volume.py
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
RawArtifact
A raw bytes artifact representation.
Source code in src/hera/workflows/artifact.py
archive_logs
class-attribute
instance-attribute
whether to log the archive object
artifact_gc
class-attribute
instance-attribute
artifact garbage collection configuration
from_expression
class-attribute
instance-attribute
an expression that dictates where to obtain the artifact from
loader
class-attribute
instance-attribute
used for input Artifact annotations for determining how to load the data.
Note: A loader value of ‘None’ must be used with an underlying type of ‘str’ or Path-like class.
mode
class-attribute
instance-attribute
mode bits to use on the artifact, must be a value between 0 and 0777 set when loading input artifacts.
optional
class-attribute
instance-attribute
whether the Artifact is optional. For an input Artifact, this means it may possibly not exist at the specified path during the template’s runtime. For an output Artifact, it may possibly not be generated during the step/task and available as an output to subsequent steps/tasks.
output
class-attribute
instance-attribute
used to specify artifact as an output in function signature annotations
path
class-attribute
instance-attribute
path where the artifact should be placed/loaded from
recurse_mode
class-attribute
instance-attribute
recursion mode when applying the permissions of the artifact if it is an artifact folder
sub_path
class-attribute
instance-attribute
allows the specification of an artifact from a subpath within the main source.
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
as_name
DEPRECATED, use with_name.
Returns a ‘built’ copy of the current artifact, renamed using the specified name
.
Source code in src/hera/workflows/artifact.py
with_name
Returns a copy of the current artifact, renamed using the specified name
.
Resource
Resource
is a representation of a K8s resource that can be created by Argo.
The resource is a callable step that can be invoked in a DAG/Workflow. The resource can create any K8s resource,
such as other workflows, workflow templates, daemons, etc, as specified by the manifest
field of the resource.
The manifest field is a canonical YAML that is submitted to K8s by Argo. Note that the manifest is a union of
multiple types. The manifest can be a string, in which case it is assume to be YAML. Otherwise, if it’s a Hera
objects, it is automatically converted to the corresponding YAML representation.
Source code in src/hera/workflows/resource.py
automount_service_account_token
class-attribute
instance-attribute
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
get_artifact
Finds and returns the artifact with the supplied name.
Note that this method will raise an error if the artifact is not found.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
name of the input artifact to find and return. |
required |
Returns:
Name | Type | Description |
---|---|---|
Artifact |
Artifact
|
the artifact with the supplied name. |
Raises:
Type | Description |
---|---|
KeyError
|
if the artifact is not found. |
Source code in src/hera/workflows/_mixins.py
get_parameter
Finds and returns the parameter with the supplied name.
Note that this method will raise an error if the parameter is not found.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
name of the input parameter to find and return. |
required |
Returns:
Name | Type | Description |
---|---|---|
Parameter |
Parameter
|
the parameter with the supplied name. |
Raises:
Type | Description |
---|---|
KeyError
|
if the parameter is not found. |
Source code in src/hera/workflows/_mixins.py
ResourceEnv
ResourceEnv
exposes a resource field as an environment variable.
Only resources limits and requests such as limits.cpu
, limits.memory
, limits.ephemeral-storage
,
requests.cpu
, requests.memory
and requests.ephemeral-storage
are currently supported.
Source code in src/hera/workflows/env.py
container_name
class-attribute
instance-attribute
a pod can contain multiple containers, so this field helps select the right container whose resources should be exposed as an env variable.
divisor
class-attribute
instance-attribute
Specifies the output format of the exposed resources, defaults to 1
on Argo’s side
name
instance-attribute
the name of the environment variable. This is universally required irrespective of the type of env variable
resource
instance-attribute
the name of the resource to select, such as limit.cpu
, limits.memory
, etc.
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
build
Builds the ResourceEnv
into a Hera auto-generated environment variable model.
Source code in src/hera/workflows/env.py
Resources
A representation of a collection of resources that are requested to be consumed by a task for execution.
This follow the K8S definition for resources.
Attributes:
Name | Type | Description |
---|---|---|
cpu_request |
Optional[Union[float, int, str]]
|
The number of CPUs to request, either as a fraction (millicpu), whole number, or a string. |
cpu_limit |
Optional[Union[float, int, str]]
|
The limit of CPUs to request, either as a fraction (millicpu), whole number, or a string. |
memory_request |
Optional[str]
|
The amount of memory to request. |
memory_limit |
Optional[str]
|
The memory limit of the pod. |
ephemeral_request |
Optional[str]
|
The amount of ephemeral storage to request. |
ephemeral_limit |
Optional[str]
|
The ephemeral storage limit of the pod. |
gpus |
Optional[Union[int, str]]
|
The number of GPUs to request. |
gpu_flag |
Optional[str]
|
The GPU flag to use for identifying how many GPUs to mount to a pod. This is dependent on the cloud provider. |
custom_resources |
Optional[Dict]
|
Any custom resources to request. This is dependent on the cloud provider. |
Notes
Most of the fields that support a union of int
and str
support either specifying a number for the resource,
such as 1 CPU, 2 GPU, etc., a str
representation of that numerical resource, such as ‘1’ CPU, ‘2’ GPU, etc., but
also supports specifying a to be computed value, such as {{inputs.parameters.cpu_request}}
. This means tasks,
steps, etc., can be stitched together in a way to have a task/step that computes the resource requirements, and
then outputs
them to the next step/task.
Source code in src/hera/workflows/resources.py
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 |
|
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
build
Builds the resource requirements of the pod.
Source code in src/hera/workflows/resources.py
RetryPolicy
An enum that holds options for retry policy.
Source code in src/hera/workflows/retry_strategy.py
on_error
class-attribute
instance-attribute
Retry steps that encounter Argo controller errors, or whose init or wait containers fail
on_failure
class-attribute
instance-attribute
Retry steps whose main container is marked as failed in Kubernetes
RetryStrategy
RetryStrategy
configures how an Argo job should retry.
Source code in src/hera/workflows/retry_strategy.py
affinity
class-attribute
instance-attribute
affinity dictates the affinity of the retried jobs
backoff
class-attribute
instance-attribute
backoff dictates how long should a job wait for before retrying
expression
class-attribute
instance-attribute
the expression field supports the expression of complex rules regarding retry behavior
limit
class-attribute
instance-attribute
the hard numeric limit of how many times a jobs should retry
retry_policy
class-attribute
instance-attribute
the policy dictates, at a high level, under what conditions should a job retry
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
build
Builds the generated RetryStrategy
representation of the retry strategy.
Source code in src/hera/workflows/retry_strategy.py
RunnerScriptConstructor
RunnerScriptConstructor
is a script constructor that runs a script in a container.
The runner script, also known as “The Hera runner”, takes a script/Python function definition, infers the path
to the function (module import), assembles a path to invoke the function, and passes any specified parameters
to the function. This helps users “save” on the source
space required for submitting a function for remote
execution on Argo. Execution within the container requires the executing container to include the file that
contains the submitted script. More specifically, the container must be created in some process (e.g. CI), so that
it conains the script to run remotely.
Source code in src/hera/workflows/script.py
DEFAULT_HERA_OUTPUTS_DIRECTORY
class-attribute
instance-attribute
Used as the default value for when the outputs_directory is not set
outputs_directory
class-attribute
instance-attribute
Used for saving outputs when defined using annotations.
pydantic_mode
class-attribute
instance-attribute
Used for selecting the pydantic version used for BaseModels. Allows for using pydantic.v1 BaseModels with pydantic v2. Defaults to the installed version of Pydantic.
volume_for_outputs
class-attribute
instance-attribute
Volume to use if saving outputs when defined using annotations.
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
generate_source
A function that can inspect the Script instance and generate the source field.
transform_script_template_post_build
A hook to transform the generated script template.
Source code in src/hera/workflows/script.py
transform_template_post_build
transform_values
A function that can inspect the Script instance and generate the source field.
Source code in src/hera/workflows/script.py
S3Artifact
An artifact sourced from AWS S3.
Source code in src/hera/workflows/artifact.py
archive_logs
class-attribute
instance-attribute
whether to log the archive object
artifact_gc
class-attribute
instance-attribute
artifact garbage collection configuration
from_expression
class-attribute
instance-attribute
an expression that dictates where to obtain the artifact from
loader
class-attribute
instance-attribute
used for input Artifact annotations for determining how to load the data.
Note: A loader value of ‘None’ must be used with an underlying type of ‘str’ or Path-like class.
mode
class-attribute
instance-attribute
mode bits to use on the artifact, must be a value between 0 and 0777 set when loading input artifacts.
optional
class-attribute
instance-attribute
whether the Artifact is optional. For an input Artifact, this means it may possibly not exist at the specified path during the template’s runtime. For an output Artifact, it may possibly not be generated during the step/task and available as an output to subsequent steps/tasks.
output
class-attribute
instance-attribute
used to specify artifact as an output in function signature annotations
path
class-attribute
instance-attribute
path where the artifact should be placed/loaded from
recurse_mode
class-attribute
instance-attribute
recursion mode when applying the permissions of the artifact if it is an artifact folder
sub_path
class-attribute
instance-attribute
allows the specification of an artifact from a subpath within the main source.
Config
Config class dictates the behavior of the underlying Pydantic model.
See Pydantic documentation for more info.
Source code in src/hera/shared/_pydantic.py
allow_mutation
class-attribute
instance-attribute
supports mutating Hera objects post instantiation
allow_population_by_field_name
class-attribute
instance-attribute
support populating Hera object fields by their Field alias
arbitrary_types_allowed
class-attribute
instance-attribute
supports specifying arbitrary types for any field to support Hera object fields processing
smart_union
class-attribute
instance-attribute
uses smart union for matching a field’s specified value to the underlying type that’s part of a union
as_name
DEPRECATED, use with_name.
Returns a ‘built’ copy of the current artifact, renamed using the specified name
.
Source code in src/hera/workflows/artifact.py
with_name
Returns a copy of the current artifact, renamed using the specified name
.
ScaleIOVolume
ScaleIOVolume
represents a ScaleIO volume to mount to the container.