mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-08 11:38:15 +00:00
Merge pull request #117077 from pacoxu/fsquota-cleanup
skip clear quota if FSQuotaMonitoring is disabled
This commit is contained in:
commit
1f0e718585
@ -519,10 +519,12 @@ func (ed *emptyDir) TearDownAt(dir string) error {
|
||||
}
|
||||
|
||||
func (ed *emptyDir) teardownDefault(dir string) error {
|
||||
// Remove any quota
|
||||
err := fsquota.ClearQuota(ed.mounter, dir)
|
||||
if err != nil {
|
||||
klog.Warningf("Warning: Failed to clear quota on %s: %v", dir, err)
|
||||
if utilfeature.DefaultFeatureGate.Enabled(features.LocalStorageCapacityIsolationFSQuotaMonitoring) {
|
||||
// Remove any quota
|
||||
err := fsquota.ClearQuota(ed.mounter, dir)
|
||||
if err != nil {
|
||||
klog.Warningf("Warning: Failed to clear quota on %s: %v", dir, err)
|
||||
}
|
||||
}
|
||||
// Renaming the directory is not required anymore because the operation executor
|
||||
// now handles duplicate operations on the same volume
|
||||
|
Loading…
Reference in New Issue
Block a user