# Uninstalling a Cluster

> Octelium documentation. Canonical page: <https://octelium.com/docs/octelium/latest/install/cluster/uninstall>.

> **Note:**
>
> If you installed the *Cluster* via the quick installation guide, then you can uninstall the *Cluster* as shown [here](https://octelium.com/docs/octelium/latest/overview/quick-install.md#uninstall-the-cluster).

You can simply uninstall the *Cluster* via the `octops uninstall` command as follows:

```bash
octops uninstall <DOMAIN>
```

By default, the command uses the kubeconfig located at `$HOME/.kube/config` or if explicitly set by the `KUBECONFIG` environment variable. You can also explicitly set the underlying Kubernetes cluster kubeconfig file path via the `--kubeconfig` flag as follows:

```bash
octops uninstall <DOMAIN> --kubeconfig </PATH/TO/CLUSTER/KUBECONFIG>
```

> **Note:**
>
> Almost all Kubernetes resources created by Octelium are namespaced and exist in the `octelium` Kubernetes namespace. Therefore you can effectively uninstall the Octelium *Cluster* by deleting that Kubernetes namespace as follows:
>
> ```bash
> kubectl delete ns octelium
> ```
