diff options
Diffstat (limited to 'sampleData.go')
| -rw-r--r-- | sampleData.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sampleData.go b/sampleData.go index 02c6a0b..c87fcd0 100644 --- a/sampleData.go +++ b/sampleData.go @@ -21,7 +21,7 @@ func CreateSampleDroplet(hostname string) *Droplet { d := &Droplet{ Uuid: id.String(), Hostname: hostname, - Comment: "this is a droplet for testing", + Notes: "this is a droplet for testing", } return d } @@ -47,7 +47,7 @@ func CreateSampleCluster(total int) *Cluster { for i := 0; i < total; i++ { hostname := fmt.Sprintf("bmath%d.wit.com", i) d := CreateSampleDroplet(hostname) - d.Comment = fmt.Sprintf("Sample Droplet %d", i) + d.Notes = fmt.Sprintf("Sample Droplet %d", i) d.PreferredHypervisor = fmt.Sprintf("farm%d", i) if d.PreferredHypervisor == "farm4" { d.Cpus = 16 |
