4 Uninstalling Binding Support Function

When you uninstall a Helm chart from your Binding Support Function (BSF) deployment, it removes only the Kubernetes objects that it created during installation.

Run any of the following commands to uninstall BSF:

For Helm2:
helm delete --purge <release_name>
where release_name is the release name used by helm command.
For Helm3:
helm3 delete <release_name> -n <release_namespace>
where release_name is the release name used by helm command.
For example, to uninstall a release named "ocbsf",enter this command:
helm delete --purge ocbsf

Cleaning Up Database

To clean up database, enter this command:
DROP DATABASE IF EXISTS database_name;
where database_name is the database created for this release.
For example:
DROP DATABASE IF EXISTS 'bsf_release_1_5';