Skip to content

Commit

Permalink
fix: let ImageSpec copy new file into container
Browse files Browse the repository at this point in the history
Signed-off-by: machichima <[email protected]>
  • Loading branch information
machichima committed Dec 14, 2024
1 parent e01efc2 commit 3e7e2b2
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
import math
import sys


def write_output(output_dir, output_file, v):
with open(f"{output_dir}/{output_file}", "w") as f:
f.write(str(v))


def calculate_area(a, b):
return math.pi * a * b


def main(a, b, output_dir):
a = float(a)
b = float(b)

area = calculate_area(a, b)

write_output(output_dir, "area", area)
write_output(output_dir, "metadata", "[from python rawcontainer]")


if __name__ == "__main__":
a = sys.argv[1]
b = sys.argv[2]
output_dir = sys.argv[3]

main(a, b, output_dir)
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@
base_image="ghcr.io/flyteorg/rawcontainers-python:v2",
registry="localhost:30000",
builder="default",
copy=["calculate-ellipse-area.py"],
copy=["calculate-ellipse-area-new.py"],
),
command=[
"python",
"calculate-ellipse-area.py",
"calculate-ellipse-area-new.py",
"{{.inputs.a}}",
"{{.inputs.b}}",
"/var/outputs",
Expand Down

0 comments on commit 3e7e2b2

Please sign in to comment.