> ## Documentation Index
> Fetch the complete documentation index at: https://docs.binarly.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Uninstallation

To uninstall the Binarly Transparency Platform, you can use Helm or ArgoCD, depending on how you initially deployed the platform.

## Helm

If you used Helm to install the platform, you can uninstall it with the following command:

```bash theme={null}
helm uninstall binarly-transparency-platform --namespace binarly-transparency-platform
```

This command will remove the application and all its resources from the specified namespace.

## ArgoCD

If you used ArgoCD to deploy the platform, you can uninstall it with the following command:

```bash theme={null}
argocd app delete binarly-transparency-platform
```

This command will remove the application and all its resources from the specified namespace.

## FluxCD

If you used FluxCD to deploy the platform, you can uninstall it by deleting the HelmRelease resource:

```bash theme={null}
kubectl delete helmrelease binarly-transparency-platform --namespace binarly-transparency-platform
```

This command will remove the HelmRelease and all associated resources from the specified namespace.
