ork delete

1 min read

Delete Orkestra infrastructure resources.

ork delete <subcommand> [flags]

Subcommands

ork delete cluster

Delete a local kind cluster created by ork create cluster.

ork delete cluster [flags]

Flags

FlagDefaultDescription
--name <name>ork-playgroundName of the kind cluster to delete

Examples

Delete the default playground cluster:

ork delete cluster

Delete a named cluster:

ork delete cluster --name ork-e2e

Behavior

  • Calls kind delete cluster --name <name>.
  • Safe to call when the cluster does not exist — kind exits cleanly.
  • Does not affect any other kubectl contexts.

Notes

  • ork delete cluster only removes kind clusters. It does not delete remote clusters or other Kubernetes resources.
  • To create a cluster: ork create cluster.