1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
/*
Package schedulerhints extends the volume create request with the ability to
specify additional parameters which determine where the volume will be
created in the OpenStack cloud.
Example to Place Volume B on a Different Host than Volume A
schedulerHints := schedulerhints.SchedulerHints{
DifferentHost: []string{
"volume-a-uuid",
}
}
volumeCreateOpts := volumes.CreateOpts{
Name: "volume_b",
Size: 10,
}
createOpts := schedulerhints.CreateOptsExt{
VolumeCreateOptsBuilder: volumeCreateOpts,
SchedulerHints: schedulerHints,
}
volume, err := volumes.Create(computeClient, createOpts).Extract()
if err != nil {
panic(err)
}
Example to Place Volume B on the Same Host as Volume A
schedulerHints := schedulerhints.SchedulerHints{
SameHost: []string{
"volume-a-uuid",
}
}
volumeCreateOpts := volumes.CreateOpts{
Name: "volume_b",
Size: 10
}
createOpts := schedulerhints.CreateOptsExt{
VolumeCreateOptsBuilder: volumeCreateOpts,
SchedulerHints: schedulerHints,
}
volume, err := volumes.Create(computeClient, createOpts).Extract()
if err != nil {
panic(err)
}
*/
package schedulerhints
|