-
I have a binary command which I am going to pack into a container and run as an op (possibly using k8s_job_op). A challenge I'm facing is that my inputs for the binary are dynamically generated outputs from other ops (they're files). Is there a way to pass these files as inputs to the k8s_job_op, or would I need to write them to a volume first? The question was originally asked in Dagster Slack. |
Beta Was this translation helpful? Give feedback.
Answered by
prha
Nov 16, 2023
Replies: 1 comment
-
In order to support this, rather than using Example:
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
prha
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In order to support this, rather than using
k8s_job_op
, you could useexecute_k8s_job
(docs link) and use your own op definition.Example: