Christian Nuss
03/14/2022, 6:20 PMcreate_flow_run.run(flow_name="flow-2")
within a task created by a KubernetesRun
...
assuming i have
with Flow("flow-1", run_config=KubernetesRun(...)):
... creates task that does a create_flow_run.run(flow_name="flow-2") ...
should flow-2
receive/inherit the run_config
from flow-1
?Kevin Kho
03/14/2022, 6:21 PMcreate_flow_run
can take in a RunConfig hereChristian Nuss
03/14/2022, 6:22 PMKevin Kho
03/14/2022, 6:23 PMWilliam Grim
03/14/2022, 6:28 PMChristian Nuss
03/14/2022, 6:29 PMwith Flow("flow-2", run_config=KubernetesRun(...)):
registeredKevin Kho
03/14/2022, 6:32 PMChristian Nuss
03/14/2022, 6:32 PMKevin Kho
03/14/2022, 6:37 PMflow.storage.add_default_labels = False
and then try re-registering.Christian Nuss
03/14/2022, 6:38 PMKevin Kho
03/14/2022, 6:39 PMChristian Nuss
03/14/2022, 6:42 PMKevin Kho
03/14/2022, 6:42 PMChristian Nuss
03/14/2022, 6:44 PMadd_default_labels=False
there too? (feels like i should for consistency)William Grim
03/14/2022, 6:57 PMAnna Geller
03/14/2022, 7:17 PM