Skip to content

Commit

Permalink
Do not attach volume on creation
Browse files Browse the repository at this point in the history
  • Loading branch information
LBGarber committed Oct 26, 2021
1 parent f4fc843 commit f52e8a4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -190,9 +190,9 @@ func (driver *linodeVolumeDriver) Create(req *volume.CreateRequest) error {
}

createOpts := linodego.VolumeCreateOptions{
Label: req.Name,
LinodeID: driver.instanceID,
Size: size,
Label: req.Name,
Region: driver.region,
Size: size,
}

if fsOpt, ok := req.Options["filesystem"]; ok {
Expand Down

0 comments on commit f52e8a4

Please sign in to comment.