Skip to content

Commit

Permalink
Merge pull request #1007 from KentaTada/Fix-Namespaces-to-use-LinuxNa…
Browse files Browse the repository at this point in the history
…mespaceType

Fix Namespaces to use LinuxNamespaceType
  • Loading branch information
crosbymichael authored May 7, 2019
2 parents a1b50f6 + fbda535 commit 5b71a03
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions specs-go/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -183,17 +183,17 @@ const (
// PIDNamespace for isolating process IDs
PIDNamespace LinuxNamespaceType = "pid"
// NetworkNamespace for isolating network devices, stacks, ports, etc
NetworkNamespace = "network"
NetworkNamespace LinuxNamespaceType = "network"
// MountNamespace for isolating mount points
MountNamespace = "mount"
MountNamespace LinuxNamespaceType = "mount"
// IPCNamespace for isolating System V IPC, POSIX message queues
IPCNamespace = "ipc"
IPCNamespace LinuxNamespaceType = "ipc"
// UTSNamespace for isolating hostname and NIS domain name
UTSNamespace = "uts"
UTSNamespace LinuxNamespaceType = "uts"
// UserNamespace for isolating user and group IDs
UserNamespace = "user"
UserNamespace LinuxNamespaceType = "user"
// CgroupNamespace for isolating cgroup hierarchies
CgroupNamespace = "cgroup"
CgroupNamespace LinuxNamespaceType = "cgroup"
)

// LinuxIDMapping specifies UID/GID mappings
Expand Down

0 comments on commit 5b71a03

Please sign in to comment.