Uninstalling OpenEBS
This section is to describe about the graceful deletion/uninstall of your OpenEBS cluster. OpenEBS cluster has three different storage engine, cStor,Local PV and Jiva. The deletion for the data from the disks after this operation is different for these storage Engines.
#
Uninstall OpenEBS GracefullyThe recommended steps to uninstall the OpenEBS cluster gracefully is as follows.
Delete all the OpenEBS PVCs that were created. You can check the status of PVC using the following command.
There should not have any entries of OpenEBS PVC.
Delete all the SPCs (In case of cStor storage engine). You can check the status of SPC using the following command.
There should not have any entries of OpenEBS SPC.
Ensure that there are no stale BlockDeviceClaims present in the cluster. You can verify the status using the following command.
If present, remove the finalizer entry from the corresponding BDC. To remove the finalizer, use the following command
Ensure that no OpenEBS volume or pool pods are in terminating state . You can check the running status of Pods using the following command.
Ensure that no cStor volume custom resources are present using the following command.
Ensure to delete OpenEBS related
StorageClass
. You can check the status of OpenEBS related StorageClasses using the following command.Ensure that there are no stale BlockDevices present in the cluster. You can verify the status using the following command.
If present, remove the finalizer entry from the corresponding BD and then delete it. To remove the finalizer, use the following command
Delete the OpenEBS namespace using helm either via
helm delete <chart name> --purge
(if helm version is v2) orhelm uninstall <chart name> -n <namespace>
(if helm version is v3). It can also be deleted using kubectl askubectl delete ns openebs
or you can delete the correspondingopenebs-operator
YAML usingkubectl delete -f <openebs-operator.yaml>
. You can check the status of OpenEBS namespace using the following command.Uninstalling the OpenEBS doesn't automatically delete the CRDs that were created. If you would like to completely remove the CRDs and the associated objects, run the following commands:
OpenEBS also installs some generic Kubernetes/CSI CRDs. In case OpenEBS is the only storage installed on your cluster, you can proceed to delete the following CRDs as well.
After removing a PVC, you may find a directory
/var/openebs/
on the nodes where the replica was created having some of the volume sub-directory to store metadata info related to the volume, for exampleshared-pvc-69adec76-665e-46bc-b957-2b2f58338429-target
with no content. This can be removed manually using therm -rf
command once you successfully uninstall the OpenEBS cluster.
NOTE
An uninstall script is available here to perform all the above steps.
#
Deletion of Jiva VolumesAs part of deleting the Jiva Volumes - OpenEBS launches scrub jobs for clearing the data from the nodes. This job will be running in OpenEBS installed namespace. The completed jobs need to be cleared using the following command.
In addition, the job is set with a TTL to get cleaned up, if the Kubernetes version is greater than 1.12. However, for the feature to work, the Kubernetes alpha flag needs to be enabled in the cluster. More information can be read from here.