Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
ea32f06d
Commit
ea32f06d
authored
Aug 14, 2017
by
FengyunPan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[VSphere] Don't return err when node doesn't exist in DetachDisk()
parent
b85743b8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
vsphere.go
pkg/cloudprovider/providers/vsphere/vsphere.go
+6
-0
No files found.
pkg/cloudprovider/providers/vsphere/vsphere.go
View file @
ea32f06d
...
...
@@ -498,6 +498,12 @@ func (vs *VSphere) DetachDisk(volPath string, nodeName k8stypes.NodeName) error
}
vm
,
err
:=
vs
.
getVMByName
(
ctx
,
nodeName
)
if
err
!=
nil
{
// If node doesn't exist, disk is already detached from node.
if
vclib
.
IsNotFound
(
err
)
{
glog
.
Infof
(
"Node %q does not exist, disk %s is already detached from node."
,
nodeNameToVMName
(
nodeName
),
volPath
)
return
nil
}
glog
.
Errorf
(
"Failed to get VM object for node: %q. err: +%v"
,
nodeNameToVMName
(
nodeName
),
err
)
return
err
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment