File: doc.go

package info (click to toggle)
golang-github-gophercloud-gophercloud 1.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 11,416 kB
  • sloc: sh: 99; makefile: 21
file content (52 lines) | stat: -rw-r--r-- 1,158 bytes parent folder | download | duplicates (2)
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