Added PVC Protection Controller

This controller removes protection finalizer from PVCs that are being
deleted and are not referenced by any pod.
This commit is contained in:
jsafrane
2017-11-15 23:03:43 +01:00
committed by pospispa
parent a06901a868
commit 4ad4ee3153
10 changed files with 967 additions and 0 deletions

View File

@@ -359,6 +359,7 @@ func NewControllerInitializers() map[string]InitFunc {
controllers["attachdetach"] = startAttachDetachController
controllers["persistentvolume-expander"] = startVolumeExpandController
controllers["clusterrole-aggregation"] = startClusterRoleAggregrationController
controllers["pvc-protection"] = startPVCProtectionController
return controllers
}