mirror of
https://github.com/kemko/nomad.git
synced 2026-01-02 16:35:44 +03:00
11 lines
337 B
Go
11 lines
337 B
Go
package structs
|
|
|
|
import cgroupConfig "github.com/opencontainers/runc/libcontainer/configs"
|
|
|
|
// IsolationConfig has information about the isolation mechanism the executor
|
|
// uses to put resource constraints and isolation on the user process
|
|
type IsolationConfig struct {
|
|
Cgroup *cgroupConfig.Cgroup
|
|
CgroupPaths map[string]string
|
|
}
|