[BUG] Mongodb operator does not delete PVC after scaling-down leading to resource leak
General
Escalation
General
Escalation
Description
Description
The mongodb operator updates the stateful set size if the ReplsetSpec.size gets changed (either by user-issued scaling or disabling arbiter). If ReplsetSpec.size is smaller than before, the size of the statefulset will decrease and the pod will be deleted. However, the controller does not delete the PVC used by the deleted pod, which leads to storage resource leak.
Fix
During each reconcile, we can make the operator list all the PVC used by mongodb and check whether its owner pod is still running. If not, the operator can delete the PVC as long as delete-psmdb-pvc finalizer is present.
We are willing to send a PR to deal with the resource leak problem.
Description
The mongodb operator updates the stateful set size if the
ReplsetSpec.size
gets changed (either by user-issued scaling or disabling arbiter). IfReplsetSpec.size
is smaller than before, the size of the statefulset will decrease and the pod will be deleted. However, the controller does not delete the PVC used by the deleted pod, which leads to storage resource leak.Fix
During each reconcile, we can make the operator list all the PVC used by mongodb and check whether its owner pod is still running. If not, the operator can delete the PVC as long as
delete-psmdb-pvc
finalizer is present.We are willing to send a PR to deal with the resource leak problem.