Deleting a PostgreSQL database
Written by
Updated at July 24, 2026
If you have a PostgreSQL database in your cluster, you can delete it.
Warning
Once deleted, the database and all its data are removed from the cluster. This operation cannot be reversed.
Using the CLI
- Find the name of the resource in the list of databases:
kubectl get PostgresqlDatabase -n <project_name>. - Delete the resource:
kubectl delete PostgresqlDatabase <resource_name> -n <project_name>.