File tree 1 file changed +12
-9
lines changed
pkg/cloudprovider/providers/vsphere
1 file changed +12
-9
lines changed Original file line number Diff line number Diff line change @@ -19,24 +19,23 @@ package vsphere
19
19
import (
20
20
"context"
21
21
"errors"
22
+ "fmt"
23
+ "io/ioutil"
22
24
"os"
25
+ "path/filepath"
23
26
"regexp"
24
27
"strings"
25
28
"time"
26
29
27
30
"github.com/golang/glog"
28
31
"github.com/vmware/govmomi/vim25"
29
-
30
- "fmt"
31
-
32
32
"github.com/vmware/govmomi/vim25/mo"
33
- "io/ioutil"
33
+
34
34
"k8s.io/api/core/v1"
35
35
k8stypes "k8s.io/apimachinery/pkg/types"
36
36
"k8s.io/kubernetes/pkg/cloudprovider/providers/vsphere/vclib"
37
37
"k8s.io/kubernetes/pkg/cloudprovider/providers/vsphere/vclib/diskmanagers"
38
38
"k8s.io/kubernetes/pkg/util/version"
39
- "path/filepath"
40
39
)
41
40
42
41
const (
@@ -298,11 +297,15 @@ func (vs *VSphere) cleanUpDummyVMs(dummyVMPrefix string) {
298
297
continue
299
298
}
300
299
// A write lock is acquired to make sure the cleanUp routine doesn't delete any VM's created by ongoing PVC requests.
301
- defer cleanUpDummyVMLock .Lock ()
302
- err = diskmanagers .CleanUpDummyVMs (ctx , vmFolder , dc )
303
- if err != nil {
304
- glog .V (4 ).Infof ("Unable to clean up dummy VM's in the kubernetes cluster: %q. err: %+v" , vs .cfg .Workspace .Folder , err )
300
+ cleanUpDummyVMs := func () {
301
+ cleanUpDummyVMLock .Lock ()
302
+ defer cleanUpDummyVMLock .Unlock ()
303
+ err = diskmanagers .CleanUpDummyVMs (ctx , vmFolder , dc )
304
+ if err != nil {
305
+ glog .V (4 ).Infof ("Unable to clean up dummy VM's in the kubernetes cluster: %q. err: %+v" , vs .cfg .Workspace .Folder , err )
306
+ }
305
307
}
308
+ cleanUpDummyVMs ()
306
309
}
307
310
}
308
311
You can’t perform that action at this time.
0 commit comments