From 77c5bd021d526dc60ae651532135b0337c25070b Mon Sep 17 00:00:00 2001 From: Ian Campbell Date: Wed, 26 Jul 2017 11:58:19 +0100 Subject: [PATCH 01/12] test-kernel-config: Rework for multistage build and package.mk Network is required to fetch the check script. Signed-off-by: Ian Campbell --- test/pkg/kernel-config/Dockerfile | 14 ++++++++++---- test/pkg/kernel-config/Makefile | 30 +++--------------------------- 2 files changed, 13 insertions(+), 31 deletions(-) diff --git a/test/pkg/kernel-config/Dockerfile b/test/pkg/kernel-config/Dockerfile index a0a47bb58..00b1aa559 100644 --- a/test/pkg/kernel-config/Dockerfile +++ b/test/pkg/kernel-config/Dockerfile @@ -1,6 +1,12 @@ -FROM alpine:3.5 -RUN apk update && apk upgrade && apk add --no-cache bash -ADD https://raw.githubusercontent.com/docker/docker/master/contrib/check-config.sh /check-config.sh -ADD . ./ +FROM linuxkit/alpine:34af9cb1990debd17fae6d4198c62ce3910d9908 AS mirror + +RUN mkdir -p /out/etc/apk && cp -r /etc/apk/* /out/etc/apk/ +RUN apk add --no-cache --initdb -p /out alpine-baselayout busybox musl bash + +ADD https://raw.githubusercontent.com/docker/docker/master/contrib/check-config.sh /out/check-config.sh +ADD . ./out + +FROM scratch +COPY --from=mirror /out / ENTRYPOINT ["/bin/sh", "/check.sh"] LABEL org.mobyproject.config='{"readonly": true, "binds": ["/lib/modules:/lib/modules", "/dev:/dev", "/sys:/sys"], "capabilities": ["all"]}' diff --git a/test/pkg/kernel-config/Makefile b/test/pkg/kernel-config/Makefile index 3ae702705..72f1ad11b 100644 --- a/test/pkg/kernel-config/Makefile +++ b/test/pkg/kernel-config/Makefile @@ -1,29 +1,5 @@ -.PHONY: tag push - -BASE=alpine:3.5 IMAGE=test-kernel-config +DEPS=$(wildcard *.sh) +NETWORK=1 -default: push - -hash: Dockerfile check.sh check-kernel-config.sh - DOCKER_CONTENT_TRUST=1 docker pull $(BASE) - tar cf - $^ | docker build --no-cache -t $(IMAGE):build - - docker run --rm --entrypoint=/bin/sh $(IMAGE):build -c "cat $^ /lib/apk/db/installed | sha1sum" | sed 's/ .*//' > hash - -push: hash - DOCKER_CONTENT_TRUST=1 docker pull linuxkit/$(IMAGE):$(shell cat hash) || \ - (docker tag $(IMAGE):build linuxkit/$(IMAGE):$(shell cat hash) && \ - DOCKER_CONTENT_TRUST=1 docker push linuxkit/$(IMAGE):$(shell cat hash)) - docker rmi $(IMAGE):build - rm -f hash - -tag: hash - docker pull linuxkit/$(IMAGE):$(shell cat hash) || \ - docker tag $(IMAGE):build linuxkit/$(IMAGE):$(shell cat hash) - docker rmi $(IMAGE):build - rm -f hash - -clean: - rm -f hash - -.DELETE_ON_ERROR: +include ../../../pkg/package.mk From 43bd083cf15bae435c9a7d44e66773bd75238534 Mon Sep 17 00:00:00 2001 From: Ian Campbell Date: Wed, 26 Jul 2017 12:03:15 +0100 Subject: [PATCH 02/12] test-kernel-commit: Pull in a specific check-config.sh This makes the package actually build reproducibly, with the downside that it requires changing the hash. Perhaps this should move to tools/alpine. Signed-off-by: Ian Campbell --- test/pkg/kernel-config/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/pkg/kernel-config/Dockerfile b/test/pkg/kernel-config/Dockerfile index 00b1aa559..a096d33fd 100644 --- a/test/pkg/kernel-config/Dockerfile +++ b/test/pkg/kernel-config/Dockerfile @@ -3,7 +3,8 @@ FROM linuxkit/alpine:34af9cb1990debd17fae6d4198c62ce3910d9908 AS mirror RUN mkdir -p /out/etc/apk && cp -r /etc/apk/* /out/etc/apk/ RUN apk add --no-cache --initdb -p /out alpine-baselayout busybox musl bash -ADD https://raw.githubusercontent.com/docker/docker/master/contrib/check-config.sh /out/check-config.sh +ENV DOCKER_CHECK_CONFIG_COMMIT=72cda6a6c2f25854bea2d69168082684f2c9feca +ADD https://raw.githubusercontent.com/docker/docker/${DOCKER_CHECK_CONFIG_COMMIT}/contrib/check-config.sh /out/check-config.sh ADD . ./out FROM scratch From 49bb46010581c3069359902b7b33346123d8d863 Mon Sep 17 00:00:00 2001 From: Ian Campbell Date: Wed, 26 Jul 2017 12:04:53 +0100 Subject: [PATCH 03/12] Update test-kernel-config hashes. Signed-off-by: Ian Campbell --- test/cases/020_kernel/000_config_4.4.x/test-kernel-config.yml | 2 +- test/cases/020_kernel/001_config_4.9.x/test-kernel-config.yml | 2 +- test/cases/020_kernel/003_config_4.11.x/test-kernel-config.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/cases/020_kernel/000_config_4.4.x/test-kernel-config.yml b/test/cases/020_kernel/000_config_4.4.x/test-kernel-config.yml index 56e3abc33..e9e8bef7f 100644 --- a/test/cases/020_kernel/000_config_4.4.x/test-kernel-config.yml +++ b/test/cases/020_kernel/000_config_4.4.x/test-kernel-config.yml @@ -6,7 +6,7 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: check-kernel-config - image: linuxkit/test-kernel-config:9f0b6b012ad86f22d6ad488cdd870a37fa70bc75 + image: linuxkit/test-kernel-config:271aa181b78ca9c6e463dfc1107cf9da6090463d - name: poweroff image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 command: ["/bin/sh", "/poweroff.sh", "3"] diff --git a/test/cases/020_kernel/001_config_4.9.x/test-kernel-config.yml b/test/cases/020_kernel/001_config_4.9.x/test-kernel-config.yml index d10abd6b3..d69c1ab82 100644 --- a/test/cases/020_kernel/001_config_4.9.x/test-kernel-config.yml +++ b/test/cases/020_kernel/001_config_4.9.x/test-kernel-config.yml @@ -6,7 +6,7 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: check-kernel-config - image: linuxkit/test-kernel-config:9f0b6b012ad86f22d6ad488cdd870a37fa70bc75 + image: linuxkit/test-kernel-config:271aa181b78ca9c6e463dfc1107cf9da6090463d - name: poweroff image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 command: ["/bin/sh", "/poweroff.sh", "3"] diff --git a/test/cases/020_kernel/003_config_4.11.x/test-kernel-config.yml b/test/cases/020_kernel/003_config_4.11.x/test-kernel-config.yml index ffb9ddd84..c2d2bf372 100644 --- a/test/cases/020_kernel/003_config_4.11.x/test-kernel-config.yml +++ b/test/cases/020_kernel/003_config_4.11.x/test-kernel-config.yml @@ -6,7 +6,7 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: check-kernel-config - image: linuxkit/test-kernel-config:9f0b6b012ad86f22d6ad488cdd870a37fa70bc75 + image: linuxkit/test-kernel-config:271aa181b78ca9c6e463dfc1107cf9da6090463d - name: poweroff image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 command: ["/bin/sh", "/poweroff.sh", "3"] From 37de9c8c1d58563bb8a540fc1a39001b5039d51c Mon Sep 17 00:00:00 2001 From: Ian Campbell Date: Wed, 26 Jul 2017 14:41:04 +0100 Subject: [PATCH 04/12] test-ns: Update DEPS Makefile and Dockerfile are implicit from pacakge.mk. Need to list the other files consumed by the Dockerfile though. template.yml is only for manual testing and so is not a dependency of the standard build. Signed-off-by: Ian Campbell --- test/pkg/ns/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/pkg/ns/Makefile b/test/pkg/ns/Makefile index 8969b4257..200953176 100644 --- a/test/pkg/ns/Makefile +++ b/test/pkg/ns/Makefile @@ -1,5 +1,5 @@ IMAGE=test-ns NETWORK=1 -DEPS=Dockerfile Makefile +DEPS=config.template.json $(wildcard *.sh) include ../../../pkg/package.mk From acbe38d8a12cae41cef19422d99eaf2eb1063133 Mon Sep 17 00:00:00 2001 From: Ian Campbell Date: Wed, 26 Jul 2017 12:21:56 +0100 Subject: [PATCH 05/12] tests/pkg: Update remaining builds to pkg/package.mk Also update the base tools/alpine to latest. Signed-off-by: Ian Campbell --- test/pkg/containerd/Dockerfile | 2 +- test/pkg/containerd/Makefile | 16 +++------------- test/pkg/docker-bench/Dockerfile | 2 +- test/pkg/docker-bench/Makefile | 15 +++------------ test/pkg/ltp/Makefile | 16 +++------------- test/pkg/poweroff/Dockerfile | 2 +- test/pkg/poweroff/Makefile | 14 ++------------ test/pkg/virtsock/Dockerfile | 4 ++-- test/pkg/virtsock/Makefile | 15 +++------------ 9 files changed, 19 insertions(+), 67 deletions(-) diff --git a/test/pkg/containerd/Dockerfile b/test/pkg/containerd/Dockerfile index 8a720620f..63d3bf086 100644 --- a/test/pkg/containerd/Dockerfile +++ b/test/pkg/containerd/Dockerfile @@ -1,4 +1,4 @@ -FROM linuxkit/alpine:24fe1b6bbf1fc95b484741587acb10da6dbc9211 AS mirror +FROM linuxkit/alpine:34af9cb1990debd17fae6d4198c62ce3910d9908 AS mirror RUN mkdir -p /out/etc/apk && cp -r /etc/apk/* /out/etc/apk/ # btrfs-progfs is required for btrfs test (mkfs.btrfs) # util-linux is required for btrfs test (losetup) diff --git a/test/pkg/containerd/Makefile b/test/pkg/containerd/Makefile index 675a4a515..390109916 100644 --- a/test/pkg/containerd/Makefile +++ b/test/pkg/containerd/Makefile @@ -1,15 +1,5 @@ -.PHONY: tag push -default: push - -ORG?=linuxkit IMAGE=test-containerd -DEPS=Dockerfile Makefile run.sh +DEPS=run.sh +NETWORK=1 -HASH?=$(shell git ls-tree HEAD -- ../$(notdir $(CURDIR)) | awk '{print $$3}') - -tag: $(DEPS) - docker build --squash --no-cache -t $(ORG)/$(IMAGE):$(HASH) . - -push: tag - DOCKER_CONTENT_TRUST=1 docker pull $(ORG)/$(IMAGE):$(HASH) || \ - DOCKER_CONTENT_TRUST=1 docker push $(ORG)/$(IMAGE):$(HASH) +include ../../../pkg/package.mk diff --git a/test/pkg/docker-bench/Dockerfile b/test/pkg/docker-bench/Dockerfile index ec4a674be..91d2b15e9 100644 --- a/test/pkg/docker-bench/Dockerfile +++ b/test/pkg/docker-bench/Dockerfile @@ -1,4 +1,4 @@ -FROM linuxkit/alpine:9bcf61f605ef0ce36cc94d59b8eac307862de6e1 AS mirror +FROM linuxkit/alpine:34af9cb1990debd17fae6d4198c62ce3910d9908 AS mirror RUN mkdir -p /out/etc/apk && cp -r /etc/apk/* /out/etc/apk/ RUN apk add --no-cache --initdb -p /out \ alpine-baselayout \ diff --git a/test/pkg/docker-bench/Makefile b/test/pkg/docker-bench/Makefile index 4e2524dda..9caf7aaf6 100644 --- a/test/pkg/docker-bench/Makefile +++ b/test/pkg/docker-bench/Makefile @@ -1,15 +1,6 @@ -.PHONY: tag push -default: push - -ORG?=linuxkit IMAGE=test-docker-bench -DEPS=Dockerfile Makefile bench_runner.sh +DEPS=bench_runner.sh +NETWORK=1 -HASH?=$(shell git ls-tree HEAD -- ../$(notdir $(CURDIR)) | awk '{print $$3}') +include ../../../pkg/package.mk -tag: $(DEPS) - docker build --squash --no-cache -t $(ORG)/$(IMAGE):$(HASH) . - -push: tag - DOCKER_CONTENT_TRUST=1 docker pull $(ORG)/$(IMAGE):$(HASH) || \ - DOCKER_CONTENT_TRUST=1 docker push $(ORG)/$(IMAGE):$(HASH) diff --git a/test/pkg/ltp/Makefile b/test/pkg/ltp/Makefile index 8b7dba55d..09abffbc5 100644 --- a/test/pkg/ltp/Makefile +++ b/test/pkg/ltp/Makefile @@ -1,15 +1,5 @@ -.PHONY: tag push -default: push - -ORG?=linuxkit IMAGE=test-ltp -DEPS=Dockerfile Makefile check.sh +DEPS=check.sh +NETWORK=1 -HASH?=$(shell git ls-tree HEAD -- ../$(notdir $(CURDIR)) | awk '{print $$3}') - -tag: $(DEPS) - docker build --no-cache -t $(ORG)/$(IMAGE):$(HASH) . - -push: tag - DOCKER_CONTENT_TRUST=1 docker pull $(ORG)/$(IMAGE):$(HASH) || \ - DOCKER_CONTENT_TRUST=1 docker push $(ORG)/$(IMAGE):$(HASH) +include ../../../pkg/package.mk diff --git a/test/pkg/poweroff/Dockerfile b/test/pkg/poweroff/Dockerfile index 5daedb6f3..9cbe1a82c 100644 --- a/test/pkg/poweroff/Dockerfile +++ b/test/pkg/poweroff/Dockerfile @@ -1,4 +1,4 @@ -FROM linuxkit/alpine:9bcf61f605ef0ce36cc94d59b8eac307862de6e1 AS mirror +FROM linuxkit/alpine:34af9cb1990debd17fae6d4198c62ce3910d9908 AS mirror RUN mkdir -p /out/etc/apk && cp -r /etc/apk/* /out/etc/apk/ RUN apk add --no-cache --initdb -p /out alpine-baselayout busybox musl RUN rm -rf /out/etc/apk /out/lib/apk /out/var/cache diff --git a/test/pkg/poweroff/Makefile b/test/pkg/poweroff/Makefile index 05e38c2ab..b41a45b5d 100644 --- a/test/pkg/poweroff/Makefile +++ b/test/pkg/poweroff/Makefile @@ -1,15 +1,5 @@ -.PHONY: tag push -default: push - -ORG?=linuxkit IMAGE=poweroff -DEPS=Dockerfile Makefile poweroff.sh +DEPS=poweroff.sh -HASH?=$(shell git ls-tree HEAD -- ../$(notdir $(CURDIR)) | awk '{print $$3}') +include ../../../pkg/package.mk -tag: $(DEPS) - docker build --no-cache --network=none -t $(ORG)/$(IMAGE):$(HASH) . - -push: tag - DOCKER_CONTENT_TRUST=1 docker pull $(ORG)/$(IMAGE):$(HASH) || \ - DOCKER_CONTENT_TRUST=1 docker push $(ORG)/$(IMAGE):$(HASH) diff --git a/test/pkg/virtsock/Dockerfile b/test/pkg/virtsock/Dockerfile index 4641b3372..aa96e7c98 100644 --- a/test/pkg/virtsock/Dockerfile +++ b/test/pkg/virtsock/Dockerfile @@ -1,10 +1,10 @@ -FROM linuxkit/alpine:9bcf61f605ef0ce36cc94d59b8eac307862de6e1 AS mirror +FROM linuxkit/alpine:34af9cb1990debd17fae6d4198c62ce3910d9908 AS mirror RUN mkdir -p /out/etc/apk && cp -r /etc/apk/* /out/etc/apk/ RUN apk add --no-cache --initdb -p /out \ tini RUN rm -rf /out/etc/apk /out/lib/apk /out/var/cache -FROM linuxkit/alpine:9bcf61f605ef0ce36cc94d59b8eac307862de6e1 AS build +FROM linuxkit/alpine:34af9cb1990debd17fae6d4198c62ce3910d9908 AS build RUN apk add --no-cache go musl-dev git make ENV GOPATH=/go PATH=$PATH:/go/bin diff --git a/test/pkg/virtsock/Makefile b/test/pkg/virtsock/Makefile index 8e5d71545..336e0c224 100644 --- a/test/pkg/virtsock/Makefile +++ b/test/pkg/virtsock/Makefile @@ -1,15 +1,6 @@ -.PHONY: tag push -default: push - -ORG?=linuxkit IMAGE=test-virtsock -DEPS=Dockerfile Makefile +DEPS= +NETWORK=1 -HASH?=$(shell git ls-tree HEAD -- ../$(notdir $(CURDIR)) | awk '{print $$3}') +include ../../../pkg/package.mk -tag: $(DEPS) - docker build --squash --no-cache -t $(ORG)/$(IMAGE):$(HASH) . - -push: tag - DOCKER_CONTENT_TRUST=1 docker pull $(ORG)/$(IMAGE):$(HASH) || \ - DOCKER_CONTENT_TRUST=1 docker push $(ORG)/$(IMAGE):$(HASH) From d823d7fab79554a6524a98890410b5f24a86c9d4 Mon Sep 17 00:00:00 2001 From: Ian Campbell Date: Wed, 26 Jul 2017 12:26:59 +0100 Subject: [PATCH 06/12] tests: Update hashes for test/pkg/* with cwd of test this was done with: for i in pkg/* ; do make --no-print-directory -C $i show-tag; done | ( IFS=: ; while read image hash ; do ../scripts/update-component-sha.sh --image $image $hash ; done ) Note that `linuxkit/test-virtsock` (built by `test/pkg/virtsock`) does not appear to be referenced anywhere. Signed-off-by: Ian Campbell --- test/cases/010_platforms/000_qemu/000_run_kernel/test.yml | 2 +- test/cases/010_platforms/000_qemu/010_run_iso/test.yml | 2 +- test/cases/010_platforms/000_qemu/020_run_efi/test.yml | 2 +- test/cases/010_platforms/000_qemu/030_run_qcow/test.yml | 2 +- test/cases/010_platforms/000_qemu/040_run_raw/test.yml | 2 +- test/cases/010_platforms/000_qemu/100_container/test.yml | 2 +- test/cases/010_platforms/010_hyperkit/000_run_kernel/test.yml | 2 +- test/cases/020_kernel/000_config_4.4.x/test-kernel-config.yml | 2 +- test/cases/020_kernel/001_config_4.9.x/test-kernel-config.yml | 2 +- .../cases/020_kernel/003_config_4.11.x/test-kernel-config.yml | 2 +- test/cases/020_kernel/010_kmod_4.9.x/kmod.yml | 2 +- .../010_echo-tcp-ipv4-short-1con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/010_echo-tcp-ipv4-short-1con-single/test-ns.yml | 4 ++-- .../011_echo-tcp-ipv4-short-10con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/011_echo-tcp-ipv4-short-10con-single/test-ns.yml | 4 ++-- .../012_echo-tcp-ipv4-short-5con-multi-reverse/test-ns.yml | 4 ++-- .../010_veth/012_echo-tcp-ipv4-short-5con-multi/test-ns.yml | 4 ++-- .../015_echo-tcp-ipv4-long-1con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/015_echo-tcp-ipv4-long-1con-single/test-ns.yml | 4 ++-- .../016_echo-tcp-ipv4-long-10con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/016_echo-tcp-ipv4-long-10con-single/test-ns.yml | 4 ++-- .../017_echo-tcp-ipv4-long-5con-multi-reverse/test-ns.yml | 4 ++-- .../010_veth/017_echo-tcp-ipv4-long-5con-multi/test-ns.yml | 4 ++-- .../020_echo-tcp-ipv6-short-1con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/020_echo-tcp-ipv6-short-1con-single/test-ns.yml | 4 ++-- .../021_echo-tcp-ipv6-short-10con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/021_echo-tcp-ipv6-short-10con-single/test-ns.yml | 4 ++-- .../022_echo-tcp-ipv6-short-5con-multi-reverse/test-ns.yml | 4 ++-- .../010_veth/022_echo-tcp-ipv6-short-5con-multi/test-ns.yml | 4 ++-- .../025_echo-tcp-ipv6-long-1con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/025_echo-tcp-ipv6-long-1con-single/test-ns.yml | 4 ++-- .../026_echo-tcp-ipv6-long-10con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/026_echo-tcp-ipv6-long-10con-single/test-ns.yml | 4 ++-- .../027_echo-tcp-ipv6-long-5con-multi-reverse/test-ns.yml | 4 ++-- .../010_veth/027_echo-tcp-ipv6-long-5con-multi/test-ns.yml | 4 ++-- .../030_echo-udp-ipv4-short-1con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/030_echo-udp-ipv4-short-1con-single/test-ns.yml | 4 ++-- .../031_echo-udp-ipv4-short-10con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/031_echo-udp-ipv4-short-10con-single/test-ns.yml | 4 ++-- .../032_echo-udp-ipv4-short-5con-multi-reverse/test-ns.yml | 4 ++-- .../010_veth/032_echo-udp-ipv4-short-5con-multi/test-ns.yml | 4 ++-- .../035_echo-udp-ipv4-long-1con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/035_echo-udp-ipv4-long-1con-single/test-ns.yml | 4 ++-- .../036_echo-udp-ipv4-long-10con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/036_echo-udp-ipv4-long-10con-single/test-ns.yml | 4 ++-- .../037_echo-udp-ipv4-long-5con-multi-reverse/test-ns.yml | 4 ++-- .../010_veth/037_echo-udp-ipv4-long-5con-multi/test-ns.yml | 4 ++-- .../040_echo-udp-ipv6-short-1con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/040_echo-udp-ipv6-short-1con-single/test-ns.yml | 4 ++-- .../041_echo-udp-ipv6-short-10con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/041_echo-udp-ipv6-short-10con-single/test-ns.yml | 4 ++-- .../042_echo-udp-ipv6-short-5con-multi-reverse/test-ns.yml | 4 ++-- .../010_veth/042_echo-udp-ipv6-short-5con-multi/test-ns.yml | 4 ++-- .../045_echo-udp-ipv6-long-1con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/045_echo-udp-ipv6-long-1con-single/test-ns.yml | 4 ++-- .../046_echo-udp-ipv6-long-10con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/046_echo-udp-ipv6-long-10con-single/test-ns.yml | 4 ++-- .../047_echo-udp-ipv6-long-5con-multi-reverse/test-ns.yml | 4 ++-- .../010_veth/047_echo-udp-ipv6-long-5con-multi/test-ns.yml | 4 ++-- .../010_echo-short-1con-single-reverse/test-ns.yml | 4 ++-- .../050_unix-domain/010_echo-short-1con-single/test-ns.yml | 4 ++-- .../011_echo-short-10con-single-reverse/test-ns.yml | 4 ++-- .../050_unix-domain/011_echo-short-10con-single/test-ns.yml | 4 ++-- .../012_echo-short-5con-multi-reverse/test-ns.yml | 4 ++-- .../050_unix-domain/012_echo-short-5con-multi/test-ns.yml | 4 ++-- .../015_echo-long-1con-single-reverse/test-ns.yml | 4 ++-- .../050_unix-domain/015_echo-long-1con-single/test-ns.yml | 4 ++-- .../016_echo-long-10con-single-reverse/test-ns.yml | 4 ++-- .../050_unix-domain/016_echo-long-10con-single/test-ns.yml | 4 ++-- .../017_echo-long-5con-multi-reverse/test-ns.yml | 4 ++-- .../050_unix-domain/017_echo-long-5con-multi/test-ns.yml | 4 ++-- .../100_mix/010_veth-unix-domain-echo/test-ns.yml | 4 ++-- .../100_mix/011_veth-unix-domain-echo-reverse/test-ns.yml | 4 ++-- .../000_kernel-4.4.x/100_mix/012_veth-ipv4-echo/test-ns.yml | 4 ++-- .../000_kernel-4.4.x/100_mix/013_veth-ipv6-echo/test-ns.yml | 4 ++-- .../000_kernel-4.4.x/100_mix/014_veth-tcp-echo/test-ns.yml | 4 ++-- .../000_kernel-4.4.x/100_mix/015_veth-udp-echo/test-ns.yml | 4 ++-- .../000_kernel-4.4.x/100_mix/020_unix-domain-echo/test-ns.yml | 4 ++-- .../010_echo-tcp-ipv4-short-1con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/010_echo-tcp-ipv4-short-1con-single/test-ns.yml | 4 ++-- .../011_echo-tcp-ipv4-short-10con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/011_echo-tcp-ipv4-short-10con-single/test-ns.yml | 4 ++-- .../012_echo-tcp-ipv4-short-5con-multi-reverse/test-ns.yml | 4 ++-- .../010_veth/012_echo-tcp-ipv4-short-5con-multi/test-ns.yml | 4 ++-- .../015_echo-tcp-ipv4-long-1con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/015_echo-tcp-ipv4-long-1con-single/test-ns.yml | 4 ++-- .../016_echo-tcp-ipv4-long-10con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/016_echo-tcp-ipv4-long-10con-single/test-ns.yml | 4 ++-- .../017_echo-tcp-ipv4-long-5con-multi-reverse/test-ns.yml | 4 ++-- .../010_veth/017_echo-tcp-ipv4-long-5con-multi/test-ns.yml | 4 ++-- .../020_echo-tcp-ipv6-short-1con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/020_echo-tcp-ipv6-short-1con-single/test-ns.yml | 4 ++-- .../021_echo-tcp-ipv6-short-10con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/021_echo-tcp-ipv6-short-10con-single/test-ns.yml | 4 ++-- .../022_echo-tcp-ipv6-short-5con-multi-reverse/test-ns.yml | 4 ++-- .../010_veth/022_echo-tcp-ipv6-short-5con-multi/test-ns.yml | 4 ++-- .../025_echo-tcp-ipv6-long-1con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/025_echo-tcp-ipv6-long-1con-single/test-ns.yml | 4 ++-- .../026_echo-tcp-ipv6-long-10con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/026_echo-tcp-ipv6-long-10con-single/test-ns.yml | 4 ++-- .../027_echo-tcp-ipv6-long-5con-multi-reverse/test-ns.yml | 4 ++-- .../010_veth/027_echo-tcp-ipv6-long-5con-multi/test-ns.yml | 4 ++-- .../030_echo-udp-ipv4-short-1con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/030_echo-udp-ipv4-short-1con-single/test-ns.yml | 4 ++-- .../031_echo-udp-ipv4-short-10con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/031_echo-udp-ipv4-short-10con-single/test-ns.yml | 4 ++-- .../032_echo-udp-ipv4-short-5con-multi-reverse/test-ns.yml | 4 ++-- .../010_veth/032_echo-udp-ipv4-short-5con-multi/test-ns.yml | 4 ++-- .../035_echo-udp-ipv4-long-1con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/035_echo-udp-ipv4-long-1con-single/test-ns.yml | 4 ++-- .../036_echo-udp-ipv4-long-10con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/036_echo-udp-ipv4-long-10con-single/test-ns.yml | 4 ++-- .../037_echo-udp-ipv4-long-5con-multi-reverse/test-ns.yml | 4 ++-- .../010_veth/037_echo-udp-ipv4-long-5con-multi/test-ns.yml | 4 ++-- .../040_echo-udp-ipv6-short-1con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/040_echo-udp-ipv6-short-1con-single/test-ns.yml | 4 ++-- .../041_echo-udp-ipv6-short-10con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/041_echo-udp-ipv6-short-10con-single/test-ns.yml | 4 ++-- .../042_echo-udp-ipv6-short-5con-multi-reverse/test-ns.yml | 4 ++-- .../010_veth/042_echo-udp-ipv6-short-5con-multi/test-ns.yml | 4 ++-- .../045_echo-udp-ipv6-long-1con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/045_echo-udp-ipv6-long-1con-single/test-ns.yml | 4 ++-- .../046_echo-udp-ipv6-long-10con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/046_echo-udp-ipv6-long-10con-single/test-ns.yml | 4 ++-- .../047_echo-udp-ipv6-long-5con-multi-reverse/test-ns.yml | 4 ++-- .../010_veth/047_echo-udp-ipv6-long-5con-multi/test-ns.yml | 4 ++-- .../010_echo-short-1con-single-reverse/test-ns.yml | 4 ++-- .../050_unix-domain/010_echo-short-1con-single/test-ns.yml | 4 ++-- .../011_echo-short-10con-single-reverse/test-ns.yml | 4 ++-- .../050_unix-domain/011_echo-short-10con-single/test-ns.yml | 4 ++-- .../012_echo-short-5con-multi-reverse/test-ns.yml | 4 ++-- .../050_unix-domain/012_echo-short-5con-multi/test-ns.yml | 4 ++-- .../015_echo-long-1con-single-reverse/test-ns.yml | 4 ++-- .../050_unix-domain/015_echo-long-1con-single/test-ns.yml | 4 ++-- .../016_echo-long-10con-single-reverse/test-ns.yml | 4 ++-- .../050_unix-domain/016_echo-long-10con-single/test-ns.yml | 4 ++-- .../017_echo-long-5con-multi-reverse/test-ns.yml | 4 ++-- .../050_unix-domain/017_echo-long-5con-multi/test-ns.yml | 4 ++-- .../100_mix/010_veth-unix-domain-echo/test-ns.yml | 4 ++-- .../100_mix/011_veth-unix-domain-echo-reverse/test-ns.yml | 4 ++-- .../001_kernel-4.9.x/100_mix/012_veth-ipv4-echo/test-ns.yml | 4 ++-- .../001_kernel-4.9.x/100_mix/013_veth-ipv6-echo/test-ns.yml | 4 ++-- .../001_kernel-4.9.x/100_mix/014_veth-tcp-echo/test-ns.yml | 4 ++-- .../001_kernel-4.9.x/100_mix/015_veth-udp-echo/test-ns.yml | 4 ++-- .../001_kernel-4.9.x/100_mix/020_unix-domain-echo/test-ns.yml | 4 ++-- .../010_echo-tcp-ipv4-short-1con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/010_echo-tcp-ipv4-short-1con-single/test-ns.yml | 4 ++-- .../011_echo-tcp-ipv4-short-10con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/011_echo-tcp-ipv4-short-10con-single/test-ns.yml | 4 ++-- .../012_echo-tcp-ipv4-short-5con-multi-reverse/test-ns.yml | 4 ++-- .../010_veth/012_echo-tcp-ipv4-short-5con-multi/test-ns.yml | 4 ++-- .../015_echo-tcp-ipv4-long-1con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/015_echo-tcp-ipv4-long-1con-single/test-ns.yml | 4 ++-- .../016_echo-tcp-ipv4-long-10con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/016_echo-tcp-ipv4-long-10con-single/test-ns.yml | 4 ++-- .../017_echo-tcp-ipv4-long-5con-multi-reverse/test-ns.yml | 4 ++-- .../010_veth/017_echo-tcp-ipv4-long-5con-multi/test-ns.yml | 4 ++-- .../020_echo-tcp-ipv6-short-1con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/020_echo-tcp-ipv6-short-1con-single/test-ns.yml | 4 ++-- .../021_echo-tcp-ipv6-short-10con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/021_echo-tcp-ipv6-short-10con-single/test-ns.yml | 4 ++-- .../022_echo-tcp-ipv6-short-5con-multi-reverse/test-ns.yml | 4 ++-- .../010_veth/022_echo-tcp-ipv6-short-5con-multi/test-ns.yml | 4 ++-- .../025_echo-tcp-ipv6-long-1con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/025_echo-tcp-ipv6-long-1con-single/test-ns.yml | 4 ++-- .../026_echo-tcp-ipv6-long-10con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/026_echo-tcp-ipv6-long-10con-single/test-ns.yml | 4 ++-- .../027_echo-tcp-ipv6-long-5con-multi-reverse/test-ns.yml | 4 ++-- .../010_veth/027_echo-tcp-ipv6-long-5con-multi/test-ns.yml | 4 ++-- .../030_echo-udp-ipv4-short-1con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/030_echo-udp-ipv4-short-1con-single/test-ns.yml | 4 ++-- .../031_echo-udp-ipv4-short-10con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/031_echo-udp-ipv4-short-10con-single/test-ns.yml | 4 ++-- .../032_echo-udp-ipv4-short-5con-multi-reverse/test-ns.yml | 4 ++-- .../010_veth/032_echo-udp-ipv4-short-5con-multi/test-ns.yml | 4 ++-- .../035_echo-udp-ipv4-long-1con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/035_echo-udp-ipv4-long-1con-single/test-ns.yml | 4 ++-- .../036_echo-udp-ipv4-long-10con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/036_echo-udp-ipv4-long-10con-single/test-ns.yml | 4 ++-- .../037_echo-udp-ipv4-long-5con-multi-reverse/test-ns.yml | 4 ++-- .../010_veth/037_echo-udp-ipv4-long-5con-multi/test-ns.yml | 4 ++-- .../040_echo-udp-ipv6-short-1con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/040_echo-udp-ipv6-short-1con-single/test-ns.yml | 4 ++-- .../041_echo-udp-ipv6-short-10con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/041_echo-udp-ipv6-short-10con-single/test-ns.yml | 4 ++-- .../042_echo-udp-ipv6-short-5con-multi-reverse/test-ns.yml | 4 ++-- .../010_veth/042_echo-udp-ipv6-short-5con-multi/test-ns.yml | 4 ++-- .../045_echo-udp-ipv6-long-1con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/045_echo-udp-ipv6-long-1con-single/test-ns.yml | 4 ++-- .../046_echo-udp-ipv6-long-10con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/046_echo-udp-ipv6-long-10con-single/test-ns.yml | 4 ++-- .../047_echo-udp-ipv6-long-5con-multi-reverse/test-ns.yml | 4 ++-- .../010_veth/047_echo-udp-ipv6-long-5con-multi/test-ns.yml | 4 ++-- .../010_echo-short-1con-single-reverse/test-ns.yml | 4 ++-- .../050_unix-domain/010_echo-short-1con-single/test-ns.yml | 4 ++-- .../011_echo-short-10con-single-reverse/test-ns.yml | 4 ++-- .../050_unix-domain/011_echo-short-10con-single/test-ns.yml | 4 ++-- .../012_echo-short-5con-multi-reverse/test-ns.yml | 4 ++-- .../050_unix-domain/012_echo-short-5con-multi/test-ns.yml | 4 ++-- .../015_echo-long-1con-single-reverse/test-ns.yml | 4 ++-- .../050_unix-domain/015_echo-long-1con-single/test-ns.yml | 4 ++-- .../016_echo-long-10con-single-reverse/test-ns.yml | 4 ++-- .../050_unix-domain/016_echo-long-10con-single/test-ns.yml | 4 ++-- .../017_echo-long-5con-multi-reverse/test-ns.yml | 4 ++-- .../050_unix-domain/017_echo-long-5con-multi/test-ns.yml | 4 ++-- .../100_mix/010_veth-unix-domain-echo/test-ns.yml | 4 ++-- .../100_mix/011_veth-unix-domain-echo-reverse/test-ns.yml | 4 ++-- .../001_kernel-4.9.x/100_mix/012_veth-ipv4-echo/test-ns.yml | 4 ++-- .../001_kernel-4.9.x/100_mix/013_veth-ipv6-echo/test-ns.yml | 4 ++-- .../001_kernel-4.9.x/100_mix/014_veth-tcp-echo/test-ns.yml | 4 ++-- .../001_kernel-4.9.x/100_mix/015_veth-udp-echo/test-ns.yml | 4 ++-- .../001_kernel-4.9.x/100_mix/020_unix-domain-echo/test-ns.yml | 4 ++-- .../010_echo-tcp-ipv4-short-1con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/010_echo-tcp-ipv4-short-1con-single/test-ns.yml | 4 ++-- .../011_echo-tcp-ipv4-short-10con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/011_echo-tcp-ipv4-short-10con-single/test-ns.yml | 4 ++-- .../012_echo-tcp-ipv4-short-5con-multi-reverse/test-ns.yml | 4 ++-- .../010_veth/012_echo-tcp-ipv4-short-5con-multi/test-ns.yml | 4 ++-- .../015_echo-tcp-ipv4-long-1con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/015_echo-tcp-ipv4-long-1con-single/test-ns.yml | 4 ++-- .../016_echo-tcp-ipv4-long-10con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/016_echo-tcp-ipv4-long-10con-single/test-ns.yml | 4 ++-- .../017_echo-tcp-ipv4-long-5con-multi-reverse/test-ns.yml | 4 ++-- .../010_veth/017_echo-tcp-ipv4-long-5con-multi/test-ns.yml | 4 ++-- .../020_echo-tcp-ipv6-short-1con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/020_echo-tcp-ipv6-short-1con-single/test-ns.yml | 4 ++-- .../021_echo-tcp-ipv6-short-10con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/021_echo-tcp-ipv6-short-10con-single/test-ns.yml | 4 ++-- .../022_echo-tcp-ipv6-short-5con-multi-reverse/test-ns.yml | 4 ++-- .../010_veth/022_echo-tcp-ipv6-short-5con-multi/test-ns.yml | 4 ++-- .../025_echo-tcp-ipv6-long-1con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/025_echo-tcp-ipv6-long-1con-single/test-ns.yml | 4 ++-- .../026_echo-tcp-ipv6-long-10con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/026_echo-tcp-ipv6-long-10con-single/test-ns.yml | 4 ++-- .../027_echo-tcp-ipv6-long-5con-multi-reverse/test-ns.yml | 4 ++-- .../010_veth/027_echo-tcp-ipv6-long-5con-multi/test-ns.yml | 4 ++-- .../030_echo-udp-ipv4-short-1con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/030_echo-udp-ipv4-short-1con-single/test-ns.yml | 4 ++-- .../031_echo-udp-ipv4-short-10con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/031_echo-udp-ipv4-short-10con-single/test-ns.yml | 4 ++-- .../032_echo-udp-ipv4-short-5con-multi-reverse/test-ns.yml | 4 ++-- .../010_veth/032_echo-udp-ipv4-short-5con-multi/test-ns.yml | 4 ++-- .../035_echo-udp-ipv4-long-1con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/035_echo-udp-ipv4-long-1con-single/test-ns.yml | 4 ++-- .../036_echo-udp-ipv4-long-10con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/036_echo-udp-ipv4-long-10con-single/test-ns.yml | 4 ++-- .../037_echo-udp-ipv4-long-5con-multi-reverse/test-ns.yml | 4 ++-- .../010_veth/037_echo-udp-ipv4-long-5con-multi/test-ns.yml | 4 ++-- .../040_echo-udp-ipv6-short-1con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/040_echo-udp-ipv6-short-1con-single/test-ns.yml | 4 ++-- .../041_echo-udp-ipv6-short-10con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/041_echo-udp-ipv6-short-10con-single/test-ns.yml | 4 ++-- .../042_echo-udp-ipv6-short-5con-multi-reverse/test-ns.yml | 4 ++-- .../010_veth/042_echo-udp-ipv6-short-5con-multi/test-ns.yml | 4 ++-- .../045_echo-udp-ipv6-long-1con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/045_echo-udp-ipv6-long-1con-single/test-ns.yml | 4 ++-- .../046_echo-udp-ipv6-long-10con-single-reverse/test-ns.yml | 4 ++-- .../010_veth/046_echo-udp-ipv6-long-10con-single/test-ns.yml | 4 ++-- .../047_echo-udp-ipv6-long-5con-multi-reverse/test-ns.yml | 4 ++-- .../010_veth/047_echo-udp-ipv6-long-5con-multi/test-ns.yml | 4 ++-- .../010_echo-short-1con-single-reverse/test-ns.yml | 4 ++-- .../050_unix-domain/010_echo-short-1con-single/test-ns.yml | 4 ++-- .../011_echo-short-10con-single-reverse/test-ns.yml | 4 ++-- .../050_unix-domain/011_echo-short-10con-single/test-ns.yml | 4 ++-- .../012_echo-short-5con-multi-reverse/test-ns.yml | 4 ++-- .../050_unix-domain/012_echo-short-5con-multi/test-ns.yml | 4 ++-- .../015_echo-long-1con-single-reverse/test-ns.yml | 4 ++-- .../050_unix-domain/015_echo-long-1con-single/test-ns.yml | 4 ++-- .../016_echo-long-10con-single-reverse/test-ns.yml | 4 ++-- .../050_unix-domain/016_echo-long-10con-single/test-ns.yml | 4 ++-- .../017_echo-long-5con-multi-reverse/test-ns.yml | 4 ++-- .../050_unix-domain/017_echo-long-5con-multi/test-ns.yml | 4 ++-- .../100_mix/010_veth-unix-domain-echo/test-ns.yml | 4 ++-- .../cases/030_security/000_docker-bench/test-docker-bench.yml | 2 +- test/cases/030_security/010_ports/test.yml | 2 +- test/cases/040_packages/002_binfmt/test-binfmt.yml | 2 +- .../040_packages/003_ca-certificates/test-ca-certificates.yml | 2 +- test/cases/040_packages/003_containerd/test-containerd.yml | 4 ++-- test/cases/040_packages/004_dhcpcd/test-dhcpcd.yml | 2 +- test/cases/040_packages/013_mkimage/mkimage.yml | 2 +- test/cases/040_packages/013_mkimage/run.yml | 2 +- test/cases/040_packages/019_sysctl/test-sysctl.yml | 2 +- test/hack/test-ltp.yml | 4 ++-- test/hack/test.yml | 4 ++-- test/pkg/ns/template.yml | 2 +- 285 files changed, 550 insertions(+), 550 deletions(-) diff --git a/test/cases/010_platforms/000_qemu/000_run_kernel/test.yml b/test/cases/010_platforms/000_qemu/000_run_kernel/test.yml index 7b9b6ba17..28bb8d651 100644 --- a/test/cases/010_platforms/000_qemu/000_run_kernel/test.yml +++ b/test/cases/010_platforms/000_qemu/000_run_kernel/test.yml @@ -6,7 +6,7 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "10"] trust: org: diff --git a/test/cases/010_platforms/000_qemu/010_run_iso/test.yml b/test/cases/010_platforms/000_qemu/010_run_iso/test.yml index 0dcefe11b..7636b2e3a 100644 --- a/test/cases/010_platforms/000_qemu/010_run_iso/test.yml +++ b/test/cases/010_platforms/000_qemu/010_run_iso/test.yml @@ -6,7 +6,7 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "10"] trust: org: diff --git a/test/cases/010_platforms/000_qemu/020_run_efi/test.yml b/test/cases/010_platforms/000_qemu/020_run_efi/test.yml index 7b9b6ba17..28bb8d651 100644 --- a/test/cases/010_platforms/000_qemu/020_run_efi/test.yml +++ b/test/cases/010_platforms/000_qemu/020_run_efi/test.yml @@ -6,7 +6,7 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "10"] trust: org: diff --git a/test/cases/010_platforms/000_qemu/030_run_qcow/test.yml b/test/cases/010_platforms/000_qemu/030_run_qcow/test.yml index 7b9b6ba17..28bb8d651 100644 --- a/test/cases/010_platforms/000_qemu/030_run_qcow/test.yml +++ b/test/cases/010_platforms/000_qemu/030_run_qcow/test.yml @@ -6,7 +6,7 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "10"] trust: org: diff --git a/test/cases/010_platforms/000_qemu/040_run_raw/test.yml b/test/cases/010_platforms/000_qemu/040_run_raw/test.yml index 7b9b6ba17..28bb8d651 100644 --- a/test/cases/010_platforms/000_qemu/040_run_raw/test.yml +++ b/test/cases/010_platforms/000_qemu/040_run_raw/test.yml @@ -6,7 +6,7 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "10"] trust: org: diff --git a/test/cases/010_platforms/000_qemu/100_container/test.yml b/test/cases/010_platforms/000_qemu/100_container/test.yml index c63be086b..ca5428e0d 100644 --- a/test/cases/010_platforms/000_qemu/100_container/test.yml +++ b/test/cases/010_platforms/000_qemu/100_container/test.yml @@ -6,7 +6,7 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/010_platforms/010_hyperkit/000_run_kernel/test.yml b/test/cases/010_platforms/010_hyperkit/000_run_kernel/test.yml index 7b9b6ba17..28bb8d651 100644 --- a/test/cases/010_platforms/010_hyperkit/000_run_kernel/test.yml +++ b/test/cases/010_platforms/010_hyperkit/000_run_kernel/test.yml @@ -6,7 +6,7 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "10"] trust: org: diff --git a/test/cases/020_kernel/000_config_4.4.x/test-kernel-config.yml b/test/cases/020_kernel/000_config_4.4.x/test-kernel-config.yml index e9e8bef7f..7e2593bd6 100644 --- a/test/cases/020_kernel/000_config_4.4.x/test-kernel-config.yml +++ b/test/cases/020_kernel/000_config_4.4.x/test-kernel-config.yml @@ -8,7 +8,7 @@ onboot: - name: check-kernel-config image: linuxkit/test-kernel-config:271aa181b78ca9c6e463dfc1107cf9da6090463d - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/001_config_4.9.x/test-kernel-config.yml b/test/cases/020_kernel/001_config_4.9.x/test-kernel-config.yml index d69c1ab82..2918c26ce 100644 --- a/test/cases/020_kernel/001_config_4.9.x/test-kernel-config.yml +++ b/test/cases/020_kernel/001_config_4.9.x/test-kernel-config.yml @@ -8,7 +8,7 @@ onboot: - name: check-kernel-config image: linuxkit/test-kernel-config:271aa181b78ca9c6e463dfc1107cf9da6090463d - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/003_config_4.11.x/test-kernel-config.yml b/test/cases/020_kernel/003_config_4.11.x/test-kernel-config.yml index c2d2bf372..db1886484 100644 --- a/test/cases/020_kernel/003_config_4.11.x/test-kernel-config.yml +++ b/test/cases/020_kernel/003_config_4.11.x/test-kernel-config.yml @@ -8,7 +8,7 @@ onboot: - name: check-kernel-config image: linuxkit/test-kernel-config:271aa181b78ca9c6e463dfc1107cf9da6090463d - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/010_kmod_4.9.x/kmod.yml b/test/cases/020_kernel/010_kmod_4.9.x/kmod.yml index 32c4e3358..b70f3b1d3 100644 --- a/test/cases/020_kernel/010_kmod_4.9.x/kmod.yml +++ b/test/cases/020_kernel/010_kmod_4.9.x/kmod.yml @@ -13,7 +13,7 @@ onboot: capabilities: - all - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/010_echo-tcp-ipv4-short-1con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/010_echo-tcp-ipv4-short-1con-single-reverse/test-ns.yml index d53a93b30..54be61914 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/010_echo-tcp-ipv4-short-1con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/010_echo-tcp-ipv4-short-1con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-s", "-c", "1", "-r"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/010_echo-tcp-ipv4-short-1con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/010_echo-tcp-ipv4-short-1con-single/test-ns.yml index 880d30ad6..40c7d93dc 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/010_echo-tcp-ipv4-short-1con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/010_echo-tcp-ipv4-short-1con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-s", "-c", "1"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/011_echo-tcp-ipv4-short-10con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/011_echo-tcp-ipv4-short-10con-single-reverse/test-ns.yml index 33996a091..3f34d9344 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/011_echo-tcp-ipv4-short-10con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/011_echo-tcp-ipv4-short-10con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-s", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/011_echo-tcp-ipv4-short-10con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/011_echo-tcp-ipv4-short-10con-single/test-ns.yml index 33996a091..3f34d9344 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/011_echo-tcp-ipv4-short-10con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/011_echo-tcp-ipv4-short-10con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-s", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/012_echo-tcp-ipv4-short-5con-multi-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/012_echo-tcp-ipv4-short-5con-multi-reverse/test-ns.yml index 311f07321..79a819901 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/012_echo-tcp-ipv4-short-5con-multi-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/012_echo-tcp-ipv4-short-5con-multi-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-s", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/012_echo-tcp-ipv4-short-5con-multi/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/012_echo-tcp-ipv4-short-5con-multi/test-ns.yml index 311f07321..79a819901 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/012_echo-tcp-ipv4-short-5con-multi/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/012_echo-tcp-ipv4-short-5con-multi/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-s", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/015_echo-tcp-ipv4-long-1con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/015_echo-tcp-ipv4-long-1con-single-reverse/test-ns.yml index 3fe16accc..8c442bd4b 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/015_echo-tcp-ipv4-long-1con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/015_echo-tcp-ipv4-long-1con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-c", "1", "-r"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/015_echo-tcp-ipv4-long-1con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/015_echo-tcp-ipv4-long-1con-single/test-ns.yml index 1a19cb8f6..ccba9ba0d 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/015_echo-tcp-ipv4-long-1con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/015_echo-tcp-ipv4-long-1con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-c", "1"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/016_echo-tcp-ipv4-long-10con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/016_echo-tcp-ipv4-long-10con-single-reverse/test-ns.yml index 7ab1e8c1e..32de9206a 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/016_echo-tcp-ipv4-long-10con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/016_echo-tcp-ipv4-long-10con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/016_echo-tcp-ipv4-long-10con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/016_echo-tcp-ipv4-long-10con-single/test-ns.yml index 7ab1e8c1e..32de9206a 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/016_echo-tcp-ipv4-long-10con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/016_echo-tcp-ipv4-long-10con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/017_echo-tcp-ipv4-long-5con-multi-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/017_echo-tcp-ipv4-long-5con-multi-reverse/test-ns.yml index 8c37d692d..2046e385c 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/017_echo-tcp-ipv4-long-5con-multi-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/017_echo-tcp-ipv4-long-5con-multi-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/017_echo-tcp-ipv4-long-5con-multi/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/017_echo-tcp-ipv4-long-5con-multi/test-ns.yml index 8c37d692d..2046e385c 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/017_echo-tcp-ipv4-long-5con-multi/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/017_echo-tcp-ipv4-long-5con-multi/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/020_echo-tcp-ipv6-short-1con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/020_echo-tcp-ipv6-short-1con-single-reverse/test-ns.yml index 4801516e1..e605a9891 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/020_echo-tcp-ipv6-short-1con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/020_echo-tcp-ipv6-short-1con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-s", "-c", "1", "-r"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/020_echo-tcp-ipv6-short-1con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/020_echo-tcp-ipv6-short-1con-single/test-ns.yml index 7db7341c1..a46e1d0f3 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/020_echo-tcp-ipv6-short-1con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/020_echo-tcp-ipv6-short-1con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-s", "-c", "1"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/021_echo-tcp-ipv6-short-10con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/021_echo-tcp-ipv6-short-10con-single-reverse/test-ns.yml index 7fe941867..0994783c7 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/021_echo-tcp-ipv6-short-10con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/021_echo-tcp-ipv6-short-10con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-s", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/021_echo-tcp-ipv6-short-10con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/021_echo-tcp-ipv6-short-10con-single/test-ns.yml index 7fe941867..0994783c7 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/021_echo-tcp-ipv6-short-10con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/021_echo-tcp-ipv6-short-10con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-s", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/022_echo-tcp-ipv6-short-5con-multi-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/022_echo-tcp-ipv6-short-5con-multi-reverse/test-ns.yml index e70c3f2b6..c43b9c590 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/022_echo-tcp-ipv6-short-5con-multi-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/022_echo-tcp-ipv6-short-5con-multi-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-s", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/022_echo-tcp-ipv6-short-5con-multi/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/022_echo-tcp-ipv6-short-5con-multi/test-ns.yml index e70c3f2b6..c43b9c590 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/022_echo-tcp-ipv6-short-5con-multi/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/022_echo-tcp-ipv6-short-5con-multi/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-s", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/025_echo-tcp-ipv6-long-1con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/025_echo-tcp-ipv6-long-1con-single-reverse/test-ns.yml index 81917dc69..a273c334f 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/025_echo-tcp-ipv6-long-1con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/025_echo-tcp-ipv6-long-1con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-c", "1", "-r"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/025_echo-tcp-ipv6-long-1con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/025_echo-tcp-ipv6-long-1con-single/test-ns.yml index 617408178..5cb1ee926 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/025_echo-tcp-ipv6-long-1con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/025_echo-tcp-ipv6-long-1con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-c", "1"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/026_echo-tcp-ipv6-long-10con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/026_echo-tcp-ipv6-long-10con-single-reverse/test-ns.yml index 4702cf03d..82da20e84 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/026_echo-tcp-ipv6-long-10con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/026_echo-tcp-ipv6-long-10con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/026_echo-tcp-ipv6-long-10con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/026_echo-tcp-ipv6-long-10con-single/test-ns.yml index 4702cf03d..82da20e84 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/026_echo-tcp-ipv6-long-10con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/026_echo-tcp-ipv6-long-10con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/027_echo-tcp-ipv6-long-5con-multi-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/027_echo-tcp-ipv6-long-5con-multi-reverse/test-ns.yml index b0f6573a4..51b4ae7d4 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/027_echo-tcp-ipv6-long-5con-multi-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/027_echo-tcp-ipv6-long-5con-multi-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/027_echo-tcp-ipv6-long-5con-multi/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/027_echo-tcp-ipv6-long-5con-multi/test-ns.yml index b0f6573a4..51b4ae7d4 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/027_echo-tcp-ipv6-long-5con-multi/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/027_echo-tcp-ipv6-long-5con-multi/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/030_echo-udp-ipv4-short-1con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/030_echo-udp-ipv4-short-1con-single-reverse/test-ns.yml index 7a159ec2c..da92b5045 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/030_echo-udp-ipv4-short-1con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/030_echo-udp-ipv4-short-1con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-s", "-c", "1", "-r"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/030_echo-udp-ipv4-short-1con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/030_echo-udp-ipv4-short-1con-single/test-ns.yml index 0af5e5323..5fa3cf639 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/030_echo-udp-ipv4-short-1con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/030_echo-udp-ipv4-short-1con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-s", "-c", "1"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/031_echo-udp-ipv4-short-10con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/031_echo-udp-ipv4-short-10con-single-reverse/test-ns.yml index 4724ab7a9..323506823 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/031_echo-udp-ipv4-short-10con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/031_echo-udp-ipv4-short-10con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-s", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/031_echo-udp-ipv4-short-10con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/031_echo-udp-ipv4-short-10con-single/test-ns.yml index 4724ab7a9..323506823 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/031_echo-udp-ipv4-short-10con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/031_echo-udp-ipv4-short-10con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-s", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/032_echo-udp-ipv4-short-5con-multi-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/032_echo-udp-ipv4-short-5con-multi-reverse/test-ns.yml index 143cbea9a..ce28608e8 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/032_echo-udp-ipv4-short-5con-multi-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/032_echo-udp-ipv4-short-5con-multi-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-s", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/032_echo-udp-ipv4-short-5con-multi/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/032_echo-udp-ipv4-short-5con-multi/test-ns.yml index 143cbea9a..ce28608e8 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/032_echo-udp-ipv4-short-5con-multi/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/032_echo-udp-ipv4-short-5con-multi/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-s", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/035_echo-udp-ipv4-long-1con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/035_echo-udp-ipv4-long-1con-single-reverse/test-ns.yml index a528ba970..fafbed86d 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/035_echo-udp-ipv4-long-1con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/035_echo-udp-ipv4-long-1con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-c", "1", "-r"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/035_echo-udp-ipv4-long-1con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/035_echo-udp-ipv4-long-1con-single/test-ns.yml index 347533b95..ec92ec29a 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/035_echo-udp-ipv4-long-1con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/035_echo-udp-ipv4-long-1con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-c", "1"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/036_echo-udp-ipv4-long-10con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/036_echo-udp-ipv4-long-10con-single-reverse/test-ns.yml index 46aec5424..3deb6d7d9 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/036_echo-udp-ipv4-long-10con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/036_echo-udp-ipv4-long-10con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/036_echo-udp-ipv4-long-10con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/036_echo-udp-ipv4-long-10con-single/test-ns.yml index 46aec5424..3deb6d7d9 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/036_echo-udp-ipv4-long-10con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/036_echo-udp-ipv4-long-10con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/037_echo-udp-ipv4-long-5con-multi-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/037_echo-udp-ipv4-long-5con-multi-reverse/test-ns.yml index 9b9c2544b..d873fd6e8 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/037_echo-udp-ipv4-long-5con-multi-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/037_echo-udp-ipv4-long-5con-multi-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/037_echo-udp-ipv4-long-5con-multi/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/037_echo-udp-ipv4-long-5con-multi/test-ns.yml index 9b9c2544b..d873fd6e8 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/037_echo-udp-ipv4-long-5con-multi/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/037_echo-udp-ipv4-long-5con-multi/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/040_echo-udp-ipv6-short-1con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/040_echo-udp-ipv6-short-1con-single-reverse/test-ns.yml index c0c5e100f..18dd96f3e 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/040_echo-udp-ipv6-short-1con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/040_echo-udp-ipv6-short-1con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-s", "-c", "1", "-r"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/040_echo-udp-ipv6-short-1con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/040_echo-udp-ipv6-short-1con-single/test-ns.yml index 10b8ea72c..4f48038a9 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/040_echo-udp-ipv6-short-1con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/040_echo-udp-ipv6-short-1con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-s", "-c", "1"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/041_echo-udp-ipv6-short-10con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/041_echo-udp-ipv6-short-10con-single-reverse/test-ns.yml index e9c91d80a..bceaacf83 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/041_echo-udp-ipv6-short-10con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/041_echo-udp-ipv6-short-10con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-s", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/041_echo-udp-ipv6-short-10con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/041_echo-udp-ipv6-short-10con-single/test-ns.yml index e9c91d80a..bceaacf83 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/041_echo-udp-ipv6-short-10con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/041_echo-udp-ipv6-short-10con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-s", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/042_echo-udp-ipv6-short-5con-multi-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/042_echo-udp-ipv6-short-5con-multi-reverse/test-ns.yml index 3ca93f8e5..453ab3e92 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/042_echo-udp-ipv6-short-5con-multi-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/042_echo-udp-ipv6-short-5con-multi-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-s", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/042_echo-udp-ipv6-short-5con-multi/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/042_echo-udp-ipv6-short-5con-multi/test-ns.yml index 3ca93f8e5..453ab3e92 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/042_echo-udp-ipv6-short-5con-multi/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/042_echo-udp-ipv6-short-5con-multi/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-s", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/045_echo-udp-ipv6-long-1con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/045_echo-udp-ipv6-long-1con-single-reverse/test-ns.yml index ccc2c1b6f..085425cae 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/045_echo-udp-ipv6-long-1con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/045_echo-udp-ipv6-long-1con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-c", "1", "-r"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/045_echo-udp-ipv6-long-1con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/045_echo-udp-ipv6-long-1con-single/test-ns.yml index a1d7e56c5..6c532a04a 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/045_echo-udp-ipv6-long-1con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/045_echo-udp-ipv6-long-1con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-c", "1"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/046_echo-udp-ipv6-long-10con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/046_echo-udp-ipv6-long-10con-single-reverse/test-ns.yml index f32bbd9dd..0c26f6f04 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/046_echo-udp-ipv6-long-10con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/046_echo-udp-ipv6-long-10con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/046_echo-udp-ipv6-long-10con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/046_echo-udp-ipv6-long-10con-single/test-ns.yml index f32bbd9dd..0c26f6f04 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/046_echo-udp-ipv6-long-10con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/046_echo-udp-ipv6-long-10con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/047_echo-udp-ipv6-long-5con-multi-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/047_echo-udp-ipv6-long-5con-multi-reverse/test-ns.yml index 03fc5600a..8286cb5ef 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/047_echo-udp-ipv6-long-5con-multi-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/047_echo-udp-ipv6-long-5con-multi-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/047_echo-udp-ipv6-long-5con-multi/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/047_echo-udp-ipv6-long-5con-multi/test-ns.yml index 03fc5600a..8286cb5ef 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/047_echo-udp-ipv6-long-5con-multi/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/010_veth/047_echo-udp-ipv6-long-5con-multi/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/010_echo-short-1con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/010_echo-short-1con-single-reverse/test-ns.yml index e94e9743b..d67b117e6 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/010_echo-short-1con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/010_echo-short-1con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-p", "unix", "-s", "-c", "1", "-r"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/010_echo-short-1con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/010_echo-short-1con-single/test-ns.yml index 0e6f0222c..7bc4cf819 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/010_echo-short-1con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/010_echo-short-1con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-p", "unix", "-s", "-c", "1"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/011_echo-short-10con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/011_echo-short-10con-single-reverse/test-ns.yml index 117485caf..354a07347 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/011_echo-short-10con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/011_echo-short-10con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-p", "unix", "-s", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/011_echo-short-10con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/011_echo-short-10con-single/test-ns.yml index 117485caf..354a07347 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/011_echo-short-10con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/011_echo-short-10con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-p", "unix", "-s", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/012_echo-short-5con-multi-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/012_echo-short-5con-multi-reverse/test-ns.yml index 997c7fee9..e31397e1e 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/012_echo-short-5con-multi-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/012_echo-short-5con-multi-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-p", "unix", "-s", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/012_echo-short-5con-multi/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/012_echo-short-5con-multi/test-ns.yml index 997c7fee9..e31397e1e 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/012_echo-short-5con-multi/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/012_echo-short-5con-multi/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-p", "unix", "-s", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/015_echo-long-1con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/015_echo-long-1con-single-reverse/test-ns.yml index 57c82a481..dfc36aebe 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/015_echo-long-1con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/015_echo-long-1con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-p", "unix", "-c", "1", "-r"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/015_echo-long-1con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/015_echo-long-1con-single/test-ns.yml index 23c152479..128cc138a 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/015_echo-long-1con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/015_echo-long-1con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-p", "unix", "-c", "1"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/016_echo-long-10con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/016_echo-long-10con-single-reverse/test-ns.yml index cb7579fd4..0e6188bab 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/016_echo-long-10con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/016_echo-long-10con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-p", "unix", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/016_echo-long-10con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/016_echo-long-10con-single/test-ns.yml index cb7579fd4..0e6188bab 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/016_echo-long-10con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/016_echo-long-10con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-p", "unix", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/017_echo-long-5con-multi-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/017_echo-long-5con-multi-reverse/test-ns.yml index 62cf2d79d..0a18d8324 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/017_echo-long-5con-multi-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/017_echo-long-5con-multi-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-p", "unix", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/017_echo-long-5con-multi/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/017_echo-long-5con-multi/test-ns.yml index 62cf2d79d..0a18d8324 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/017_echo-long-5con-multi/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/050_unix-domain/017_echo-long-5con-multi/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-p", "unix", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/100_mix/010_veth-unix-domain-echo/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/100_mix/010_veth-unix-domain-echo/test-ns.yml index 9c4fcb3cf..de466a786 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/100_mix/010_veth-unix-domain-echo/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/100_mix/010_veth-unix-domain-echo/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "mix"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/100_mix/011_veth-unix-domain-echo-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/100_mix/011_veth-unix-domain-echo-reverse/test-ns.yml index 50787111f..b61a01e3d 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/100_mix/011_veth-unix-domain-echo-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/100_mix/011_veth-unix-domain-echo-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "mix-reverse"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/100_mix/012_veth-ipv4-echo/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/100_mix/012_veth-ipv4-echo/test-ns.yml index 51b0021d7..bd475964b 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/100_mix/012_veth-ipv4-echo/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/100_mix/012_veth-ipv4-echo/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "mix-ipv4"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/100_mix/013_veth-ipv6-echo/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/100_mix/013_veth-ipv6-echo/test-ns.yml index b9b8ea54f..176b8aeda 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/100_mix/013_veth-ipv6-echo/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/100_mix/013_veth-ipv6-echo/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "mix-ipv6"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/100_mix/014_veth-tcp-echo/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/100_mix/014_veth-tcp-echo/test-ns.yml index 12c3b4068..0e0dad2c6 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/100_mix/014_veth-tcp-echo/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/100_mix/014_veth-tcp-echo/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "mix-tcp"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/100_mix/015_veth-udp-echo/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/100_mix/015_veth-udp-echo/test-ns.yml index 5fba1b82d..fe48971a4 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/100_mix/015_veth-udp-echo/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/100_mix/015_veth-udp-echo/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "mix-udp"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/100_mix/020_unix-domain-echo/test-ns.yml b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/100_mix/020_unix-domain-echo/test-ns.yml index fda378a32..b21524288 100644 --- a/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/100_mix/020_unix-domain-echo/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/000_kernel-4.4.x/100_mix/020_unix-domain-echo/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "mix-unix"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/010_echo-tcp-ipv4-short-1con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/010_echo-tcp-ipv4-short-1con-single-reverse/test-ns.yml index 0d16bcc4a..f227c27b4 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/010_echo-tcp-ipv4-short-1con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/010_echo-tcp-ipv4-short-1con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-s", "-c", "1", "-r"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/010_echo-tcp-ipv4-short-1con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/010_echo-tcp-ipv4-short-1con-single/test-ns.yml index 4acbc16f8..f40f60cdd 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/010_echo-tcp-ipv4-short-1con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/010_echo-tcp-ipv4-short-1con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-s", "-c", "1"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/011_echo-tcp-ipv4-short-10con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/011_echo-tcp-ipv4-short-10con-single-reverse/test-ns.yml index 7aa4cecf1..f67c54b49 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/011_echo-tcp-ipv4-short-10con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/011_echo-tcp-ipv4-short-10con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-s", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/011_echo-tcp-ipv4-short-10con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/011_echo-tcp-ipv4-short-10con-single/test-ns.yml index 7aa4cecf1..f67c54b49 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/011_echo-tcp-ipv4-short-10con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/011_echo-tcp-ipv4-short-10con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-s", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/012_echo-tcp-ipv4-short-5con-multi-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/012_echo-tcp-ipv4-short-5con-multi-reverse/test-ns.yml index 816b40fa2..6f0380f16 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/012_echo-tcp-ipv4-short-5con-multi-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/012_echo-tcp-ipv4-short-5con-multi-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-s", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/012_echo-tcp-ipv4-short-5con-multi/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/012_echo-tcp-ipv4-short-5con-multi/test-ns.yml index 816b40fa2..6f0380f16 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/012_echo-tcp-ipv4-short-5con-multi/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/012_echo-tcp-ipv4-short-5con-multi/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-s", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/015_echo-tcp-ipv4-long-1con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/015_echo-tcp-ipv4-long-1con-single-reverse/test-ns.yml index b05367055..cf55941b7 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/015_echo-tcp-ipv4-long-1con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/015_echo-tcp-ipv4-long-1con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-c", "1", "-r"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/015_echo-tcp-ipv4-long-1con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/015_echo-tcp-ipv4-long-1con-single/test-ns.yml index d72f6cb8e..ec148bd2a 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/015_echo-tcp-ipv4-long-1con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/015_echo-tcp-ipv4-long-1con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-c", "1"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/016_echo-tcp-ipv4-long-10con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/016_echo-tcp-ipv4-long-10con-single-reverse/test-ns.yml index 685086a34..ecfb41f5f 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/016_echo-tcp-ipv4-long-10con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/016_echo-tcp-ipv4-long-10con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/016_echo-tcp-ipv4-long-10con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/016_echo-tcp-ipv4-long-10con-single/test-ns.yml index 685086a34..ecfb41f5f 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/016_echo-tcp-ipv4-long-10con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/016_echo-tcp-ipv4-long-10con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/017_echo-tcp-ipv4-long-5con-multi-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/017_echo-tcp-ipv4-long-5con-multi-reverse/test-ns.yml index cb8ffd721..871cb8bb7 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/017_echo-tcp-ipv4-long-5con-multi-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/017_echo-tcp-ipv4-long-5con-multi-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/017_echo-tcp-ipv4-long-5con-multi/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/017_echo-tcp-ipv4-long-5con-multi/test-ns.yml index cb8ffd721..871cb8bb7 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/017_echo-tcp-ipv4-long-5con-multi/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/017_echo-tcp-ipv4-long-5con-multi/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/020_echo-tcp-ipv6-short-1con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/020_echo-tcp-ipv6-short-1con-single-reverse/test-ns.yml index 41e1c428b..f2866081a 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/020_echo-tcp-ipv6-short-1con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/020_echo-tcp-ipv6-short-1con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-s", "-c", "1", "-r"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/020_echo-tcp-ipv6-short-1con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/020_echo-tcp-ipv6-short-1con-single/test-ns.yml index 31b7ebb57..e6e1363c6 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/020_echo-tcp-ipv6-short-1con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/020_echo-tcp-ipv6-short-1con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-s", "-c", "1"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/021_echo-tcp-ipv6-short-10con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/021_echo-tcp-ipv6-short-10con-single-reverse/test-ns.yml index 86637ebfe..33a947e8f 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/021_echo-tcp-ipv6-short-10con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/021_echo-tcp-ipv6-short-10con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-s", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/021_echo-tcp-ipv6-short-10con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/021_echo-tcp-ipv6-short-10con-single/test-ns.yml index 86637ebfe..33a947e8f 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/021_echo-tcp-ipv6-short-10con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/021_echo-tcp-ipv6-short-10con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-s", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/022_echo-tcp-ipv6-short-5con-multi-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/022_echo-tcp-ipv6-short-5con-multi-reverse/test-ns.yml index bd97e27e7..8cb1efe49 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/022_echo-tcp-ipv6-short-5con-multi-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/022_echo-tcp-ipv6-short-5con-multi-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-s", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/022_echo-tcp-ipv6-short-5con-multi/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/022_echo-tcp-ipv6-short-5con-multi/test-ns.yml index bd97e27e7..8cb1efe49 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/022_echo-tcp-ipv6-short-5con-multi/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/022_echo-tcp-ipv6-short-5con-multi/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-s", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/025_echo-tcp-ipv6-long-1con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/025_echo-tcp-ipv6-long-1con-single-reverse/test-ns.yml index 5bda7bdfa..067e7abe6 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/025_echo-tcp-ipv6-long-1con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/025_echo-tcp-ipv6-long-1con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-c", "1", "-r"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/025_echo-tcp-ipv6-long-1con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/025_echo-tcp-ipv6-long-1con-single/test-ns.yml index bcfee336b..a8bd88e4f 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/025_echo-tcp-ipv6-long-1con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/025_echo-tcp-ipv6-long-1con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-c", "1"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/026_echo-tcp-ipv6-long-10con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/026_echo-tcp-ipv6-long-10con-single-reverse/test-ns.yml index f920750de..3a9ca0305 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/026_echo-tcp-ipv6-long-10con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/026_echo-tcp-ipv6-long-10con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/026_echo-tcp-ipv6-long-10con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/026_echo-tcp-ipv6-long-10con-single/test-ns.yml index f920750de..3a9ca0305 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/026_echo-tcp-ipv6-long-10con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/026_echo-tcp-ipv6-long-10con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/027_echo-tcp-ipv6-long-5con-multi-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/027_echo-tcp-ipv6-long-5con-multi-reverse/test-ns.yml index 303a0b85e..49ce3e330 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/027_echo-tcp-ipv6-long-5con-multi-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/027_echo-tcp-ipv6-long-5con-multi-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/027_echo-tcp-ipv6-long-5con-multi/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/027_echo-tcp-ipv6-long-5con-multi/test-ns.yml index 303a0b85e..49ce3e330 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/027_echo-tcp-ipv6-long-5con-multi/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/027_echo-tcp-ipv6-long-5con-multi/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/030_echo-udp-ipv4-short-1con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/030_echo-udp-ipv4-short-1con-single-reverse/test-ns.yml index 64259ceba..529f1c27d 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/030_echo-udp-ipv4-short-1con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/030_echo-udp-ipv4-short-1con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-s", "-c", "1", "-r"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/030_echo-udp-ipv4-short-1con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/030_echo-udp-ipv4-short-1con-single/test-ns.yml index 71b8c2fda..511075aab 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/030_echo-udp-ipv4-short-1con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/030_echo-udp-ipv4-short-1con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-s", "-c", "1"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/031_echo-udp-ipv4-short-10con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/031_echo-udp-ipv4-short-10con-single-reverse/test-ns.yml index cebc89a55..7c6cfb949 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/031_echo-udp-ipv4-short-10con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/031_echo-udp-ipv4-short-10con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-s", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/031_echo-udp-ipv4-short-10con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/031_echo-udp-ipv4-short-10con-single/test-ns.yml index cebc89a55..7c6cfb949 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/031_echo-udp-ipv4-short-10con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/031_echo-udp-ipv4-short-10con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-s", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/032_echo-udp-ipv4-short-5con-multi-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/032_echo-udp-ipv4-short-5con-multi-reverse/test-ns.yml index c20c7daae..e380b1fa2 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/032_echo-udp-ipv4-short-5con-multi-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/032_echo-udp-ipv4-short-5con-multi-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-s", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/032_echo-udp-ipv4-short-5con-multi/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/032_echo-udp-ipv4-short-5con-multi/test-ns.yml index c20c7daae..e380b1fa2 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/032_echo-udp-ipv4-short-5con-multi/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/032_echo-udp-ipv4-short-5con-multi/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-s", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/035_echo-udp-ipv4-long-1con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/035_echo-udp-ipv4-long-1con-single-reverse/test-ns.yml index adb4646b7..ba9d1f3a3 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/035_echo-udp-ipv4-long-1con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/035_echo-udp-ipv4-long-1con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-c", "1", "-r"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/035_echo-udp-ipv4-long-1con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/035_echo-udp-ipv4-long-1con-single/test-ns.yml index 68d91e9fa..ee4197397 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/035_echo-udp-ipv4-long-1con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/035_echo-udp-ipv4-long-1con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-c", "1"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/036_echo-udp-ipv4-long-10con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/036_echo-udp-ipv4-long-10con-single-reverse/test-ns.yml index 61e68e3ca..45cb2bb0e 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/036_echo-udp-ipv4-long-10con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/036_echo-udp-ipv4-long-10con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/036_echo-udp-ipv4-long-10con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/036_echo-udp-ipv4-long-10con-single/test-ns.yml index 61e68e3ca..45cb2bb0e 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/036_echo-udp-ipv4-long-10con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/036_echo-udp-ipv4-long-10con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/037_echo-udp-ipv4-long-5con-multi-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/037_echo-udp-ipv4-long-5con-multi-reverse/test-ns.yml index b2be74d56..17d82fc9c 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/037_echo-udp-ipv4-long-5con-multi-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/037_echo-udp-ipv4-long-5con-multi-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/037_echo-udp-ipv4-long-5con-multi/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/037_echo-udp-ipv4-long-5con-multi/test-ns.yml index b2be74d56..17d82fc9c 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/037_echo-udp-ipv4-long-5con-multi/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/037_echo-udp-ipv4-long-5con-multi/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/040_echo-udp-ipv6-short-1con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/040_echo-udp-ipv6-short-1con-single-reverse/test-ns.yml index 8261b4a20..fdd964350 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/040_echo-udp-ipv6-short-1con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/040_echo-udp-ipv6-short-1con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-s", "-c", "1", "-r"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/040_echo-udp-ipv6-short-1con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/040_echo-udp-ipv6-short-1con-single/test-ns.yml index 9a9c8c418..4d57adb4d 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/040_echo-udp-ipv6-short-1con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/040_echo-udp-ipv6-short-1con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-s", "-c", "1"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/041_echo-udp-ipv6-short-10con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/041_echo-udp-ipv6-short-10con-single-reverse/test-ns.yml index 7af0c7ea7..c215f0b93 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/041_echo-udp-ipv6-short-10con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/041_echo-udp-ipv6-short-10con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-s", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/041_echo-udp-ipv6-short-10con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/041_echo-udp-ipv6-short-10con-single/test-ns.yml index 7af0c7ea7..c215f0b93 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/041_echo-udp-ipv6-short-10con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/041_echo-udp-ipv6-short-10con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-s", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/042_echo-udp-ipv6-short-5con-multi-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/042_echo-udp-ipv6-short-5con-multi-reverse/test-ns.yml index e18e78f6c..0b5ee8f39 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/042_echo-udp-ipv6-short-5con-multi-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/042_echo-udp-ipv6-short-5con-multi-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-s", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/042_echo-udp-ipv6-short-5con-multi/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/042_echo-udp-ipv6-short-5con-multi/test-ns.yml index e18e78f6c..0b5ee8f39 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/042_echo-udp-ipv6-short-5con-multi/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/042_echo-udp-ipv6-short-5con-multi/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-s", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/045_echo-udp-ipv6-long-1con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/045_echo-udp-ipv6-long-1con-single-reverse/test-ns.yml index a2336f1fe..153c2c3ae 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/045_echo-udp-ipv6-long-1con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/045_echo-udp-ipv6-long-1con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-c", "1", "-r"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/045_echo-udp-ipv6-long-1con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/045_echo-udp-ipv6-long-1con-single/test-ns.yml index aa06c83dd..a4796f3c3 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/045_echo-udp-ipv6-long-1con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/045_echo-udp-ipv6-long-1con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-c", "1"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/046_echo-udp-ipv6-long-10con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/046_echo-udp-ipv6-long-10con-single-reverse/test-ns.yml index 3f0a26ed4..7f5879a92 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/046_echo-udp-ipv6-long-10con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/046_echo-udp-ipv6-long-10con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/046_echo-udp-ipv6-long-10con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/046_echo-udp-ipv6-long-10con-single/test-ns.yml index 3f0a26ed4..7f5879a92 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/046_echo-udp-ipv6-long-10con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/046_echo-udp-ipv6-long-10con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/047_echo-udp-ipv6-long-5con-multi-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/047_echo-udp-ipv6-long-5con-multi-reverse/test-ns.yml index f3345138a..c34597667 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/047_echo-udp-ipv6-long-5con-multi-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/047_echo-udp-ipv6-long-5con-multi-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/047_echo-udp-ipv6-long-5con-multi/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/047_echo-udp-ipv6-long-5con-multi/test-ns.yml index f3345138a..c34597667 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/047_echo-udp-ipv6-long-5con-multi/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/010_veth/047_echo-udp-ipv6-long-5con-multi/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/010_echo-short-1con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/010_echo-short-1con-single-reverse/test-ns.yml index b76456e31..daa61b0f7 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/010_echo-short-1con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/010_echo-short-1con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-p", "unix", "-s", "-c", "1", "-r"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/010_echo-short-1con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/010_echo-short-1con-single/test-ns.yml index 85a42cfa2..83ac256d9 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/010_echo-short-1con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/010_echo-short-1con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-p", "unix", "-s", "-c", "1"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/011_echo-short-10con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/011_echo-short-10con-single-reverse/test-ns.yml index 9bd698252..db97a9ed5 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/011_echo-short-10con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/011_echo-short-10con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-p", "unix", "-s", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/011_echo-short-10con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/011_echo-short-10con-single/test-ns.yml index 9bd698252..db97a9ed5 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/011_echo-short-10con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/011_echo-short-10con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-p", "unix", "-s", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/012_echo-short-5con-multi-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/012_echo-short-5con-multi-reverse/test-ns.yml index 3556b07d7..e82e8c6b2 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/012_echo-short-5con-multi-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/012_echo-short-5con-multi-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-p", "unix", "-s", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/012_echo-short-5con-multi/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/012_echo-short-5con-multi/test-ns.yml index 3556b07d7..e82e8c6b2 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/012_echo-short-5con-multi/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/012_echo-short-5con-multi/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-p", "unix", "-s", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/015_echo-long-1con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/015_echo-long-1con-single-reverse/test-ns.yml index af80b77d9..1bda31957 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/015_echo-long-1con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/015_echo-long-1con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-p", "unix", "-c", "1", "-r"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/015_echo-long-1con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/015_echo-long-1con-single/test-ns.yml index 690d16d49..afddd1be0 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/015_echo-long-1con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/015_echo-long-1con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-p", "unix", "-c", "1"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/016_echo-long-10con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/016_echo-long-10con-single-reverse/test-ns.yml index 03762f1c4..073a6f570 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/016_echo-long-10con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/016_echo-long-10con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-p", "unix", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/016_echo-long-10con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/016_echo-long-10con-single/test-ns.yml index 03762f1c4..073a6f570 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/016_echo-long-10con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/016_echo-long-10con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-p", "unix", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/017_echo-long-5con-multi-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/017_echo-long-5con-multi-reverse/test-ns.yml index aee11ed53..9784c488c 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/017_echo-long-5con-multi-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/017_echo-long-5con-multi-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-p", "unix", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/017_echo-long-5con-multi/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/017_echo-long-5con-multi/test-ns.yml index aee11ed53..9784c488c 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/017_echo-long-5con-multi/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/050_unix-domain/017_echo-long-5con-multi/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-p", "unix", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/100_mix/010_veth-unix-domain-echo/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/100_mix/010_veth-unix-domain-echo/test-ns.yml index dcbb4a349..82337ef81 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/100_mix/010_veth-unix-domain-echo/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/100_mix/010_veth-unix-domain-echo/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "mix"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/100_mix/011_veth-unix-domain-echo-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/100_mix/011_veth-unix-domain-echo-reverse/test-ns.yml index 77b6fcfea..7206584bb 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/100_mix/011_veth-unix-domain-echo-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/100_mix/011_veth-unix-domain-echo-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "mix-reverse"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/100_mix/012_veth-ipv4-echo/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/100_mix/012_veth-ipv4-echo/test-ns.yml index bf6399ca3..ee7ffd476 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/100_mix/012_veth-ipv4-echo/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/100_mix/012_veth-ipv4-echo/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "mix-ipv4"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/100_mix/013_veth-ipv6-echo/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/100_mix/013_veth-ipv6-echo/test-ns.yml index 46a95f8b8..27decdc47 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/100_mix/013_veth-ipv6-echo/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/100_mix/013_veth-ipv6-echo/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "mix-ipv6"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/100_mix/014_veth-tcp-echo/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/100_mix/014_veth-tcp-echo/test-ns.yml index 6e000f6d4..9648b3290 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/100_mix/014_veth-tcp-echo/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/100_mix/014_veth-tcp-echo/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "mix-tcp"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/100_mix/015_veth-udp-echo/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/100_mix/015_veth-udp-echo/test-ns.yml index 922c2268b..0b09b4efe 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/100_mix/015_veth-udp-echo/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/100_mix/015_veth-udp-echo/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "mix-udp"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/100_mix/020_unix-domain-echo/test-ns.yml b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/100_mix/020_unix-domain-echo/test-ns.yml index 31062e562..a61a6a7d7 100644 --- a/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/100_mix/020_unix-domain-echo/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/001_kernel-4.9.x/100_mix/020_unix-domain-echo/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "mix-unix"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/010_echo-tcp-ipv4-short-1con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/010_echo-tcp-ipv4-short-1con-single-reverse/test-ns.yml index 023e9db20..0b3975a45 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/010_echo-tcp-ipv4-short-1con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/010_echo-tcp-ipv4-short-1con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-s", "-c", "1", "-r"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/010_echo-tcp-ipv4-short-1con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/010_echo-tcp-ipv4-short-1con-single/test-ns.yml index 1ab1395ec..943985c4a 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/010_echo-tcp-ipv4-short-1con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/010_echo-tcp-ipv4-short-1con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-s", "-c", "1"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/011_echo-tcp-ipv4-short-10con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/011_echo-tcp-ipv4-short-10con-single-reverse/test-ns.yml index 8b12a0414..818e05f5f 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/011_echo-tcp-ipv4-short-10con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/011_echo-tcp-ipv4-short-10con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-s", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/011_echo-tcp-ipv4-short-10con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/011_echo-tcp-ipv4-short-10con-single/test-ns.yml index 8b12a0414..818e05f5f 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/011_echo-tcp-ipv4-short-10con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/011_echo-tcp-ipv4-short-10con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-s", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/012_echo-tcp-ipv4-short-5con-multi-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/012_echo-tcp-ipv4-short-5con-multi-reverse/test-ns.yml index f62f3a010..7344e244c 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/012_echo-tcp-ipv4-short-5con-multi-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/012_echo-tcp-ipv4-short-5con-multi-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-s", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/012_echo-tcp-ipv4-short-5con-multi/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/012_echo-tcp-ipv4-short-5con-multi/test-ns.yml index f62f3a010..7344e244c 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/012_echo-tcp-ipv4-short-5con-multi/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/012_echo-tcp-ipv4-short-5con-multi/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-s", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/015_echo-tcp-ipv4-long-1con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/015_echo-tcp-ipv4-long-1con-single-reverse/test-ns.yml index 5c6baa3bd..0654248ec 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/015_echo-tcp-ipv4-long-1con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/015_echo-tcp-ipv4-long-1con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-c", "1", "-r"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/015_echo-tcp-ipv4-long-1con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/015_echo-tcp-ipv4-long-1con-single/test-ns.yml index d6c90a84f..e09098c46 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/015_echo-tcp-ipv4-long-1con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/015_echo-tcp-ipv4-long-1con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-c", "1"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/016_echo-tcp-ipv4-long-10con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/016_echo-tcp-ipv4-long-10con-single-reverse/test-ns.yml index aed2d7cf0..e56bfef7f 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/016_echo-tcp-ipv4-long-10con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/016_echo-tcp-ipv4-long-10con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/016_echo-tcp-ipv4-long-10con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/016_echo-tcp-ipv4-long-10con-single/test-ns.yml index aed2d7cf0..e56bfef7f 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/016_echo-tcp-ipv4-long-10con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/016_echo-tcp-ipv4-long-10con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/017_echo-tcp-ipv4-long-5con-multi-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/017_echo-tcp-ipv4-long-5con-multi-reverse/test-ns.yml index 5d41bf08a..dfef35067 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/017_echo-tcp-ipv4-long-5con-multi-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/017_echo-tcp-ipv4-long-5con-multi-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/017_echo-tcp-ipv4-long-5con-multi/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/017_echo-tcp-ipv4-long-5con-multi/test-ns.yml index 5d41bf08a..dfef35067 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/017_echo-tcp-ipv4-long-5con-multi/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/017_echo-tcp-ipv4-long-5con-multi/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/020_echo-tcp-ipv6-short-1con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/020_echo-tcp-ipv6-short-1con-single-reverse/test-ns.yml index 3640b0d0e..cf2e0f62a 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/020_echo-tcp-ipv6-short-1con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/020_echo-tcp-ipv6-short-1con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-s", "-c", "1", "-r"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/020_echo-tcp-ipv6-short-1con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/020_echo-tcp-ipv6-short-1con-single/test-ns.yml index 15a1ac1c3..5312fc243 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/020_echo-tcp-ipv6-short-1con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/020_echo-tcp-ipv6-short-1con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-s", "-c", "1"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/021_echo-tcp-ipv6-short-10con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/021_echo-tcp-ipv6-short-10con-single-reverse/test-ns.yml index c2d09ebf2..c48f51f5c 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/021_echo-tcp-ipv6-short-10con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/021_echo-tcp-ipv6-short-10con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-s", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/021_echo-tcp-ipv6-short-10con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/021_echo-tcp-ipv6-short-10con-single/test-ns.yml index c2d09ebf2..c48f51f5c 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/021_echo-tcp-ipv6-short-10con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/021_echo-tcp-ipv6-short-10con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-s", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/022_echo-tcp-ipv6-short-5con-multi-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/022_echo-tcp-ipv6-short-5con-multi-reverse/test-ns.yml index 570faa5a7..45be5763c 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/022_echo-tcp-ipv6-short-5con-multi-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/022_echo-tcp-ipv6-short-5con-multi-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-s", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/022_echo-tcp-ipv6-short-5con-multi/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/022_echo-tcp-ipv6-short-5con-multi/test-ns.yml index 570faa5a7..45be5763c 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/022_echo-tcp-ipv6-short-5con-multi/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/022_echo-tcp-ipv6-short-5con-multi/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-s", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/025_echo-tcp-ipv6-long-1con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/025_echo-tcp-ipv6-long-1con-single-reverse/test-ns.yml index 75b7fd2e1..a078e8b7c 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/025_echo-tcp-ipv6-long-1con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/025_echo-tcp-ipv6-long-1con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-c", "1", "-r"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/025_echo-tcp-ipv6-long-1con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/025_echo-tcp-ipv6-long-1con-single/test-ns.yml index 4e1e89897..7ad579505 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/025_echo-tcp-ipv6-long-1con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/025_echo-tcp-ipv6-long-1con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-c", "1"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/026_echo-tcp-ipv6-long-10con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/026_echo-tcp-ipv6-long-10con-single-reverse/test-ns.yml index 0098e772e..0509cc6cd 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/026_echo-tcp-ipv6-long-10con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/026_echo-tcp-ipv6-long-10con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/026_echo-tcp-ipv6-long-10con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/026_echo-tcp-ipv6-long-10con-single/test-ns.yml index 0098e772e..0509cc6cd 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/026_echo-tcp-ipv6-long-10con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/026_echo-tcp-ipv6-long-10con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/027_echo-tcp-ipv6-long-5con-multi-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/027_echo-tcp-ipv6-long-5con-multi-reverse/test-ns.yml index 62b1e567e..9266b3563 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/027_echo-tcp-ipv6-long-5con-multi-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/027_echo-tcp-ipv6-long-5con-multi-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/027_echo-tcp-ipv6-long-5con-multi/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/027_echo-tcp-ipv6-long-5con-multi/test-ns.yml index 62b1e567e..9266b3563 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/027_echo-tcp-ipv6-long-5con-multi/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/027_echo-tcp-ipv6-long-5con-multi/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/030_echo-udp-ipv4-short-1con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/030_echo-udp-ipv4-short-1con-single-reverse/test-ns.yml index ea06c1137..b4bfacb5c 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/030_echo-udp-ipv4-short-1con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/030_echo-udp-ipv4-short-1con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-s", "-c", "1", "-r"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/030_echo-udp-ipv4-short-1con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/030_echo-udp-ipv4-short-1con-single/test-ns.yml index 92f8044e1..9e6a26519 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/030_echo-udp-ipv4-short-1con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/030_echo-udp-ipv4-short-1con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-s", "-c", "1"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/031_echo-udp-ipv4-short-10con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/031_echo-udp-ipv4-short-10con-single-reverse/test-ns.yml index 5879b3b0f..b92531ee5 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/031_echo-udp-ipv4-short-10con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/031_echo-udp-ipv4-short-10con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-s", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/031_echo-udp-ipv4-short-10con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/031_echo-udp-ipv4-short-10con-single/test-ns.yml index 5879b3b0f..b92531ee5 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/031_echo-udp-ipv4-short-10con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/031_echo-udp-ipv4-short-10con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-s", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/032_echo-udp-ipv4-short-5con-multi-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/032_echo-udp-ipv4-short-5con-multi-reverse/test-ns.yml index 2a3913ea0..7ab22c38c 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/032_echo-udp-ipv4-short-5con-multi-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/032_echo-udp-ipv4-short-5con-multi-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-s", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/032_echo-udp-ipv4-short-5con-multi/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/032_echo-udp-ipv4-short-5con-multi/test-ns.yml index 2a3913ea0..7ab22c38c 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/032_echo-udp-ipv4-short-5con-multi/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/032_echo-udp-ipv4-short-5con-multi/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-s", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/035_echo-udp-ipv4-long-1con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/035_echo-udp-ipv4-long-1con-single-reverse/test-ns.yml index fbd665280..03625e730 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/035_echo-udp-ipv4-long-1con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/035_echo-udp-ipv4-long-1con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-c", "1", "-r"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/035_echo-udp-ipv4-long-1con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/035_echo-udp-ipv4-long-1con-single/test-ns.yml index d89ed2d47..11f928fb0 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/035_echo-udp-ipv4-long-1con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/035_echo-udp-ipv4-long-1con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-c", "1"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/036_echo-udp-ipv4-long-10con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/036_echo-udp-ipv4-long-10con-single-reverse/test-ns.yml index 33bd1b674..ce0716db4 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/036_echo-udp-ipv4-long-10con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/036_echo-udp-ipv4-long-10con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/036_echo-udp-ipv4-long-10con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/036_echo-udp-ipv4-long-10con-single/test-ns.yml index 33bd1b674..ce0716db4 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/036_echo-udp-ipv4-long-10con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/036_echo-udp-ipv4-long-10con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/037_echo-udp-ipv4-long-5con-multi-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/037_echo-udp-ipv4-long-5con-multi-reverse/test-ns.yml index 582eb5fcc..923433822 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/037_echo-udp-ipv4-long-5con-multi-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/037_echo-udp-ipv4-long-5con-multi-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/037_echo-udp-ipv4-long-5con-multi/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/037_echo-udp-ipv4-long-5con-multi/test-ns.yml index 582eb5fcc..923433822 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/037_echo-udp-ipv4-long-5con-multi/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/037_echo-udp-ipv4-long-5con-multi/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/040_echo-udp-ipv6-short-1con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/040_echo-udp-ipv6-short-1con-single-reverse/test-ns.yml index ec7a4470a..b518e037b 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/040_echo-udp-ipv6-short-1con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/040_echo-udp-ipv6-short-1con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-s", "-c", "1", "-r"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/040_echo-udp-ipv6-short-1con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/040_echo-udp-ipv6-short-1con-single/test-ns.yml index 9bba45962..29b8a1055 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/040_echo-udp-ipv6-short-1con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/040_echo-udp-ipv6-short-1con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-s", "-c", "1"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/041_echo-udp-ipv6-short-10con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/041_echo-udp-ipv6-short-10con-single-reverse/test-ns.yml index d64d4c6fa..0ae14d0d0 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/041_echo-udp-ipv6-short-10con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/041_echo-udp-ipv6-short-10con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-s", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/041_echo-udp-ipv6-short-10con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/041_echo-udp-ipv6-short-10con-single/test-ns.yml index d64d4c6fa..0ae14d0d0 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/041_echo-udp-ipv6-short-10con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/041_echo-udp-ipv6-short-10con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-s", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/042_echo-udp-ipv6-short-5con-multi-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/042_echo-udp-ipv6-short-5con-multi-reverse/test-ns.yml index b8a04934d..84a0625ed 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/042_echo-udp-ipv6-short-5con-multi-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/042_echo-udp-ipv6-short-5con-multi-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-s", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/042_echo-udp-ipv6-short-5con-multi/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/042_echo-udp-ipv6-short-5con-multi/test-ns.yml index b8a04934d..84a0625ed 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/042_echo-udp-ipv6-short-5con-multi/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/042_echo-udp-ipv6-short-5con-multi/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-s", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/045_echo-udp-ipv6-long-1con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/045_echo-udp-ipv6-long-1con-single-reverse/test-ns.yml index 09af56c22..46d569154 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/045_echo-udp-ipv6-long-1con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/045_echo-udp-ipv6-long-1con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-c", "1", "-r"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/045_echo-udp-ipv6-long-1con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/045_echo-udp-ipv6-long-1con-single/test-ns.yml index f0d6d310b..74e9c398b 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/045_echo-udp-ipv6-long-1con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/045_echo-udp-ipv6-long-1con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-c", "1"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/046_echo-udp-ipv6-long-10con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/046_echo-udp-ipv6-long-10con-single-reverse/test-ns.yml index 2d9571d6d..cd97e0850 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/046_echo-udp-ipv6-long-10con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/046_echo-udp-ipv6-long-10con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/046_echo-udp-ipv6-long-10con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/046_echo-udp-ipv6-long-10con-single/test-ns.yml index 2d9571d6d..cd97e0850 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/046_echo-udp-ipv6-long-10con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/046_echo-udp-ipv6-long-10con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/047_echo-udp-ipv6-long-5con-multi-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/047_echo-udp-ipv6-long-5con-multi-reverse/test-ns.yml index fe6189bc4..2b2ea0590 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/047_echo-udp-ipv6-long-5con-multi-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/047_echo-udp-ipv6-long-5con-multi-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/047_echo-udp-ipv6-long-5con-multi/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/047_echo-udp-ipv6-long-5con-multi/test-ns.yml index fe6189bc4..2b2ea0590 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/047_echo-udp-ipv6-long-5con-multi/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/010_veth/047_echo-udp-ipv6-long-5con-multi/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/010_echo-short-1con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/010_echo-short-1con-single-reverse/test-ns.yml index 700e758fd..4ef0ad883 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/010_echo-short-1con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/010_echo-short-1con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-p", "unix", "-s", "-c", "1", "-r"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/010_echo-short-1con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/010_echo-short-1con-single/test-ns.yml index 768faa9a5..3626fbd93 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/010_echo-short-1con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/010_echo-short-1con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-p", "unix", "-s", "-c", "1"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/011_echo-short-10con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/011_echo-short-10con-single-reverse/test-ns.yml index 9fb569073..eb9af5ba2 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/011_echo-short-10con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/011_echo-short-10con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-p", "unix", "-s", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/011_echo-short-10con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/011_echo-short-10con-single/test-ns.yml index 9fb569073..eb9af5ba2 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/011_echo-short-10con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/011_echo-short-10con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-p", "unix", "-s", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/012_echo-short-5con-multi-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/012_echo-short-5con-multi-reverse/test-ns.yml index 26fead9e9..fe0aa115b 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/012_echo-short-5con-multi-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/012_echo-short-5con-multi-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-p", "unix", "-s", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/012_echo-short-5con-multi/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/012_echo-short-5con-multi/test-ns.yml index 26fead9e9..fe0aa115b 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/012_echo-short-5con-multi/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/012_echo-short-5con-multi/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-p", "unix", "-s", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/015_echo-long-1con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/015_echo-long-1con-single-reverse/test-ns.yml index 89ff17db0..40e0d31a2 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/015_echo-long-1con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/015_echo-long-1con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-p", "unix", "-c", "1", "-r"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/015_echo-long-1con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/015_echo-long-1con-single/test-ns.yml index ddf376fe6..4025f6991 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/015_echo-long-1con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/015_echo-long-1con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-p", "unix", "-c", "1"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/016_echo-long-10con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/016_echo-long-10con-single-reverse/test-ns.yml index e7f6312de..1148c140d 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/016_echo-long-10con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/016_echo-long-10con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-p", "unix", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/016_echo-long-10con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/016_echo-long-10con-single/test-ns.yml index e7f6312de..1148c140d 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/016_echo-long-10con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/016_echo-long-10con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-p", "unix", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/017_echo-long-5con-multi-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/017_echo-long-5con-multi-reverse/test-ns.yml index 3a83d4c6f..1de7296a7 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/017_echo-long-5con-multi-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/017_echo-long-5con-multi-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-p", "unix", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/017_echo-long-5con-multi/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/017_echo-long-5con-multi/test-ns.yml index 3a83d4c6f..1de7296a7 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/017_echo-long-5con-multi/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/050_unix-domain/017_echo-long-5con-multi/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-p", "unix", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/100_mix/010_veth-unix-domain-echo/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/100_mix/010_veth-unix-domain-echo/test-ns.yml index e8b1283df..537837f22 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/100_mix/010_veth-unix-domain-echo/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/100_mix/010_veth-unix-domain-echo/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "mix"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/100_mix/011_veth-unix-domain-echo-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/100_mix/011_veth-unix-domain-echo-reverse/test-ns.yml index 7669a2be7..919b39160 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/100_mix/011_veth-unix-domain-echo-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/100_mix/011_veth-unix-domain-echo-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "mix-reverse"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/100_mix/012_veth-ipv4-echo/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/100_mix/012_veth-ipv4-echo/test-ns.yml index 694c30ac4..dca6af4c6 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/100_mix/012_veth-ipv4-echo/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/100_mix/012_veth-ipv4-echo/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "mix-ipv4"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/100_mix/013_veth-ipv6-echo/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/100_mix/013_veth-ipv6-echo/test-ns.yml index 13c7d8c5e..9802e6e81 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/100_mix/013_veth-ipv6-echo/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/100_mix/013_veth-ipv6-echo/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "mix-ipv6"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/100_mix/014_veth-tcp-echo/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/100_mix/014_veth-tcp-echo/test-ns.yml index 8ba3a1f25..7b9ecf054 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/100_mix/014_veth-tcp-echo/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/100_mix/014_veth-tcp-echo/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "mix-tcp"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/100_mix/015_veth-udp-echo/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/100_mix/015_veth-udp-echo/test-ns.yml index c9259bcb6..c23fbc363 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/100_mix/015_veth-udp-echo/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/100_mix/015_veth-udp-echo/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "mix-udp"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/100_mix/020_unix-domain-echo/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/100_mix/020_unix-domain-echo/test-ns.yml index 013a55f73..120427e74 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/100_mix/020_unix-domain-echo/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/001_kernel-4.9.x/100_mix/020_unix-domain-echo/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "mix-unix"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/010_echo-tcp-ipv4-short-1con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/010_echo-tcp-ipv4-short-1con-single-reverse/test-ns.yml index 023e9db20..0b3975a45 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/010_echo-tcp-ipv4-short-1con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/010_echo-tcp-ipv4-short-1con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-s", "-c", "1", "-r"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/010_echo-tcp-ipv4-short-1con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/010_echo-tcp-ipv4-short-1con-single/test-ns.yml index 1ab1395ec..943985c4a 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/010_echo-tcp-ipv4-short-1con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/010_echo-tcp-ipv4-short-1con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-s", "-c", "1"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/011_echo-tcp-ipv4-short-10con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/011_echo-tcp-ipv4-short-10con-single-reverse/test-ns.yml index 8b12a0414..818e05f5f 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/011_echo-tcp-ipv4-short-10con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/011_echo-tcp-ipv4-short-10con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-s", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/011_echo-tcp-ipv4-short-10con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/011_echo-tcp-ipv4-short-10con-single/test-ns.yml index 8b12a0414..818e05f5f 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/011_echo-tcp-ipv4-short-10con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/011_echo-tcp-ipv4-short-10con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-s", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/012_echo-tcp-ipv4-short-5con-multi-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/012_echo-tcp-ipv4-short-5con-multi-reverse/test-ns.yml index f62f3a010..7344e244c 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/012_echo-tcp-ipv4-short-5con-multi-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/012_echo-tcp-ipv4-short-5con-multi-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-s", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/012_echo-tcp-ipv4-short-5con-multi/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/012_echo-tcp-ipv4-short-5con-multi/test-ns.yml index f62f3a010..7344e244c 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/012_echo-tcp-ipv4-short-5con-multi/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/012_echo-tcp-ipv4-short-5con-multi/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-s", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/015_echo-tcp-ipv4-long-1con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/015_echo-tcp-ipv4-long-1con-single-reverse/test-ns.yml index 5c6baa3bd..0654248ec 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/015_echo-tcp-ipv4-long-1con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/015_echo-tcp-ipv4-long-1con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-c", "1", "-r"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/015_echo-tcp-ipv4-long-1con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/015_echo-tcp-ipv4-long-1con-single/test-ns.yml index d6c90a84f..e09098c46 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/015_echo-tcp-ipv4-long-1con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/015_echo-tcp-ipv4-long-1con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-c", "1"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/016_echo-tcp-ipv4-long-10con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/016_echo-tcp-ipv4-long-10con-single-reverse/test-ns.yml index aed2d7cf0..e56bfef7f 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/016_echo-tcp-ipv4-long-10con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/016_echo-tcp-ipv4-long-10con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/016_echo-tcp-ipv4-long-10con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/016_echo-tcp-ipv4-long-10con-single/test-ns.yml index aed2d7cf0..e56bfef7f 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/016_echo-tcp-ipv4-long-10con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/016_echo-tcp-ipv4-long-10con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/017_echo-tcp-ipv4-long-5con-multi-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/017_echo-tcp-ipv4-long-5con-multi-reverse/test-ns.yml index 5d41bf08a..dfef35067 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/017_echo-tcp-ipv4-long-5con-multi-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/017_echo-tcp-ipv4-long-5con-multi-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/017_echo-tcp-ipv4-long-5con-multi/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/017_echo-tcp-ipv4-long-5con-multi/test-ns.yml index 5d41bf08a..dfef35067 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/017_echo-tcp-ipv4-long-5con-multi/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/017_echo-tcp-ipv4-long-5con-multi/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "4", "-p", "tcp", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/020_echo-tcp-ipv6-short-1con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/020_echo-tcp-ipv6-short-1con-single-reverse/test-ns.yml index 3640b0d0e..cf2e0f62a 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/020_echo-tcp-ipv6-short-1con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/020_echo-tcp-ipv6-short-1con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-s", "-c", "1", "-r"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/020_echo-tcp-ipv6-short-1con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/020_echo-tcp-ipv6-short-1con-single/test-ns.yml index 15a1ac1c3..5312fc243 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/020_echo-tcp-ipv6-short-1con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/020_echo-tcp-ipv6-short-1con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-s", "-c", "1"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/021_echo-tcp-ipv6-short-10con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/021_echo-tcp-ipv6-short-10con-single-reverse/test-ns.yml index c2d09ebf2..c48f51f5c 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/021_echo-tcp-ipv6-short-10con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/021_echo-tcp-ipv6-short-10con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-s", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/021_echo-tcp-ipv6-short-10con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/021_echo-tcp-ipv6-short-10con-single/test-ns.yml index c2d09ebf2..c48f51f5c 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/021_echo-tcp-ipv6-short-10con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/021_echo-tcp-ipv6-short-10con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-s", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/022_echo-tcp-ipv6-short-5con-multi-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/022_echo-tcp-ipv6-short-5con-multi-reverse/test-ns.yml index 570faa5a7..45be5763c 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/022_echo-tcp-ipv6-short-5con-multi-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/022_echo-tcp-ipv6-short-5con-multi-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-s", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/022_echo-tcp-ipv6-short-5con-multi/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/022_echo-tcp-ipv6-short-5con-multi/test-ns.yml index 570faa5a7..45be5763c 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/022_echo-tcp-ipv6-short-5con-multi/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/022_echo-tcp-ipv6-short-5con-multi/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-s", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/025_echo-tcp-ipv6-long-1con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/025_echo-tcp-ipv6-long-1con-single-reverse/test-ns.yml index 75b7fd2e1..a078e8b7c 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/025_echo-tcp-ipv6-long-1con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/025_echo-tcp-ipv6-long-1con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-c", "1", "-r"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/025_echo-tcp-ipv6-long-1con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/025_echo-tcp-ipv6-long-1con-single/test-ns.yml index 4e1e89897..7ad579505 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/025_echo-tcp-ipv6-long-1con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/025_echo-tcp-ipv6-long-1con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-c", "1"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/026_echo-tcp-ipv6-long-10con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/026_echo-tcp-ipv6-long-10con-single-reverse/test-ns.yml index 0098e772e..0509cc6cd 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/026_echo-tcp-ipv6-long-10con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/026_echo-tcp-ipv6-long-10con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/026_echo-tcp-ipv6-long-10con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/026_echo-tcp-ipv6-long-10con-single/test-ns.yml index 0098e772e..0509cc6cd 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/026_echo-tcp-ipv6-long-10con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/026_echo-tcp-ipv6-long-10con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/027_echo-tcp-ipv6-long-5con-multi-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/027_echo-tcp-ipv6-long-5con-multi-reverse/test-ns.yml index 62b1e567e..9266b3563 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/027_echo-tcp-ipv6-long-5con-multi-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/027_echo-tcp-ipv6-long-5con-multi-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/027_echo-tcp-ipv6-long-5con-multi/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/027_echo-tcp-ipv6-long-5con-multi/test-ns.yml index 62b1e567e..9266b3563 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/027_echo-tcp-ipv6-long-5con-multi/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/027_echo-tcp-ipv6-long-5con-multi/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "6", "-p", "tcp", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/030_echo-udp-ipv4-short-1con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/030_echo-udp-ipv4-short-1con-single-reverse/test-ns.yml index ea06c1137..b4bfacb5c 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/030_echo-udp-ipv4-short-1con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/030_echo-udp-ipv4-short-1con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-s", "-c", "1", "-r"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/030_echo-udp-ipv4-short-1con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/030_echo-udp-ipv4-short-1con-single/test-ns.yml index 92f8044e1..9e6a26519 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/030_echo-udp-ipv4-short-1con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/030_echo-udp-ipv4-short-1con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-s", "-c", "1"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/031_echo-udp-ipv4-short-10con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/031_echo-udp-ipv4-short-10con-single-reverse/test-ns.yml index 5879b3b0f..b92531ee5 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/031_echo-udp-ipv4-short-10con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/031_echo-udp-ipv4-short-10con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-s", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/031_echo-udp-ipv4-short-10con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/031_echo-udp-ipv4-short-10con-single/test-ns.yml index 5879b3b0f..b92531ee5 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/031_echo-udp-ipv4-short-10con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/031_echo-udp-ipv4-short-10con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-s", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/032_echo-udp-ipv4-short-5con-multi-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/032_echo-udp-ipv4-short-5con-multi-reverse/test-ns.yml index 2a3913ea0..7ab22c38c 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/032_echo-udp-ipv4-short-5con-multi-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/032_echo-udp-ipv4-short-5con-multi-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-s", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/032_echo-udp-ipv4-short-5con-multi/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/032_echo-udp-ipv4-short-5con-multi/test-ns.yml index 2a3913ea0..7ab22c38c 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/032_echo-udp-ipv4-short-5con-multi/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/032_echo-udp-ipv4-short-5con-multi/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-s", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/035_echo-udp-ipv4-long-1con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/035_echo-udp-ipv4-long-1con-single-reverse/test-ns.yml index fbd665280..03625e730 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/035_echo-udp-ipv4-long-1con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/035_echo-udp-ipv4-long-1con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-c", "1", "-r"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/035_echo-udp-ipv4-long-1con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/035_echo-udp-ipv4-long-1con-single/test-ns.yml index d89ed2d47..11f928fb0 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/035_echo-udp-ipv4-long-1con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/035_echo-udp-ipv4-long-1con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-c", "1"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/036_echo-udp-ipv4-long-10con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/036_echo-udp-ipv4-long-10con-single-reverse/test-ns.yml index 33bd1b674..ce0716db4 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/036_echo-udp-ipv4-long-10con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/036_echo-udp-ipv4-long-10con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/036_echo-udp-ipv4-long-10con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/036_echo-udp-ipv4-long-10con-single/test-ns.yml index 33bd1b674..ce0716db4 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/036_echo-udp-ipv4-long-10con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/036_echo-udp-ipv4-long-10con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/037_echo-udp-ipv4-long-5con-multi-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/037_echo-udp-ipv4-long-5con-multi-reverse/test-ns.yml index 582eb5fcc..923433822 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/037_echo-udp-ipv4-long-5con-multi-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/037_echo-udp-ipv4-long-5con-multi-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/037_echo-udp-ipv4-long-5con-multi/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/037_echo-udp-ipv4-long-5con-multi/test-ns.yml index 582eb5fcc..923433822 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/037_echo-udp-ipv4-long-5con-multi/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/037_echo-udp-ipv4-long-5con-multi/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "4", "-p", "udp", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/040_echo-udp-ipv6-short-1con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/040_echo-udp-ipv6-short-1con-single-reverse/test-ns.yml index ec7a4470a..b518e037b 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/040_echo-udp-ipv6-short-1con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/040_echo-udp-ipv6-short-1con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-s", "-c", "1", "-r"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/040_echo-udp-ipv6-short-1con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/040_echo-udp-ipv6-short-1con-single/test-ns.yml index 9bba45962..29b8a1055 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/040_echo-udp-ipv6-short-1con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/040_echo-udp-ipv6-short-1con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-s", "-c", "1"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/041_echo-udp-ipv6-short-10con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/041_echo-udp-ipv6-short-10con-single-reverse/test-ns.yml index d64d4c6fa..0ae14d0d0 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/041_echo-udp-ipv6-short-10con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/041_echo-udp-ipv6-short-10con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-s", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/041_echo-udp-ipv6-short-10con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/041_echo-udp-ipv6-short-10con-single/test-ns.yml index d64d4c6fa..0ae14d0d0 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/041_echo-udp-ipv6-short-10con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/041_echo-udp-ipv6-short-10con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-s", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/042_echo-udp-ipv6-short-5con-multi-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/042_echo-udp-ipv6-short-5con-multi-reverse/test-ns.yml index b8a04934d..84a0625ed 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/042_echo-udp-ipv6-short-5con-multi-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/042_echo-udp-ipv6-short-5con-multi-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-s", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/042_echo-udp-ipv6-short-5con-multi/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/042_echo-udp-ipv6-short-5con-multi/test-ns.yml index b8a04934d..84a0625ed 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/042_echo-udp-ipv6-short-5con-multi/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/042_echo-udp-ipv6-short-5con-multi/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-s", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/045_echo-udp-ipv6-long-1con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/045_echo-udp-ipv6-long-1con-single-reverse/test-ns.yml index 09af56c22..46d569154 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/045_echo-udp-ipv6-long-1con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/045_echo-udp-ipv6-long-1con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-c", "1", "-r"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/045_echo-udp-ipv6-long-1con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/045_echo-udp-ipv6-long-1con-single/test-ns.yml index f0d6d310b..74e9c398b 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/045_echo-udp-ipv6-long-1con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/045_echo-udp-ipv6-long-1con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-c", "1"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/046_echo-udp-ipv6-long-10con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/046_echo-udp-ipv6-long-10con-single-reverse/test-ns.yml index 2d9571d6d..cd97e0850 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/046_echo-udp-ipv6-long-10con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/046_echo-udp-ipv6-long-10con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/046_echo-udp-ipv6-long-10con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/046_echo-udp-ipv6-long-10con-single/test-ns.yml index 2d9571d6d..cd97e0850 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/046_echo-udp-ipv6-long-10con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/046_echo-udp-ipv6-long-10con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/047_echo-udp-ipv6-long-5con-multi-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/047_echo-udp-ipv6-long-5con-multi-reverse/test-ns.yml index fe6189bc4..2b2ea0590 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/047_echo-udp-ipv6-long-5con-multi-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/047_echo-udp-ipv6-long-5con-multi-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/047_echo-udp-ipv6-long-5con-multi/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/047_echo-udp-ipv6-long-5con-multi/test-ns.yml index fe6189bc4..2b2ea0590 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/047_echo-udp-ipv6-long-5con-multi/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/010_veth/047_echo-udp-ipv6-long-5con-multi/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-ip", "6", "-p", "udp", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/010_echo-short-1con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/010_echo-short-1con-single-reverse/test-ns.yml index 700e758fd..4ef0ad883 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/010_echo-short-1con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/010_echo-short-1con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-p", "unix", "-s", "-c", "1", "-r"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/010_echo-short-1con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/010_echo-short-1con-single/test-ns.yml index 768faa9a5..3626fbd93 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/010_echo-short-1con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/010_echo-short-1con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-p", "unix", "-s", "-c", "1"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/011_echo-short-10con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/011_echo-short-10con-single-reverse/test-ns.yml index 9fb569073..eb9af5ba2 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/011_echo-short-10con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/011_echo-short-10con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-p", "unix", "-s", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/011_echo-short-10con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/011_echo-short-10con-single/test-ns.yml index 9fb569073..eb9af5ba2 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/011_echo-short-10con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/011_echo-short-10con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-p", "unix", "-s", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/012_echo-short-5con-multi-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/012_echo-short-5con-multi-reverse/test-ns.yml index 26fead9e9..fe0aa115b 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/012_echo-short-5con-multi-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/012_echo-short-5con-multi-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-p", "unix", "-s", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/012_echo-short-5con-multi/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/012_echo-short-5con-multi/test-ns.yml index 26fead9e9..fe0aa115b 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/012_echo-short-5con-multi/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/012_echo-short-5con-multi/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-p", "unix", "-s", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/015_echo-long-1con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/015_echo-long-1con-single-reverse/test-ns.yml index 89ff17db0..40e0d31a2 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/015_echo-long-1con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/015_echo-long-1con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-p", "unix", "-c", "1", "-r"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/015_echo-long-1con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/015_echo-long-1con-single/test-ns.yml index ddf376fe6..4025f6991 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/015_echo-long-1con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/015_echo-long-1con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-p", "unix", "-c", "1"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/016_echo-long-10con-single-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/016_echo-long-10con-single-reverse/test-ns.yml index e7f6312de..1148c140d 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/016_echo-long-10con-single-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/016_echo-long-10con-single-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-p", "unix", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/016_echo-long-10con-single/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/016_echo-long-10con-single/test-ns.yml index e7f6312de..1148c140d 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/016_echo-long-10con-single/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/016_echo-long-10con-single/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "1", "-l", "5", "-i", "15", "-p", "unix", "-c", "10"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/017_echo-long-5con-multi-reverse/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/017_echo-long-5con-multi-reverse/test-ns.yml index 3a83d4c6f..1de7296a7 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/017_echo-long-5con-multi-reverse/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/017_echo-long-5con-multi-reverse/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-p", "unix", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/017_echo-long-5con-multi/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/017_echo-long-5con-multi/test-ns.yml index 3a83d4c6f..1de7296a7 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/017_echo-long-5con-multi/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/050_unix-domain/017_echo-long-5con-multi/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "5", "-l", "5", "-i", "15", "-p", "unix", "-c", "5"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/100_mix/010_veth-unix-domain-echo/test-ns.yml b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/100_mix/010_veth-unix-domain-echo/test-ns.yml index e8b1283df..537837f22 100644 --- a/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/100_mix/010_veth-unix-domain-echo/test-ns.yml +++ b/test/cases/020_kernel/110_namespace/003_kernel-4.11.x/100_mix/010_veth-unix-domain-echo/test-ns.yml @@ -6,13 +6,13 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: test-ns - image: linuxkit/test-ns:9c282c060d840e39136c138b5943bc9014fa17a9 + image: linuxkit/test-ns:321a9314c3f8b1ce748525b393dd633c48945216 command: ["/bin/sh", "/runp-runc-net.sh", "mix"] mounts: # for runc - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: diff --git a/test/cases/030_security/000_docker-bench/test-docker-bench.yml b/test/cases/030_security/000_docker-bench/test-docker-bench.yml index 6e69decf0..529cbd998 100644 --- a/test/cases/030_security/000_docker-bench/test-docker-bench.yml +++ b/test/cases/030_security/000_docker-bench/test-docker-bench.yml @@ -36,7 +36,7 @@ services: - /run:/var/run command: ["/usr/local/bin/docker-init", "/usr/local/bin/dockerd"] - name: test-docker-bench - image: linuxkit/test-docker-bench:4999d3484771e8466580c0dc2e479595e49faa85 + image: linuxkit/test-docker-bench:6bce26ce412fbde60f4a90ee20f78ddd09f3578b ipc: host pid: host net: host diff --git a/test/cases/030_security/010_ports/test.yml b/test/cases/030_security/010_ports/test.yml index 5ead218cf..39fdfa657 100644 --- a/test/cases/030_security/010_ports/test.yml +++ b/test/cases/030_security/010_ports/test.yml @@ -12,7 +12,7 @@ onboot: - /check.sh:/check.sh command: ["sh", "./check.sh"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "10"] files: - path: check.sh diff --git a/test/cases/040_packages/002_binfmt/test-binfmt.yml b/test/cases/040_packages/002_binfmt/test-binfmt.yml index ad1f62884..d9f2c6945 100644 --- a/test/cases/040_packages/002_binfmt/test-binfmt.yml +++ b/test/cases/040_packages/002_binfmt/test-binfmt.yml @@ -15,7 +15,7 @@ onboot: - /proc/sys/fs/binfmt_misc:/binfmt_misc command: ["sh", "./check.sh"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "10"] files: - path: check.sh diff --git a/test/cases/040_packages/003_ca-certificates/test-ca-certificates.yml b/test/cases/040_packages/003_ca-certificates/test-ca-certificates.yml index 08f472247..4c7f356e8 100644 --- a/test/cases/040_packages/003_ca-certificates/test-ca-certificates.yml +++ b/test/cases/040_packages/003_ca-certificates/test-ca-certificates.yml @@ -14,7 +14,7 @@ onboot: - /etc:/host-etc command: ["sh", "./check.sh"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "10"] files: - path: check.sh diff --git a/test/cases/040_packages/003_containerd/test-containerd.yml b/test/cases/040_packages/003_containerd/test-containerd.yml index 26a060c35..4677d8b2f 100644 --- a/test/cases/040_packages/003_containerd/test-containerd.yml +++ b/test/cases/040_packages/003_containerd/test-containerd.yml @@ -10,9 +10,9 @@ onboot: - name: sysctl image: linuxkit/sysctl:d1a43c7c91e92374766f962dc8534cf9508756b0 - name: test - image: linuxkit/test-containerd:b9b6046f1eb8ed8a15eb70523bc584e7da657baa + image: linuxkit/test-containerd:0e350ce958b379b9ddb2bcdd22aaf4508f6ddbc3 - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 trust: org: - linuxkit diff --git a/test/cases/040_packages/004_dhcpcd/test-dhcpcd.yml b/test/cases/040_packages/004_dhcpcd/test-dhcpcd.yml index bfb70cd66..3bc2ce83d 100644 --- a/test/cases/040_packages/004_dhcpcd/test-dhcpcd.yml +++ b/test/cases/040_packages/004_dhcpcd/test-dhcpcd.yml @@ -16,7 +16,7 @@ onboot: - /check.sh:/check.sh command: ["sh", "./check.sh"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "10"] files: - path: check.sh diff --git a/test/cases/040_packages/013_mkimage/mkimage.yml b/test/cases/040_packages/013_mkimage/mkimage.yml index c39fdf358..97153991f 100644 --- a/test/cases/040_packages/013_mkimage/mkimage.yml +++ b/test/cases/040_packages/013_mkimage/mkimage.yml @@ -8,7 +8,7 @@ onboot: - name: mkimage image: linuxkit/mkimage:a63b8ee4c5de335afc32ba850e0af319b25b96c0 - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 trust: org: - linuxkit diff --git a/test/cases/040_packages/013_mkimage/run.yml b/test/cases/040_packages/013_mkimage/run.yml index 1b47e83ef..eef13c76b 100644 --- a/test/cases/040_packages/013_mkimage/run.yml +++ b/test/cases/040_packages/013_mkimage/run.yml @@ -6,7 +6,7 @@ init: - linuxkit/runc:d5cbeb95bdafedb82ad2cf11cff1a5da7fcae630 onboot: - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 trust: org: - linuxkit diff --git a/test/cases/040_packages/019_sysctl/test-sysctl.yml b/test/cases/040_packages/019_sysctl/test-sysctl.yml index aa22e45d7..207ec8a0d 100644 --- a/test/cases/040_packages/019_sysctl/test-sysctl.yml +++ b/test/cases/040_packages/019_sysctl/test-sysctl.yml @@ -17,7 +17,7 @@ onboot: - /check.sh:/check.sh command: ["sh", "./check.sh"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "10"] files: - path: check.sh diff --git a/test/hack/test-ltp.yml b/test/hack/test-ltp.yml index 6c6511e92..0b64ccb75 100644 --- a/test/hack/test-ltp.yml +++ b/test/hack/test-ltp.yml @@ -7,11 +7,11 @@ init: - linuxkit/containerd:e33e0534d6fca88e1eb86897a1ea410b4a5d722e onboot: - name: ltp - image: linuxkit/test-ltp:6df23ac196332cafb9c0f8e32f328e22d612267d + image: linuxkit/test-ltp:b8ad3dfd0998ddff4fd47b3f693d2a4aa93ab7a4 binds: - /etc/ltp/baseline:/etc/ltp/baseline - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 files: - path: /etc/ltp/baseline contents: "100" diff --git a/test/hack/test.yml b/test/hack/test.yml index 9cd96ecf2..4b27871ea 100644 --- a/test/hack/test.yml +++ b/test/hack/test.yml @@ -12,9 +12,9 @@ onboot: image: linuxkit/dhcpcd:17423c1ccced74e3c005fd80486e8177841fe02b command: ["/sbin/dhcpcd", "--nobackground", "-f", "/dhcpcd.conf", "-1"] - name: check-kernel-config - image: linuxkit/test-kernel-config:7e8bcae3e661f5b48c00cf2f15bbef19b35fac76 + image: linuxkit/test-kernel-config:271aa181b78ca9c6e463dfc1107cf9da6090463d - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: image: diff --git a/test/pkg/ns/template.yml b/test/pkg/ns/template.yml index b61ed8c0b..6d934b5f9 100644 --- a/test/pkg/ns/template.yml +++ b/test/pkg/ns/template.yml @@ -14,7 +14,7 @@ onboot: - type: cgroup options: ["rw"] - name: poweroff - image: linuxkit/poweroff:bce51402e293da0b653923a43c3c7be6e0effa05 + image: linuxkit/poweroff:3845c4d64d47a1ea367806be5547e44594b0fa91 command: ["/bin/sh", "/poweroff.sh", "3"] trust: org: From b472f79dbf5173389a53d38d8f51b24098e935e5 Mon Sep 17 00:00:00 2001 From: Ian Campbell Date: Wed, 26 Jul 2017 13:41:37 +0100 Subject: [PATCH 07/12] tools/guestfs: Use build --iidfile Modelled after tools/alpine's build. Signed-off-by: Ian Campbell --- tools/guestfs/Makefile | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/tools/guestfs/Makefile b/tools/guestfs/Makefile index c618fb841..5dc399b25 100644 --- a/tools/guestfs/Makefile +++ b/tools/guestfs/Makefile @@ -5,25 +5,25 @@ IMAGE=guestfs default: push -hash: Dockerfile +iid: Dockerfile DOCKER_CONTENT_TRUST=1 docker pull $(BASE) - tar cf - $^ | docker build --no-cache -t $(IMAGE):build - - docker run --rm $(IMAGE):build sh -c 'apt list --installed 2>/dev/null | sha1sum' | sed 's/ .*//' > hash + tar cf - $^ | docker build --no-cache --iidfile iid - -push: hash +hash: Makefile iid + docker run --rm $(shell cat iid) sh -c 'apt list --installed 2>/dev/null | sha1sum' | sed 's/ .*//' > hash + +push: hash iid docker pull linuxkit/$(IMAGE):$(shell cat hash) || \ - (docker tag $(IMAGE):build linuxkit/$(IMAGE):$(shell cat hash) && \ + (docker tag $(shell cat iid) linuxkit/$(IMAGE):$(shell cat hash) && \ docker push linuxkit/$(IMAGE):$(shell cat hash)) - docker rmi $(IMAGE):build - rm -f hash + rm -f iid -tag: hash +tag: hash iid docker pull linuxkit/$(IMAGE):$(shell cat hash) || \ - docker tag $(IMAGE):build linuxkit/$(IMAGE):$(shell cat hash) - docker rmi $(IMAGE):build - rm -f hash + docker tag $(shell cat iid) linuxkit/$(IMAGE):$(shell cat hash) + rm -f iid clean: - rm -f hash + rm -f hash iid .DELETE_ON_ERROR: From ac3103236e149dbed95e4195d4d309e27e215497 Mon Sep 17 00:00:00 2001 From: Ian Campbell Date: Wed, 26 Jul 2017 13:42:06 +0100 Subject: [PATCH 08/12] toos/guestfs: Enable content trust globally This makes the need to pull $(BASE) redundant. Rebuild resulted in linuxkit/guestfs:aecc40bf84ce4f4238e06934c46d7cc570a39eed@sha256:62e810869e83dabe04af7ac8fcd81d9f177d986a3424dcb9c4eb5439993c962f Signed-off-by: Ian Campbell --- tools/guestfs/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/guestfs/Makefile b/tools/guestfs/Makefile index 5dc399b25..0813f0dde 100644 --- a/tools/guestfs/Makefile +++ b/tools/guestfs/Makefile @@ -1,12 +1,12 @@ .PHONY: tag push -BASE=debian:stretch IMAGE=guestfs +export DOCKER_CONTENT_TRUST=1 + default: push iid: Dockerfile - DOCKER_CONTENT_TRUST=1 docker pull $(BASE) tar cf - $^ | docker build --no-cache --iidfile iid - hash: Makefile iid From 9f7917e54312157f5832fabcbdd7b412126bf34f Mon Sep 17 00:00:00 2001 From: Ian Campbell Date: Wed, 26 Jul 2017 13:56:43 +0100 Subject: [PATCH 09/12] tools: Update consumers of linuxkit/guestfs to package.mk build Also update the base image to the latest. Signed-off-by: Ian Campbell --- tools/mkimage-dynamic-vhd/Dockerfile | 2 +- tools/mkimage-dynamic-vhd/Makefile | 27 ++------------------------- tools/mkimage-gcp/Dockerfile | 2 +- tools/mkimage-gcp/Makefile | 27 ++------------------------- tools/mkimage-vhd/Dockerfile | 2 +- tools/mkimage-vhd/Makefile | 27 ++------------------------- tools/mkimage-vmdk/Dockerfile | 2 +- tools/mkimage-vmdk/Makefile | 27 ++------------------------- 8 files changed, 12 insertions(+), 104 deletions(-) diff --git a/tools/mkimage-dynamic-vhd/Dockerfile b/tools/mkimage-dynamic-vhd/Dockerfile index ad23bc3ba..3d74bfa62 100644 --- a/tools/mkimage-dynamic-vhd/Dockerfile +++ b/tools/mkimage-dynamic-vhd/Dockerfile @@ -1,4 +1,4 @@ -FROM linuxkit/guestfs:2657580764d5791e103647237dac5a0276533e2e@sha256:8f99eba6720df17bce8893052d7ca9a07cdc9cd09b335a5a9c57ebd5a44934be +FROM linuxkit/guestfs:aecc40bf84ce4f4238e06934c46d7cc570a39eed@sha256:62e810869e83dabe04af7ac8fcd81d9f177d986a3424dcb9c4eb5439993c962f COPY . . diff --git a/tools/mkimage-dynamic-vhd/Makefile b/tools/mkimage-dynamic-vhd/Makefile index c9a7f25c9..a3646f26c 100644 --- a/tools/mkimage-dynamic-vhd/Makefile +++ b/tools/mkimage-dynamic-vhd/Makefile @@ -1,27 +1,4 @@ -.PHONY: tag push - IMAGE=mkimage-dynamic-vhd +DEPS=make-dynamic-vhd -default: push - -hash: Dockerfile make-dynamic-vhd - tar cf - $^ | docker build --no-cache -t $(IMAGE):build - - docker run --entrypoint sh --rm $(IMAGE):build -c "(cat $^; apt list --installed 2>/dev/null) | sha1sum" | sed 's/ .*//' > hash - -push: hash - docker pull linuxkit/$(IMAGE):$(shell cat hash) || \ - (docker tag $(IMAGE):build linuxkit/$(IMAGE):$(shell cat hash) && \ - docker push linuxkit/$(IMAGE):$(shell cat hash)) - docker rmi $(IMAGE):build - rm -f hash - -tag: hash - docker pull linuxkit/$(IMAGE):$(shell cat hash) || \ - docker tag $(IMAGE):build linuxkit/$(IMAGE):$(shell cat hash) - docker rmi $(IMAGE):build - rm -f hash - -clean: - rm -f hash - -.DELETE_ON_ERROR: +include ../../pkg/package.mk diff --git a/tools/mkimage-gcp/Dockerfile b/tools/mkimage-gcp/Dockerfile index 6a241f530..f7470dc8a 100644 --- a/tools/mkimage-gcp/Dockerfile +++ b/tools/mkimage-gcp/Dockerfile @@ -1,4 +1,4 @@ -FROM linuxkit/guestfs:2657580764d5791e103647237dac5a0276533e2e@sha256:8f99eba6720df17bce8893052d7ca9a07cdc9cd09b335a5a9c57ebd5a44934be +FROM linuxkit/guestfs:aecc40bf84ce4f4238e06934c46d7cc570a39eed@sha256:62e810869e83dabe04af7ac8fcd81d9f177d986a3424dcb9c4eb5439993c962f COPY . . diff --git a/tools/mkimage-gcp/Makefile b/tools/mkimage-gcp/Makefile index 868ea39fe..dfc5a3c7e 100644 --- a/tools/mkimage-gcp/Makefile +++ b/tools/mkimage-gcp/Makefile @@ -1,27 +1,4 @@ -.PHONY: tag push - IMAGE=mkimage-gcp +DEPS=make-gcp -default: push - -hash: Dockerfile make-gcp - tar cf - $^ | docker build --no-cache -t $(IMAGE):build - - docker run --entrypoint sh --rm $(IMAGE):build -c "(cat $^; apt list --installed 2>/dev/null) | sha1sum" | sed 's/ .*//' > hash - -push: hash - docker pull linuxkit/$(IMAGE):$(shell cat hash) || \ - (docker tag $(IMAGE):build linuxkit/$(IMAGE):$(shell cat hash) && \ - docker push linuxkit/$(IMAGE):$(shell cat hash)) - docker rmi $(IMAGE):build - rm -f hash - -tag: hash - docker pull linuxkit/$(IMAGE):$(shell cat hash) || \ - docker tag $(IMAGE):build linuxkit/$(IMAGE):$(shell cat hash) - docker rmi $(IMAGE):build - rm -f hash - -clean: - rm -f hash - -.DELETE_ON_ERROR: +include ../../pkg/package.mk diff --git a/tools/mkimage-vhd/Dockerfile b/tools/mkimage-vhd/Dockerfile index 09e114eba..bf8312950 100644 --- a/tools/mkimage-vhd/Dockerfile +++ b/tools/mkimage-vhd/Dockerfile @@ -1,4 +1,4 @@ -FROM linuxkit/guestfs:2657580764d5791e103647237dac5a0276533e2e@sha256:8f99eba6720df17bce8893052d7ca9a07cdc9cd09b335a5a9c57ebd5a44934be +FROM linuxkit/guestfs:aecc40bf84ce4f4238e06934c46d7cc570a39eed@sha256:62e810869e83dabe04af7ac8fcd81d9f177d986a3424dcb9c4eb5439993c962f COPY . . diff --git a/tools/mkimage-vhd/Makefile b/tools/mkimage-vhd/Makefile index d5b7c14cd..9b390de57 100644 --- a/tools/mkimage-vhd/Makefile +++ b/tools/mkimage-vhd/Makefile @@ -1,27 +1,4 @@ -.PHONY: tag push - IMAGE=mkimage-vhd +DEPS=make-vhd -default: push - -hash: Dockerfile make-vhd - tar cf - $^ | docker build --no-cache -t $(IMAGE):build - - docker run --entrypoint sh --rm $(IMAGE):build -c "(cat $^; apt list --installed 2>/dev/null) | sha1sum" | sed 's/ .*//' > hash - -push: hash - docker pull linuxkit/$(IMAGE):$(shell cat hash) || \ - (docker tag $(IMAGE):build linuxkit/$(IMAGE):$(shell cat hash) && \ - docker push linuxkit/$(IMAGE):$(shell cat hash)) - docker rmi $(IMAGE):build - rm -f hash - -tag: hash - docker pull linuxkit/$(IMAGE):$(shell cat hash) || \ - docker tag $(IMAGE):build linuxkit/$(IMAGE):$(shell cat hash) - docker rmi $(IMAGE):build - rm -f hash - -clean: - rm -f hash - -.DELETE_ON_ERROR: +include ../../pkg/package.mk diff --git a/tools/mkimage-vmdk/Dockerfile b/tools/mkimage-vmdk/Dockerfile index c132fb975..5d32e483c 100644 --- a/tools/mkimage-vmdk/Dockerfile +++ b/tools/mkimage-vmdk/Dockerfile @@ -1,4 +1,4 @@ -FROM linuxkit/guestfs:2657580764d5791e103647237dac5a0276533e2e@sha256:8f99eba6720df17bce8893052d7ca9a07cdc9cd09b335a5a9c57ebd5a44934be +FROM linuxkit/guestfs:aecc40bf84ce4f4238e06934c46d7cc570a39eed@sha256:62e810869e83dabe04af7ac8fcd81d9f177d986a3424dcb9c4eb5439993c962f COPY . . diff --git a/tools/mkimage-vmdk/Makefile b/tools/mkimage-vmdk/Makefile index 70a369f5d..f2c2d71a0 100644 --- a/tools/mkimage-vmdk/Makefile +++ b/tools/mkimage-vmdk/Makefile @@ -1,27 +1,4 @@ -.PHONY: tag push - IMAGE=mkimage-vmdk +DEPS=make-vmdk -default: push - -hash: Dockerfile make-vmdk - tar cf - $^ | docker build --no-cache -t $(IMAGE):build - - docker run --entrypoint sh --rm $(IMAGE):build -c "(cat $^; apt list --installed 2>/dev/null) | sha1sum" | sed 's/ .*//' > hash - -push: hash - docker pull linuxkit/$(IMAGE):$(shell cat hash) || \ - (docker tag $(IMAGE):build linuxkit/$(IMAGE):$(shell cat hash) && \ - docker push linuxkit/$(IMAGE):$(shell cat hash)) - docker rmi $(IMAGE):build - rm -f hash - -tag: hash - docker pull linuxkit/$(IMAGE):$(shell cat hash) || \ - docker tag $(IMAGE):build linuxkit/$(IMAGE):$(shell cat hash) - docker rmi $(IMAGE):build - rm -f hash - -clean: - rm -f hash - -.DELETE_ON_ERROR: +include ../../pkg/package.mk From df19ad752a0af720a9be1d3de78b39b47fc4b1ba Mon Sep 17 00:00:00 2001 From: Ian Campbell Date: Wed, 26 Jul 2017 14:08:54 +0100 Subject: [PATCH 10/12] tools/mkimage-iso-*: Transition to alpine base + package.mk Signed-off-by: Ian Campbell --- tools/mkimage-iso-bios/Dockerfile | 2 +- tools/mkimage-iso-bios/Makefile | 29 ++--------------------------- tools/mkimage-iso-efi/Dockerfile | 2 +- tools/mkimage-iso-efi/Makefile | 29 ++--------------------------- 4 files changed, 6 insertions(+), 56 deletions(-) diff --git a/tools/mkimage-iso-bios/Dockerfile b/tools/mkimage-iso-bios/Dockerfile index f49ee54e8..1c98f2caa 100644 --- a/tools/mkimage-iso-bios/Dockerfile +++ b/tools/mkimage-iso-bios/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.5 +FROM linuxkit/alpine:34af9cb1990debd17fae6d4198c62ce3910d9908 RUN \ apk update && apk upgrade && \ diff --git a/tools/mkimage-iso-bios/Makefile b/tools/mkimage-iso-bios/Makefile index 02622fc7f..ff6f47e3c 100644 --- a/tools/mkimage-iso-bios/Makefile +++ b/tools/mkimage-iso-bios/Makefile @@ -1,29 +1,4 @@ -.PHONY: tag push - -BASE=alpine:3.5 IMAGE=mkimage-iso-bios +DEPS=make-iso -default: push - -hash: Dockerfile make-iso - DOCKER_CONTENT_TRUST=1 docker pull $(BASE) - tar cf - $^ | docker build --no-cache -t $(IMAGE):build - - docker run --rm --entrypoint /bin/sh $(IMAGE):build -c 'cat $^ /lib/apk/db/installed | sha1sum' | sed 's/ .*//' > $@ - -push: hash - docker pull linuxkit/$(IMAGE):$(shell cat hash) || \ - (docker tag $(IMAGE):build linuxkit/$(IMAGE):$(shell cat hash) && \ - docker push linuxkit/$(IMAGE):$(shell cat hash)) - docker rmi $(IMAGE):build - rm -f hash - -tag: hash - docker pull linuxkit/$(IMAGE):$(shell cat hash) || \ - docker tag $(IMAGE):build linuxkit/$(IMAGE):$(shell cat hash) - docker rmi $(IMAGE):build - rm -f hash - -clean: - rm -f hash - -.DELETE_ON_ERROR: +include ../../pkg/package.mk diff --git a/tools/mkimage-iso-efi/Dockerfile b/tools/mkimage-iso-efi/Dockerfile index d68795744..034e666e2 100644 --- a/tools/mkimage-iso-efi/Dockerfile +++ b/tools/mkimage-iso-efi/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:edge +FROM linuxkit/alpine:34af9cb1990debd17fae6d4198c62ce3910d9908 RUN \ apk update && apk upgrade && \ diff --git a/tools/mkimage-iso-efi/Makefile b/tools/mkimage-iso-efi/Makefile index 08438ed0f..f5c9aa86d 100644 --- a/tools/mkimage-iso-efi/Makefile +++ b/tools/mkimage-iso-efi/Makefile @@ -1,29 +1,4 @@ -.PHONY: tag push - -BASE=alpine:3.5 IMAGE=mkimage-iso-efi +DEPS=make-efi -default: push - -hash: Dockerfile make-efi - DOCKER_CONTENT_TRUST=1 docker pull $(BASE) - tar cf - $^ | docker build --no-cache -t $(IMAGE):build - - docker run --rm --entrypoint /bin/sh $(IMAGE):build -c 'cat $^ /lib/apk/db/installed | sha1sum' | sed 's/ .*//' > $@ - -push: hash - docker pull linuxkit/$(IMAGE):$(shell cat hash) || \ - (docker tag $(IMAGE):build linuxkit/$(IMAGE):$(shell cat hash) && \ - docker push linuxkit/$(IMAGE):$(shell cat hash)) - docker rmi $(IMAGE):build - rm -f hash - -tag: hash - docker pull linuxkit/$(IMAGE):$(shell cat hash) || \ - docker tag $(IMAGE):build linuxkit/$(IMAGE):$(shell cat hash) - docker rmi $(IMAGE):build - rm -f hash - -clean: - rm -f hash - -.DELETE_ON_ERROR: +include ../../pkg/package.mk From 3f8e733d9a82ab8b23313c2d81bbb6da5a5af1a2 Mon Sep 17 00:00:00 2001 From: Ian Campbell Date: Wed, 26 Jul 2017 17:24:08 +0100 Subject: [PATCH 11/12] Skip linuxkit.packages.containerd test for now. It requires reworking to ensure `containerd` is in the path and to provide network access. See https://github.com/linuxkit/linuxkit/pull/2298#issuecomment-318106583 Signed-off-by: Ian Campbell --- test/cases/040_packages/003_containerd/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/cases/040_packages/003_containerd/test.sh b/test/cases/040_packages/003_containerd/test.sh index 3e9729985..f7ecde0b1 100644 --- a/test/cases/040_packages/003_containerd/test.sh +++ b/test/cases/040_packages/003_containerd/test.sh @@ -1,6 +1,6 @@ #!/bin/sh # SUMMARY: Run containerd test -# LABELS: +# LABELS: skip # REPEAT: set -e From 5217b9973b9a79fc04fff2e7163afc7ade56c328 Mon Sep 17 00:00:00 2001 From: Ian Campbell Date: Wed, 26 Jul 2017 17:27:11 +0100 Subject: [PATCH 12/12] alpine: Reminder to bump the containerd test when bumping containerd Signed-off-by: Ian Campbell --- tools/alpine/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/alpine/Dockerfile b/tools/alpine/Dockerfile index 54ee928f8..5c8eb5e6a 100644 --- a/tools/alpine/Dockerfile +++ b/tools/alpine/Dockerfile @@ -58,6 +58,7 @@ COPY --from=mirror /Dockerfile /Dockerfile RUN apk update && apk upgrade -a +# Update `FROM` in `test/pkg/containerd/Dockerfile` when changing this. # v1.0.0-alpha1 plus https://github.com/containerd/containerd/pull/1141 ENV CONTAINERD_REPO=https://github.com/ijc/containerd.git ENV CONTAINERD_COMMIT=d42cb88ba2b08d2ca6c8c017d629b394bf1dd08c