summaryrefslogtreecommitdiff
path: root/sampleData.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-10-31 04:21:46 -0500
committerJeff Carr <[email protected]>2024-10-31 04:21:46 -0500
commitc2229b65ab041aa80ff7b99b982b2e3061ba0ed7 (patch)
tree11b7235b79e7b4ed8fc7b587962e74e4d20ea425 /sampleData.go
parent1352c3c49f8d34f128dce6d7f186b5e498f9ea46 (diff)
complies. made 'droplet.Current' for tmp data
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'sampleData.go')
-rw-r--r--sampleData.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/sampleData.go b/sampleData.go
index 990eeb7..0085822 100644
--- a/sampleData.go
+++ b/sampleData.go
@@ -21,7 +21,6 @@ func CreateSampleDroplet(hostname string) *Droplet {
d := &Droplet{
Uuid: id.String(),
Hostname: hostname,
- Notes: "this is a droplet for testing",
}
return d
}
@@ -75,7 +74,6 @@ func CreateSampleCluster(total int) *Cluster {
for i := 0; i < total; i++ {
hostname := fmt.Sprintf("bmath%d.wit.com", i)
d := CreateSampleDroplet(hostname)
- d.Notes = fmt.Sprintf("Sample Droplet %d", i)
d.PreferredHypervisor = fmt.Sprintf("farm%d", i)
if d.PreferredHypervisor == "farm4" {
d.Cpus = 16