diff options
author | Matthew Heon <mheon@redhat.com> | 2018-03-12 10:01:44 -0400 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-03-12 14:38:41 +0000 |
commit | 33fe3287a3b78d82b53e4d02776ddcb4ce5cfd05 (patch) | |
tree | 9b76b9378f152a07cf173ee832ee14ff6eed4601 /test/testdata/container_config_sleep.json | |
parent | b78a450cd5e0cf3e65ec7cd61bea4af6e5071e1c (diff) | |
download | podman-33fe3287a3b78d82b53e4d02776ddcb4ce5cfd05.tar.gz podman-33fe3287a3b78d82b53e4d02776ddcb4ce5cfd05.tar.bz2 podman-33fe3287a3b78d82b53e4d02776ddcb4ce5cfd05.zip |
Remove unused configs for testing CRI-O
Signed-off-by: Matthew Heon <mheon@redhat.com>
Closes: #473
Approved by: rhatdan
Diffstat (limited to 'test/testdata/container_config_sleep.json')
-rw-r--r-- | test/testdata/container_config_sleep.json | 71 |
1 files changed, 0 insertions, 71 deletions
diff --git a/test/testdata/container_config_sleep.json b/test/testdata/container_config_sleep.json deleted file mode 100644 index c86ff7011..000000000 --- a/test/testdata/container_config_sleep.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "metadata": { - "name": "container999", - "attempt": 1 - }, - "image": { - "image": "docker.io/library/busybox:latest" - }, - "command": [ - "sleep", - "9999" - ], - "args": [], - "working_dir": "/", - "envs": [ - { - "key": "PATH", - "value": "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" - }, - { - "key": "TERM", - "value": "xterm" - }, - { - "key": "TESTDIR", - "value": "test/dir1" - }, - { - "key": "TESTFILE", - "value": "test/file1" - } - ], - "labels": { - "type": "small", - "batch": "no" - }, - "annotations": { - "owner": "dragon", - "daemon": "crio" - }, - "privileged": true, - "log_path": "", - "stdin": false, - "stdin_once": false, - "tty": false, - "linux": { - "resources": { - "cpu_period": 10000, - "cpu_quota": 20000, - "cpu_shares": 512, - "oom_score_adj": 30 - }, - "security_context": { - "readonly_rootfs": false, - "selinux_options": { - "user": "system_u", - "role": "system_r", - "type": "svirt_lxc_net_t", - "level": "s0:c4,c5" - }, - "capabilities": { - "add_capabilities": [ - "setuid", - "setgid" - ], - "drop_capabilities": [ - ] - } - } - } -} |