Merge pull request #22793 from justinsb/fix_22792

Auto commit by PR queue bot
This commit is contained in:
k8s-merge-robot
2016-03-11 20:37:25 -08:00
2 changed files with 13 additions and 4 deletions

View File

@@ -148,7 +148,7 @@ func (util *AWSDiskUtil) CreateVolume(c *awsElasticBlockStoreProvisioner) (strin
requestGB := int(volume.RoundUpSize(requestBytes, 1024*1024*1024))
volumeOptions := &aws.VolumeOptions{
CapacityGB: requestGB,
Tags: &tags,
Tags: tags,
}
name, err := cloud.CreateDisk(volumeOptions)