open-nomad/api/resources.go

22 lines
432 B
Go
Raw Normal View History

2015-09-09 20:02:39 +00:00
package api
// Resources encapsulates the required resources of
// a given task or task group.
type Resources struct {
2015-09-23 18:14:32 +00:00
CPU int
2015-09-09 20:02:39 +00:00
MemoryMB int
DiskMB int
IOPS int
Networks []*NetworkResource
}
// NetworkResource is used to describe required network
// resources of a given task.
type NetworkResource struct {
Public bool
CIDR string
ReservedPorts []int
DynamicPorts []string
2015-09-09 20:02:39 +00:00
MBits int
}