Hi all, How can we delete a launch plan when there...
# ask-the-community
c
Hi all, How can we delete a launch plan when there are too many existing launch plans?
Screenshot 2024-02-06 at 11.05.35 AM.png
It seems like to do this...
flytectl update launchplan --archive ......
Copy code
(Deprecated) disable the launch plan schedule (if it has an active schedule associated with it).
https://docs.flyte.org/projects/flytectl/en/stable/gen/flytectl_update_launchplan.html
l
you have to also specified the project and domain I think
try this one, with deactivate command
acticate:
flytectl update launchplan -p flytesnacks -d development core.control_flow.merge_sort.merge_sort --version v1 --activate
deactivate:
flytectl update launchplan -p flytesnacks -d development core.control_flow.merge_sort.merge_sort --version v1 --deactivate
c
Yes, got it, thx
l
nice