6c9628cdb1
* Rename 'vendor/src' -> 'vendor' * Ignore vendor/ instead of vendor/src/ for lint * Rename 'cmd/client' -> 'cmd/ocic' to make it 'go install'able * Rename 'cmd/server' -> 'cmd/ocid' to make it 'go install'able * Update Makefile to build and install from GOPATH * Update tests to locate ocid/ocic in GOPATH/bin * Search for binaries in GOPATH/bin instead of PATH * Install tools using `go get -u`, so they are updated on each run Signed-off-by: Jonathan Yu <jawnsy@redhat.com>
74 lines
1.5 KiB
Go
74 lines
1.5 KiB
Go
package generate
|
|
|
|
import (
|
|
rspec "github.com/opencontainers/runtime-spec/specs-go"
|
|
)
|
|
|
|
func (g *Generator) initSpec() {
|
|
if g.spec == nil {
|
|
g.spec = &rspec.Spec{}
|
|
}
|
|
}
|
|
|
|
func (g *Generator) initSpecAnnotations() {
|
|
g.initSpec()
|
|
if g.spec.Annotations == nil {
|
|
g.spec.Annotations = make(map[string]string)
|
|
}
|
|
}
|
|
|
|
func (g *Generator) initSpecLinux() {
|
|
g.initSpec()
|
|
if g.spec.Linux == nil {
|
|
g.spec.Linux = &rspec.Linux{}
|
|
}
|
|
}
|
|
|
|
func (g *Generator) initSpecLinuxSysctl() {
|
|
g.initSpecLinux()
|
|
if g.spec.Linux.Sysctl == nil {
|
|
g.spec.Linux.Sysctl = make(map[string]string)
|
|
}
|
|
}
|
|
|
|
func (g *Generator) initSpecLinuxSeccomp() {
|
|
g.initSpecLinux()
|
|
if g.spec.Linux.Seccomp == nil {
|
|
g.spec.Linux.Seccomp = &rspec.Seccomp{}
|
|
}
|
|
}
|
|
|
|
func (g *Generator) initSpecLinuxResources() {
|
|
g.initSpecLinux()
|
|
if g.spec.Linux.Resources == nil {
|
|
g.spec.Linux.Resources = &rspec.Resources{}
|
|
}
|
|
}
|
|
|
|
func (g *Generator) initSpecLinuxResourcesCPU() {
|
|
g.initSpecLinuxResources()
|
|
if g.spec.Linux.Resources.CPU == nil {
|
|
g.spec.Linux.Resources.CPU = &rspec.CPU{}
|
|
}
|
|
}
|
|
|
|
func (g *Generator) initSpecLinuxResourcesMemory() {
|
|
g.initSpecLinuxResources()
|
|
if g.spec.Linux.Resources.Memory == nil {
|
|
g.spec.Linux.Resources.Memory = &rspec.Memory{}
|
|
}
|
|
}
|
|
|
|
func (g *Generator) initSpecLinuxResourcesNetwork() {
|
|
g.initSpecLinuxResources()
|
|
if g.spec.Linux.Resources.Network == nil {
|
|
g.spec.Linux.Resources.Network = &rspec.Network{}
|
|
}
|
|
}
|
|
|
|
func (g *Generator) initSpecLinuxResourcesPids() {
|
|
g.initSpecLinuxResources()
|
|
if g.spec.Linux.Resources.Pids == nil {
|
|
g.spec.Linux.Resources.Pids = &rspec.Pids{}
|
|
}
|
|
}
|