is it possible to delete a project using `flytectl...
# ask-the-community
a
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
to delete the project, try
Copy code
flytectl update project -p flytesnacks --archive
a
this worked, thank you
e
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)
403 Views