ockam reset


Unsafe

Unsafe features are considered dangerous and should be avoided if possible. Use them with caution.

ockam reset [OPTIONS]

The reset command is dangerous and should be used with caution as it will remove all local state PERMANENTLY. This behaviour can be useful for cleaning up your development environment and starting afresh from scratch. However, you'll typically want to use specific delete commands such as node delete, identity delete, and space delete for more granular control on deletes.

Note that running reset will also sign you out of your Ockam account. You can sign in again and reactivate your machine with ockam enroll.

Options

  • -y, --yes (optional)
    Confirm the reset without prompting

  • --all (optional)
    Remove your spaces from the Orchestrator

Examples

# Removes the local Ockam configuration including all Identities and Nodes.
$ ockam reset

# Removes orchestrator resources (i.e. Spaces and Projects)
# in addition to deleting the local state.
$ ockam reset --all

# To confirm without prompting.
$ ockam reset -y