# Uninstall

### Helm

When Bindplane is managed by Helm, it can be uninstalled with the `helm uninstall` command.

This example assumes that Bindplane was deployed with Helm using the application name "bindplane".

```
helm -n bindplane uninstall bindplane
```

### Manually

Bindplane can be cleaned up manually by deleting the namespace it was deployed to.

```bash
kubectl delete namespace bindplane
```
