summaryrefslogtreecommitdiff
path: root/sampleData.go
diff options
context:
space:
mode:
Diffstat (limited to 'sampleData.go')
-rw-r--r--sampleData.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/sampleData.go b/sampleData.go
index 03af6ab..e310dec 100644
--- a/sampleData.go
+++ b/sampleData.go
@@ -5,6 +5,7 @@ import (
"log"
"github.com/google/uuid"
+ // anypb "google.golang.org/protobuf/types/known/anypb"
)
//
@@ -48,6 +49,11 @@ func CreateSampleCluster(total int) *Cluster {
d := CreateSampleDroplet(hostname)
d.Comment = fmt.Sprintf("Sample Droplet %d", i)
d.PreferredHypervisor = fmt.Sprintf("farm%d", i)
+ if d.PreferredHypervisor == "farm4" {
+ d.Cpus = 16
+ d.Memory = "256 MB"
+ // d.Memory = "258 MB"
+ }
c.Droplets = append(c.Droplets, d)
}