oci config: update version
from 1.0.0-rc2-dev -> 1.0.0-rc5 (runc 1.0.0-rc2 -> 1.0.0-rc3) Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
parent
424d185294
commit
c09db4c943
1 changed files with 74 additions and 112 deletions
186
config.json
186
config.json
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"ociVersion": "1.0.0-rc2-dev",
|
"ociVersion": "1.0.0-rc5",
|
||||||
"platform": {
|
"platform": {
|
||||||
"os": "linux",
|
"os": "linux",
|
||||||
"arch": "amd64"
|
"arch": "amd64"
|
||||||
|
@ -19,44 +19,55 @@
|
||||||
],
|
],
|
||||||
"env": [
|
"env": [
|
||||||
"PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
|
"PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
|
||||||
"HOSTNAME=helloctl",
|
"TERM=xterm"
|
||||||
"TERM=xterm",
|
|
||||||
"DISTTAG=f26container",
|
|
||||||
"FGC=f26"
|
|
||||||
],
|
],
|
||||||
"cwd": "/",
|
"cwd": "/",
|
||||||
"capabilities": [
|
"capabilities": {
|
||||||
"CAP_CHOWN",
|
"bounding": [
|
||||||
"CAP_DAC_OVERRIDE",
|
"CAP_AUDIT_WRITE",
|
||||||
"CAP_FSETID",
|
"CAP_KILL",
|
||||||
"CAP_FOWNER",
|
"CAP_NET_BIND_SERVICE"
|
||||||
"CAP_MKNOD",
|
],
|
||||||
"CAP_NET_RAW",
|
"effective": [
|
||||||
"CAP_SETGID",
|
"CAP_AUDIT_WRITE",
|
||||||
"CAP_SETUID",
|
"CAP_KILL",
|
||||||
"CAP_SETFCAP",
|
"CAP_NET_BIND_SERVICE"
|
||||||
"CAP_SETPCAP",
|
],
|
||||||
"CAP_NET_BIND_SERVICE",
|
"inheritable": [
|
||||||
"CAP_SYS_CHROOT",
|
"CAP_AUDIT_WRITE",
|
||||||
"CAP_KILL",
|
"CAP_KILL",
|
||||||
"CAP_AUDIT_WRITE",
|
"CAP_NET_BIND_SERVICE"
|
||||||
"CAP_SYS_PTRACE"
|
],
|
||||||
]
|
"permitted": [
|
||||||
|
"CAP_AUDIT_WRITE",
|
||||||
|
"CAP_KILL",
|
||||||
|
"CAP_NET_BIND_SERVICE"
|
||||||
|
],
|
||||||
|
"ambient": [
|
||||||
|
"CAP_AUDIT_WRITE",
|
||||||
|
"CAP_KILL",
|
||||||
|
"CAP_NET_BIND_SERVICE"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"rlimits": [
|
||||||
|
{
|
||||||
|
"type": "RLIMIT_NOFILE",
|
||||||
|
"hard": 1024,
|
||||||
|
"soft": 1024
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"noNewPrivileges": true
|
||||||
},
|
},
|
||||||
"root": {
|
"root": {
|
||||||
"path": "./rootfs/"
|
"path": "rootfs",
|
||||||
|
"readonly": true
|
||||||
},
|
},
|
||||||
"hostname": "helloctl",
|
"hostname": "helloctl",
|
||||||
"mounts": [
|
"mounts": [
|
||||||
{
|
{
|
||||||
"destination": "/proc",
|
"destination": "/proc",
|
||||||
"type": "proc",
|
"type": "proc",
|
||||||
"source": "proc",
|
"source": "proc"
|
||||||
"options": [
|
|
||||||
"nosuid",
|
|
||||||
"noexec",
|
|
||||||
"nodev"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"destination": "/dev",
|
"destination": "/dev",
|
||||||
|
@ -65,7 +76,8 @@
|
||||||
"options": [
|
"options": [
|
||||||
"nosuid",
|
"nosuid",
|
||||||
"strictatime",
|
"strictatime",
|
||||||
"mode=755"
|
"mode=755",
|
||||||
|
"size=65536k"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -81,6 +93,28 @@
|
||||||
"gid=5"
|
"gid=5"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"destination": "/dev/shm",
|
||||||
|
"type": "tmpfs",
|
||||||
|
"source": "shm",
|
||||||
|
"options": [
|
||||||
|
"nosuid",
|
||||||
|
"noexec",
|
||||||
|
"nodev",
|
||||||
|
"mode=1777",
|
||||||
|
"size=65536k"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"destination": "/dev/mqueue",
|
||||||
|
"type": "mqueue",
|
||||||
|
"source": "mqueue",
|
||||||
|
"options": [
|
||||||
|
"nosuid",
|
||||||
|
"noexec",
|
||||||
|
"nodev"
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"destination": "/sys",
|
"destination": "/sys",
|
||||||
"type": "sysfs",
|
"type": "sysfs",
|
||||||
|
@ -97,20 +131,11 @@
|
||||||
"type": "cgroup",
|
"type": "cgroup",
|
||||||
"source": "cgroup",
|
"source": "cgroup",
|
||||||
"options": [
|
"options": [
|
||||||
"ro",
|
|
||||||
"nosuid",
|
"nosuid",
|
||||||
"noexec",
|
"noexec",
|
||||||
"nodev"
|
"nodev",
|
||||||
]
|
"relatime",
|
||||||
},
|
"ro"
|
||||||
{
|
|
||||||
"destination": "/dev/mqueue",
|
|
||||||
"type": "mqueue",
|
|
||||||
"source": "mqueue",
|
|
||||||
"options": [
|
|
||||||
"nosuid",
|
|
||||||
"noexec",
|
|
||||||
"nodev"
|
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -134,10 +159,6 @@
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"hooks": {
|
|
||||||
"prestart": [ ],
|
|
||||||
"poststop": [ ]
|
|
||||||
},
|
|
||||||
"linux": {
|
"linux": {
|
||||||
"resources": {
|
"resources": {
|
||||||
"devices": [
|
"devices": [
|
||||||
|
@ -145,89 +166,30 @@
|
||||||
"allow": false,
|
"allow": false,
|
||||||
"access": "rwm"
|
"access": "rwm"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"allow": true,
|
|
||||||
"type": "c",
|
|
||||||
"major": 1,
|
|
||||||
"minor": 5,
|
|
||||||
"access": "rwm"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"allow": true,
|
|
||||||
"type": "c",
|
|
||||||
"major": 1,
|
|
||||||
"minor": 3,
|
|
||||||
"access": "rwm"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"allow": true,
|
|
||||||
"type": "c",
|
|
||||||
"major": 1,
|
|
||||||
"minor": 9,
|
|
||||||
"access": "rwm"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"allow": true,
|
|
||||||
"type": "c",
|
|
||||||
"major": 1,
|
|
||||||
"minor": 8,
|
|
||||||
"access": "rwm"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"allow": true,
|
|
||||||
"type": "c",
|
|
||||||
"major": 5,
|
|
||||||
"minor": 0,
|
|
||||||
"access": "rwm"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"allow": true,
|
|
||||||
"type": "c",
|
|
||||||
"major": 5,
|
|
||||||
"minor": 1,
|
|
||||||
"access": "rwm"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"allow": true,
|
"allow": true,
|
||||||
"type": "c",
|
"type": "c",
|
||||||
"major": 10,
|
"major": 10,
|
||||||
"minor": 57,
|
"minor": 56,
|
||||||
"access": "rwm"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"allow": false,
|
|
||||||
"type": "c",
|
|
||||||
"major": 10,
|
|
||||||
"minor": 229,
|
|
||||||
"access": "rwm"
|
"access": "rwm"
|
||||||
}
|
}
|
||||||
],
|
]
|
||||||
"disableOOMKiller": false,
|
|
||||||
"oomScoreAdj": 0,
|
|
||||||
"cpu": {},
|
|
||||||
"pids": {
|
|
||||||
"limit": 0
|
|
||||||
},
|
|
||||||
"blockIO": {
|
|
||||||
"blkioWeight": 0
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"cgroupsPath": "system.slice:docker:8ad3dfde3644481046eace9cd586600f0416d3c43b4b9f4cc161c470859c0e17",
|
|
||||||
"namespaces": [
|
"namespaces": [
|
||||||
{
|
{
|
||||||
"type": "mount"
|
"type": "pid"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "network"
|
"type": "network"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"type": "ipc"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"type": "uts"
|
"type": "uts"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "pid"
|
"type": "mount"
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "ipc"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"maskedPaths": [
|
"maskedPaths": [
|
||||||
|
|
Loading…
Reference in a new issue