https://flyte.org logo
#ask-the-community
Title
# ask-the-community
a

Alex Pozimenko

10/21/2022, 9:59 PM
is it possible to delete a project using
flytectl
? The documentation says that
flytectl delete
can do that (here), but then I run the tool, project is not listed in available commands:
Copy code
flytectl delete --help

Delete a resource; if an execution:
::

 flytectl delete execution kxd1i72850  -d development  -p flytesnacks

Usage:
  flytectl delete [command]

Available Commands:
  cluster-resource-attribute Deletes matchable resources of cluster attributes.
  execution                  Terminates/deletes execution resources.
  execution-cluster-label    Deletes matchable resources of execution cluster label.
  execution-queue-attribute  Deletes matchable resources of execution queue attributes.
  plugin-override            Deletes matchable resources of plugin overrides.
  task-resource-attribute    Deletes matchable resources of task attributes.
  workflow-execution-config  Deletes matchable resources of workflow execution config.
k

Kevin Su

10/21/2022, 10:19 PM
to delete the project, try
Copy code
flytectl update project -p flytesnacks --archive
a

Alex Pozimenko

10/21/2022, 10:22 PM
this worked, thank you
e

Eduardo Apolinario (eapolinario)

10/21/2022, 10:22 PM
Keep in mind that the project is not deleted from the db (so you can bring it back if you pass
--activate
if need be)
96 Views