Nuno Martins
09/25/2023, 3:30 PMKevin Su
09/25/2023, 5:54 PMlabels_model = Labels({"label": "foo"})
annotations_model = Annotations({"annotate": "bar"})
launch_plan.LaunchPlan.get_or_create(
workflow=wf,
name="your_lp_name",
labels=labels_model,
annotations=annotations_model,
)
Nuno Martins
09/26/2023, 8:00 AM