forked from evergreen-ci/evergreen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config_containerpools.go
78 lines (66 loc) · 2.28 KB
/
config_containerpools.go
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
package evergreen
import (
"context"
"github.com/pkg/errors"
"go.mongodb.org/mongo-driver/bson"
"go.mongodb.org/mongo-driver/mongo"
"go.mongodb.org/mongo-driver/mongo/options"
)
// ContainerPool holds settings for each container pool
type ContainerPool struct {
// Distro of parent host that hosts containers
Distro string `bson:"distro" json:"distro" yaml:"distro"`
// ID of container pool
Id string `bson:"id" json:"id" yaml:"id"`
// Maximum number of containers per parent host with this container pool
MaxContainers int `bson:"max_containers" json:"max_containers" yaml:"max_containers"`
// Port number to start at for SSH connections
Port uint16 `bson:"port" json:"port" yaml:"port"`
// # of images that can be on a single host, defaults to 3 if not set
MaxImages int
}
type ContainerPoolsConfig struct {
Pools []ContainerPool `bson:"pools" json:"pools" yaml:"pools"`
}
func (c *ContainerPoolsConfig) SectionId() string { return "container_pools" }
func (c *ContainerPoolsConfig) Get(ctx context.Context) error {
res := GetEnvironment().DB().Collection(ConfigCollection).FindOne(ctx, byId(c.SectionId()))
if err := res.Err(); err != nil {
if err == mongo.ErrNoDocuments {
*c = ContainerPoolsConfig{}
return nil
}
return errors.Wrapf(err, "getting config section '%s'", c.SectionId())
}
if err := res.Decode(&c); err != nil {
return errors.Wrapf(err, "decoding config section '%s'", c.SectionId())
}
return nil
}
func (c *ContainerPoolsConfig) Set(ctx context.Context) error {
_, err := GetEnvironment().DB().Collection(ConfigCollection).UpdateOne(ctx, byId(c.SectionId()), bson.M{
"$set": bson.M{
poolsKey: c.Pools,
},
}, options.Update().SetUpsert(true))
return errors.Wrapf(err, "updating config section '%s'", c.SectionId())
}
// GetContainerPool retrieves the container pool with a given id from
// a ContainerPoolsConfig struct
func (c *ContainerPoolsConfig) GetContainerPool(id string) *ContainerPool {
for _, pool := range c.Pools {
if pool.Id == id {
return &pool
}
}
return nil
}
func (c *ContainerPoolsConfig) ValidateAndDefault() error {
// ensure that max_containers is positive
for _, pool := range c.Pools {
if pool.MaxContainers <= 0 {
return errors.Errorf("container pool max containers must be positive integer")
}
}
return nil
}