Andreas Nord
03/11/2022, 4:34 PMflow.run_configs = DockerRun(image="myrepo/image")
flow.register(project_name)
But it shows up incorrectly as UniversalRun in cloud UI.
If I add the runconfig when I define the flow it works perfectly:
with Flow("myflow", DockerRun(image="myrepo/image") as flow:
Any suggestion to what I am doing wrong in the first approach would be appreciatedKevin Kho
flow.run_config
?flow.run_config = DockerRun(image="myrepo/image")
Andreas Nord
03/11/2022, 4:36 PMKevin Kho