Skip to content

Artifact Passing Subpath

Note

This example is a replication of an Argo Workflow example in Hera. The upstream example can be found here.

from hera.workflows import (
    Artifact,
    Container,
    NoneArchiveStrategy,
    Step,
    Steps,
    Workflow,
)

with Workflow(generate_name="artifact-passing-subpath-", entrypoint="artifact-example") as w:
    hello_world_to_file = Container(
        name="hello-world-to-file",
        image="busybox",
        command=["sh", "-c"],
        args=["sleep 1; echo hello world | tee /tmp/hello_world.txt"],
        outputs=[Artifact(name="hello-art", path="/tmp/", archive=NoneArchiveStrategy())],
    )
    print_message_dir = Container(
        name="print-message-dir",
        image="alpine:latest",
        command=["sh", "-c"],
        args=["ls /tmp/message"],
        inputs=[Artifact(name="message", path="/tmp/message")],
    )
    print_message_from_file = Container(
        name="print-message-from-file",
        image="alpine:latest",
        command=["sh", "-c"],
        args=["cat /tmp/message"],
        inputs=[Artifact(name="message", path="/tmp/message")],
    )
    with Steps(name="artifact-example") as s:
        Step(name="generate-artifact", template=hello_world_to_file)
        Step(
            name="list-artifact",
            template=print_message_dir,
            arguments=[Artifact(name="message", from_="{{steps.generate-artifact.outputs.artifacts.hello-art}}")],
        )
        Step(
            name="consume-artifact",
            template=print_message_from_file,
            arguments=[
                Artifact(
                    name="message",
                    from_="{{steps.generate-artifact.outputs.artifacts.hello-art}}",
                    sub_path="hello_world.txt",
                )
            ],
        )
apiVersion: argoproj.io/v1alpha1
kind: Workflow
metadata:
  generateName: artifact-passing-subpath-
spec:
  entrypoint: artifact-example
  templates:
  - name: hello-world-to-file
    container:
      image: busybox
      args:
      - sleep 1; echo hello world | tee /tmp/hello_world.txt
      command:
      - sh
      - -c
    outputs:
      artifacts:
      - name: hello-art
        path: /tmp/
        archive:
          none: {}
  - name: print-message-dir
    container:
      image: alpine:latest
      args:
      - ls /tmp/message
      command:
      - sh
      - -c
    inputs:
      artifacts:
      - name: message
        path: /tmp/message
  - name: print-message-from-file
    container:
      image: alpine:latest
      args:
      - cat /tmp/message
      command:
      - sh
      - -c
    inputs:
      artifacts:
      - name: message
        path: /tmp/message
  - name: artifact-example
    steps:
    - - name: generate-artifact
        template: hello-world-to-file
    - - name: list-artifact
        template: print-message-dir
        arguments:
          artifacts:
          - name: message
            from: '{{steps.generate-artifact.outputs.artifacts.hello-art}}'
    - - name: consume-artifact
        template: print-message-from-file
        arguments:
          artifacts:
          - name: message
            from: '{{steps.generate-artifact.outputs.artifacts.hello-art}}'
            subPath: hello_world.txt

Comments