ork delete
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
| Flag | Default | Description |
|---|---|---|
--name <name> | ork-playground | Name 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
kubectlcontexts.
Notes
ork delete clusteronly removes kind clusters. It does not delete remote clusters or other Kubernetes resources.- To create a cluster:
ork create cluster.