6 Uninstalling Binding Support Function

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

To uninstall, enter this command:
helm delete BSF_NAME
where BSF_NAME is the release name used by helm command.

Helm keeps a record of its releases, so you can still re-activate the release after you uninstall it.

To completely remove the release from the cluster, add the --purge option to the command:
helm delete --purge BSF_NAME
For example, to completely remove a release named "ocbsf", you'd enter this command:
helm delete --purge ocbsf

Deleting Kubernetes namespace

To delete kubernetes namespace, enter this command:
kubectl delete namespace BSF_NAMESPACE
where BSF_NAMESPACE is the deployment namespace used by helm command.
For example, to delete a kubernetes namespace named "ocbsf", you'd enter this command:
kubectl delete namespace ocbsf