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
create_flow_run
can take in a RunConfig hereChristian Nuss
03/14/2022, 6:22 PMKevin Kho
William Grim
03/14/2022, 6:28 PMChristian Nuss
03/14/2022, 6:29 PMwith Flow("flow-2", run_config=KubernetesRun(...)):
registeredKevin Kho
Christian Nuss
03/14/2022, 6:32 PMKevin Kho
flow.storage.add_default_labels = False
and then try re-registering.Christian Nuss
03/14/2022, 6:38 PMKevin Kho
Christian Nuss
03/14/2022, 6:42 PMKevin Kho
Christian 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