Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add more remote vlan examples (deployments-k8s#4433) #584

Merged
merged 1 commit into from
Aug 30, 2022

Conversation

ljkiraly
Copy link
Contributor

@ljkiraly ljkiraly commented Feb 8, 2022

Added remote vlan examples entry point
Related PR: deployments-k8s/#4465

Signed-off-by: Laszlo Kiraly laszlo.kiraly@est.tech

entry_point_test.go Outdated Show resolved Hide resolved
@denis-tingaikin
Copy link
Member

@ljkiraly

At last build has failed test.

=== RUN   TestRunRvlanSuiteSingle/Rvlanvpp
time=2022-02-09T10:38:18Z level=info msg=kubectl apply -k . TestRunRvlanSuiteSingle/Rvlanvpp=stdin
time=2022-02-09T10:38:20Z level=info msg=configmap/device-selector created
daemonset.apps/forwarder-vpp created TestRunRvlanSuiteSingle/Rvlanvpp=stdout
=== RUN   TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan
time=2022-02-09T10:38:20Z level=info msg=NAMESPACE=($(kubectl create -f https://raw.githubusercontent.com/networkservicemesh/deployments-k8s/1569d9820a77a94705cc27ab5ce4216771b3f3ea/examples/use-cases/namespace.yaml)[0])
NAMESPACE=${NAMESPACE:10} TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:38:20Z level=info msg=cat > first-iperf-s.yaml <<EOF
---
apiVersion: apps/v1
kind: Deployment
metadata:
  name: iperf1-s
  labels:
    app: iperf1-s
spec:
  replicas: 2
  selector:
    matchLabels:
      app: iperf1-s
  template:
    metadata:
      labels:
        app: iperf1-s
      annotations:
        networkservicemesh.io: kernel://finance-bridge/nsm-1
    spec:
      affinity:
        podAntiAffinity:
          requiredDuringSchedulingIgnoredDuringExecution:
          - labelSelector:
              matchExpressions:
              - key: app
                operator: In
                values:
                - iperf1-s
            topologyKey: "kubernetes.io/hostname"
      containers:
      - name: iperf-server
        image: networkstatic/iperf3:latest
        imagePullPolicy: IfNotPresent
        command: ["tail", "-f", "/dev/null"]
EOF TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:38:20Z level=info msg=cat > kustomization.yaml <<EOF
---
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization

namespace: ${NAMESPACE}

resources:
- first-iperf-s.yaml

EOF TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:38:20Z level=info msg=kubectl apply -k . TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:38:20Z level=info msg=deployment.apps/iperf1-s created TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:38:20Z level=info msg=kubectl -n ${NAMESPACE} wait --for=condition=ready --timeout=1m pod -l app=iperf1-s TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:38:33Z level=info msg=pod/iperf1-s-5c446597b8-46bns condition met
pod/iperf1-s-5c446597b8-rlvtw condition met TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:38:33Z level=info msg=NSCS=($(kubectl get pods -l app=iperf1-s -n ${NAMESPACE} --template '{{range .items}}{{.metadata.name}}{{"\n"}}{{end}}')) TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:38:33Z level=info msg=IS_FIRST=$(kubectl exec ${NSCS[0]} -c iperf-server -n ${NAMESPACE} -- ip a s nsm-1 | grep 172.10.0.1)
if [ -n "$IS_FIRST" ]; then
  kubectl exec ${NSCS[0]} -c iperf-server -n ${NAMESPACE} -- iperf3 -sD -B 172.10.0.1 -1
  kubectl exec ${NSCS[1]} -c iperf-server -n ${NAMESPACE} -- iperf3 -i0 t 5 -c 172.10.0.1 -B 172.10.0.2
else
  kubectl exec ${NSCS[1]} -c iperf-server -n ${NAMESPACE} -- iperf3 -sD -B 172.10.0.1 -1
  kubectl exec ${NSCS[0]} -c iperf-server -n ${NAMESPACE} -- iperf3 -i0 t 5 -c 172.10.0.1 -B 172.10.0.2
fi TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:38:44Z level=info msg=Connecting to host 172.10.0.1, port 5201
[  5] local 172.10.0.2 port 36219 connected to 172.10.0.1 port 5201
[ ID] Interval           Transfer     Bitrate         Retr  Cwnd
[  5]   0.00-10.00  sec  1.07 GBytes   921 Mbits/sec  246   1.23 MBytes       
- - - - - - - - - - - - - - - - - - - - - - - - -
[ ID] Interval           Transfer     Bitrate         Retr
[  5]   0.00-10.00  sec  1.07 GBytes   921 Mbits/sec  246             sender
[  5]   0.00-10.01  sec  1.07 GBytes   917 Mbits/sec                  receiver

iperf Done. TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:38:44Z level=info msg=error: Internal error occurred: error executing command in container: failed to exec in container: failed to start exec "3b827ddfba2b084f2414144678121c4780c14bba370e402a409e2e77692b7fbf": OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ip": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stderr
time=2022-02-09T10:38:44Z level=info msg=cat > Dockerfile <<EOF
FROM networkstatic/iperf3

RUN apt-get update \
    && apt-get install -y ethtool tcpdump \
    && rm -rf /var/lib/apt/lists/*

ENTRYPOINT [ "tail", "-f", "/dev/null" ]
EOF
docker build . -t rvm-tester TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:38:58Z level=info msg=Sending build context to Docker daemon  10.75kB

Step 1/3 : FROM networkstatic/iperf3
latest: Pulling from networkstatic/iperf3
0c6b8ff8c37e: Already exists
6a330fb0cab0: Pulling fs layer
6a330fb0cab0: Verifying Checksum
6a330fb0cab0: Download complete
6a330fb0cab0: Pull complete
Digest: sha256:99c40e3d49bfdc3eef0d9d474e72a231c8f67aa346315eadc6ff4898e8c812da
Status: Downloaded newer image for networkstatic/iperf3:latest
 ---> 6396bcc4e317
Step 2/3 : RUN apt-get update     && apt-get install -y ethtool tcpdump     && rm -rf /var/lib/apt/lists/*
 ---> Running in 08b265ae7c99
Get:1 http://deb.debian.org/debian bullseye InRelease [116 kB]
Get:2 http://security.debian.org/debian-security bullseye-security InRelease [44.1 kB]
Get:3 http://deb.debian.org/debian bullseye-updates InRelease [39.4 kB]
Get:4 http://security.debian.org/debian-security bullseye-security/main amd64 Packages [116 kB]
Get:5 http://deb.debian.org/debian bullseye/main amd64 Packages [8183 kB]
Get:6 http://deb.debian.org/debian bullseye-updates/main amd64 Packages [2596 B]
Fetched 8501 kB in 2s (4033 kB/s)
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
The following additional packages will be installed:
  dbus libapparmor1 libdbus-1-3 libexpat1 libmnl0 libpcap0.8
Suggested packages:
  default-dbus-session-bus | dbus-session-bus apparmor
The following NEW packages will be installed:
  dbus ethtool libapparmor1 libdbus-1-3 libexpat1 libmnl0 libpcap0.8 tcpdump
0 upgraded, 8 newly installed, 0 to remove and 0 not upgraded.
Need to get 1473 kB of archives.
After this operation, 4111 kB of additional disk space will be used.
Get:1 http://deb.debian.org/debian bullseye/main amd64 libapparmor1 amd64 2.13.6-10 [99.3 kB]
Get:2 http://deb.debian.org/debian bullseye/main amd64 libdbus-1-3 amd64 1.12.20-2 [219 kB]
Get:3 http://deb.debian.org/debian bullseye/main amd64 libexpat1 amd64 2.2.10-2 [96.9 kB]
Get:4 http://deb.debian.org/debian bullseye/main amd64 dbus amd64 1.12.20-2 [239 kB]
Get:5 http://deb.debian.org/debian bullseye/main amd64 libmnl0 amd64 1.0.4-3 [12.5 kB]
Get:6 http://deb.debian.org/debian bullseye/main amd64 ethtool amd64 1:5.9-1 [182 kB]
Get:7 http://deb.debian.org/debian bullseye/main amd64 libpcap0.8 amd64 1.10.0-2 [159 kB]
Get:8 http://deb.debian.org/debian bullseye/main amd64 tcpdump amd64 4.99.0-2 [466 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 1473 kB in 0s (21.3 MB/s)
Selecting previously unselected package libapparmor1:amd64.
(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 6674 files and directories currently installed.)
Preparing to unpack .../0-libapparmor1_2.13.6-10_amd64.deb ...
Unpacking libapparmor1:amd64 (2.13.6-10) ...
Selecting previously unselected package libdbus-1-3:amd64.
Preparing to unpack .../1-libdbus-1-3_1.12.20-2_amd64.deb ...
Unpacking libdbus-1-3:amd64 (1.12.20-2) ...
Selecting previously unselected package libexpat1:amd64.
Preparing to unpack .../2-libexpat1_2.2.10-2_amd64.deb ...
Unpacking libexpat1:amd64 (2.2.10-2) ...
Selecting previously unselected package dbus.
Preparing to unpack .../3-dbus_1.12.20-2_amd64.deb ...
Unpacking dbus (1.12.20-2) ...
Selecting previously unselected package libmnl0:amd64.
Preparing to unpack .../4-libmnl0_1.0.4-3_amd64.deb ...
Unpacking libmnl0:amd64 (1.0.4-3) ...
Selecting previously unselected package ethtool.
Preparing to unpack .../5-ethtool_1%3a5.9-1_amd64.deb ...
Unpacking ethtool (1:5.9-1) ...
Selecting previously unselected package libpcap0.8:amd64.
Preparing to unpack .../6-libpcap0.8_1.10.0-2_amd64.deb ...
Unpacking libpcap0.8:amd64 (1.10.0-2) ...
Selecting previously unselected package tcpdump.
Preparing to unpack .../7-tcpdump_4.99.0-2_amd64.deb ...
Unpacking tcpdump (4.99.0-2) ...
Setting up libexpat1:amd64 (2.2.10-2) ...
Setting up libapparmor1:amd64 (2.13.6-10) ...
Setting up libdbus-1-3:amd64 (1.12.20-2) ...
Setting up dbus (1.12.20-2) ...
invoke-rc.d: could not determine current runlevel
invoke-rc.d: policy-rc.d denied execution of start.
Setting up libmnl0:amd64 (1.0.4-3) ...
Setting up ethtool (1:5.9-1) ...
Setting up libpcap0.8:amd64 (1.10.0-2) ...
Setting up tcpdump (4.99.0-2) ...
Processing triggers for libc-bin (2.31-13+deb11u2) ...
Removing intermediate container 08b265ae7c99
 ---> b13722f7dd2c
Step 3/3 : ENTRYPOINT [ "tail", "-f", "/dev/null" ]
 ---> Running in 51300dc42d40
Removing intermediate container 51300dc42d40
 ---> 8bbb1bf46020
Successfully built 8bbb1bf46020
Successfully tagged rvm-tester:latest TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:38:58Z level=info msg=docker run --cap-add=NET_ADMIN --rm -d --network bridge-2 --name rvm-tester rvm-tester tail -f /dev/null
docker exec rvm-tester ip link set eth0 down
docker exec rvm-tester ip link add link eth0 name eth0.100 type vlan id 100
docker exec rvm-tester ip link set eth0 up
docker exec rvm-tester ip addr add 172.10.0.254/24 dev eth0.100
docker exec rvm-tester ethtool -K eth0 tx off TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:38:59Z level=info msg=6fc91d4c03a68d4f2545ad8a8e7cf7c470e5541cabf5c9186c363485f6d81733
OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ip": executable file not found in $PATH: unknown
OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ip": executable file not found in $PATH: unknown
OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ip": executable file not found in $PATH: unknown
OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ip": executable file not found in $PATH: unknown
Actual changes:
tx-checksum-ip-generic: off
tx-tcp-segmentation: off [not requested]
tx-tcp-ecn-segmentation: off [not requested]
tx-tcp-mangleid-segmentation: off [not requested]
tx-tcp6-segmentation: off [not requested]
tx-checksum-sctp: off TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:38:59Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:38:59Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:38:59Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:38:59Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:38:59Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:38:59Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:38:59Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:38:59Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:38:59Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:38:59Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:00Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:00Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:00Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:00Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:00Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:00Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:00Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:00Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:00Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:00Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:00Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:01Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:01Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:01Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:01Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:01Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:01Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:01Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:01Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:01Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:01Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:01Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:01Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:01Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:02Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:02Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:02Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:02Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:02Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:02Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:02Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:02Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:02Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:02Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:02Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:02Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:03Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:03Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:03Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:03Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:03Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:03Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:03Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:03Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:03Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:03Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:03Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:03Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:04Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:04Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:04Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:04Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:04Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:04Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:04Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:04Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:04Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:04Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:04Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:04Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:04Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:04Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:04Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:05Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:05Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:05Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:05Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:05Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:05Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:05Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:05Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:05Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:05Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:05Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:06Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:06Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:06Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:06Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:06Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:06Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:06Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:06Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:06Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:06Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:06Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:06Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:06Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:07Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:07Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:07Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:07Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:07Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:07Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:07Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:07Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:07Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:07Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:07Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:07Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:08Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:08Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:08Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:08Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:08Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:08Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:08Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:08Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:08Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:08Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:08Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:08Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:09Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:09Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:09Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:09Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:09Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:09Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:09Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:09Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:09Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:09Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:09Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:09Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:09Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:09Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:10Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:10Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:10Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:10Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:10Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:10Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:10Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:10Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:10Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:10Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:10Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:10Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:10Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:11Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:11Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:11Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:11Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:11Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:11Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:11Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:11Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:11Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:11Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:11Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:11Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:12Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:12Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:12Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:12Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:12Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:12Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:12Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:12Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:12Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:12Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:12Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:12Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:12Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:12Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:13Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:13Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:13Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:13Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:13Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:13Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:13Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:13Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:13Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:13Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:13Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:13Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:14Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:14Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:14Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:14Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:14Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:14Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:14Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:14Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:14Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:14Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:14Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:14Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:14Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:15Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:15Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:15Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:15Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:15Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:15Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:15Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:15Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:15Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:15Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:15Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:15Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:15Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:15Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:16Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:16Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:16Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:16Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:16Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:16Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:16Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:16Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:16Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:16Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:16Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:16Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:16Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:17Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:17Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:17Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:17Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:17Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:17Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:17Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:17Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:17Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:17Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:17Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:17Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:18Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:18Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:18Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:18Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:18Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:18Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:18Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:18Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:18Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:18Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:18Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:18Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:18Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:18Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:19Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:19Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:19Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:19Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:19Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:19Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:19Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:19Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:19Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:19Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:19Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:19Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:19Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:20Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:20Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:20Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:20Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:20Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:20Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:20Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:20Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:20Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:20Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:20Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:20Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:21Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:21Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:21Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:21Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:21Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:21Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:21Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:21Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:21Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:21Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:21Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:21Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:22Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:22Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:22Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:22Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:22Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:22Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:22Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:22Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:22Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:22Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:22Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:22Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:22Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:22Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:23Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:23Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:23Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:23Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:23Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:23Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:23Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:23Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:23Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:23Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:23Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:23Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:24Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:24Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:24Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:24Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:24Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:24Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:24Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:24Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:24Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:24Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:24Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:24Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:24Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:25Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:25Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:25Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:25Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:25Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:25Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:25Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:25Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:25Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:25Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:25Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:25Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:25Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:25Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:26Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:26Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:26Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:26Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:26Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:26Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:26Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:26Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:26Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:26Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:26Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:26Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:26Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:27Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:27Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:27Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:27Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:27Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:27Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:27Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:27Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:27Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:27Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:27Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:27Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:28Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:28Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:28Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:28Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:28Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:28Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:28Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:28Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:28Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:28Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:28Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:28Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:28Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:28Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:29Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:29Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:29Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:29Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:29Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:29Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:29Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:29Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:29Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:29Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:29Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:29Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:30Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:30Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:30Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:30Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:30Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:30Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:30Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:30Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:30Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:30Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:30Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:30Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:30Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:31Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:31Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:31Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:31Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:31Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:31Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:31Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:31Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:31Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:31Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:31Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:31Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:32Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:32Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:32Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:32Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:32Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:32Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:32Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:32Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:32Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:32Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:32Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:32Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:32Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:32Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:33Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:33Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:33Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:33Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:33Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:33Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:33Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:33Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:33Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:33Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:33Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:33Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:33Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:34Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:34Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:34Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:34Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:34Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:34Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:34Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:34Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:34Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:34Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:34Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:34Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:35Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:35Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:35Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:35Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:35Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:35Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:35Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:35Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:35Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:35Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:35Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:35Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:36Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:36Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:36Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:36Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:36Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:36Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:36Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:36Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:36Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:36Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:36Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:36Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:36Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:36Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:37Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:37Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:37Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:37Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:37Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:37Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:37Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:37Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:37Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:37Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:37Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:37Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:38Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:38Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:38Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:38Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:38Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:38Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:38Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:38Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:38Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:38Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:38Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:38Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:38Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:39Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:39Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:39Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:39Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:39Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:39Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:39Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:39Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:39Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:39Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:39Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:39Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:39Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:39Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:40Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:40Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:40Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:40Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:40Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:40Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:40Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:40Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:40Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:40Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:40Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:40Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:40Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:41Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:41Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:41Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:41Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:41Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:41Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:41Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:41Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:41Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:41Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:41Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:41Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:42Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:42Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:42Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:42Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:42Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:42Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:42Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:42Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:42Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:42Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:42Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:42Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:43Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:43Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:43Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:43Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:43Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:43Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:43Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:43Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:43Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:43Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:43Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:43Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:43Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:43Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:44Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:44Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:44Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:44Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:44Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:44Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:44Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:44Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:44Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:44Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:44Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:44Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:44Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:45Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:45Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:45Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:45Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:45Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:45Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:45Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:45Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:45Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:45Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:45Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:45Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:46Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:46Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:46Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:46Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:46Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:46Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:46Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:46Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:46Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:46Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:46Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:46Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:46Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:46Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:47Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:47Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:47Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:47Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:47Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:47Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:47Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:47Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:47Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:47Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:47Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:47Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:48Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:48Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:48Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:48Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:48Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:48Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:48Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:48Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:48Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:48Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:48Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:48Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:48Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:49Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:49Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:49Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:49Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:49Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:49Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:49Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:49Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:49Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:49Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:49Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:49Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:49Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:49Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:50Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:50Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:50Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:50Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:50Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:50Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:50Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:50Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:50Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:50Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:50Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:50Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:50Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:51Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:51Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:51Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:51Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:51Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:51Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:51Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:51Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:51Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:51Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:51Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:51Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:52Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:52Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:52Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:52Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:52Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:52Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:52Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:52Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:52Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:52Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:52Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:52Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:52Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:52Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:53Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:53Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:53Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:53Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:53Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:53Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:53Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:53Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:53Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:53Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:53Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:53Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:53Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:54Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:54Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:54Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:54Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:54Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:54Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:54Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:54Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:54Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:54Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:54Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:54Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:55Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:55Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:55Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:55Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:55Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:55Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:55Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:55Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:55Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:55Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:55Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:55Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:55Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:55Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:56Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:56Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:56Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:56Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:56Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:56Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:56Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:56Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:56Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:56Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:56Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:56Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:56Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:57Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:57Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:57Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:57Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:57Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:57Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:57Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:57Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:57Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:57Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:57Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:57Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:58Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:58Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:58Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:58Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:58Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:58Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:58Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:58Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:58Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:58Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:58Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:58Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:58Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:58Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:58Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:59Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:59Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:59Z level=info msg=docker exec rvm-tester ping -c 1 172.10.0.1 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:39:59Z level=info msg=OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ping": executable file not found in $PATH: unknown TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:39:59Z level=info msg=126 TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=exitCode
time=2022-02-09T10:39:59Z level=error msg=command didn't succeed until timeout cmd=docker exec rvm-tester ping -c 1 172.10.0.1
    suite.go:130: 
        	Error Trace:	suite.go:130
        	            				suite.gen.go:42
        	Error:      	Not equal: 
        	            	expected: 0
        	            	actual  : 126
        	Test:       	TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan
time=2022-02-09T10:39:59Z level=info msg=docker stop rvm-tester
docker image rm rvm-tester:latest
true TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:40:09Z level=info msg=rvm-tester
Untagged: rvm-tester:latest
Deleted: sha256:8bbb1bf4602036289e737b04e9ac981fe7d56c399[7454](https://github.com/networkservicemesh/integration-k8s-kind/runs/5122959109?check_suite_focus=true#step:8:7454)fb0a1a9db0e4af01f3c
Deleted: sha256:b13722f7dd2c6e7200a067001b493b7b576b5baaf2a37e62470e3baa19e502be
Deleted: sha256:5f8b3cb4678e519c5e97def1c60764c827281cae60f6249bf54e452c9afd48ba TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time=2022-02-09T10:40:09Z level=info msg=kubectl delete ns ${NAMESPACE} TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdin
time=2022-02-09T10:40:45Z level=info msg=namespace "ns-hmsnc" deleted TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan=stdout
time="2022-02-09T10:40:45Z" level=error msg="forwarder-vpp-zfqlf: An error while retrieving logs: the server rejected our request for an unknown reason (get pods forwarder-vpp-zfqlf)"
time="2022-02-09T10:40:46Z" level=error msg="nse-remote-vlan-58948f987f-9fhnm: An error while retrieving logs: the server rejected our request for an unknown reason (get pods nse-remote-vlan-58948f987f-9fhnm)"
time="2022-02-09T10:40:46Z" level=error msg="admission-webhook-k8s-77[7455](https://github.com/networkservicemesh/integration-k8s-kind/runs/5122959109?check_suite_focus=true#step:8:7455)dbd7-86rgz: An error while retrieving logs: the server rejected our request for an unknown reason (get pods admission-webhook-k8s-7[7745](https://github.com/networkservicemesh/integration-k8s-kind/runs/5122959109?check_suite_focus=true#step:8:7745)5dbd7-86rgz)"
time="2022-02-09T10:40:46Z" level=error msg="registry-k8s-6c8cd859f4-742c8: An error while retrieving logs: the server rejected our request for an unknown reason (get pods registry-k8s-6c8cd859f4-742c8)"
time="2022-02-09T10:40:46Z" level=error msg="forwarder-vpp-55wgl: An error while retrieving logs: the server rejected our request for an unknown reason (get pods forwarder-vpp-55wgl)"
time="2022-02-09T10:40:46Z" level=error msg="nsmgr-jm7bx: An error while retrieving logs: the server rejected our request for an unknown reason (get pods nsmgr-jm7bx)"
time="2022-02-09T10:40:46Z" level=error msg="nsmgr-v4vn8: An error while retrieving logs: the server rejected our request for an unknown reason (get pods nsmgr-v4vn8)"
=== RUN   TestRunRvlanSuiteSingle/Test
time="2022-02-09T10:40:46Z" level=error msg="nse-remote-vlan-58948f987f-9fhnm: An error while retrieving logs: the server rejected our request for an unknown reason (get pods nse-remote-vlan-58948f987f-9fhnm)"
time="2022-02-09T10:40:46Z" level=error msg="registry-k8s-6c8cd859f4-742c8: An error while retrieving logs: the server rejected our request for an unknown reason (get pods registry-k8s-6c8cd859f4-742c8)"
time="2022-02-09T10:40:46Z" level=error msg="forwarder-vpp-zfqlf: An error while retrieving logs: the server rejected our request for an unknown reason (get pods forwarder-vpp-zfqlf)"
time="2022-02-09T10:40:46Z" level=error msg="forwarder-vpp-55wgl: An error while retrieving logs: the server rejected our request for an unknown reason (get pods forwarder-vpp-55wgl)"
time="2022-02-09T10:40:46Z" level=error msg="admission-webhook-k8s-[7774](https://github.com/networkservicemesh/integration-k8s-kind/runs/5122959109?check_suite_focus=true#step:8:7774)55dbd7-86rgz: An error while retrieving logs: the server rejected our request for an unknown reason (get pods admission-webhook-k8s-777455dbd7-86rgz)"
time="2022-02-09T10:40:46Z" level=error msg="nsmgr-jm7bx: An error while retrieving logs: the server rejected our request for an unknown reason (get pods nsmgr-jm7bx)"
time="2022-02-09T10:40:46Z" level=error msg="nsmgr-v4vn8: An error while retrieving logs: the server rejected our request for an unknown reason (get pods nsmgr-v4vn8)"
time="2022-02-09T10:40:46Z" level=error msg="admission-webhook-k8s-777455dbd7-86rgz: An error while retrieving logs: the server rejected our request for an unknown reason (get pods admission-webhook-k8s-777455dbd7-86rgz)"
time="2022-02-09T10:40:46Z" level=error msg="forwarder-vpp-zfqlf: An error while retrieving logs: the server rejected our request for an unknown reason (get pods forwarder-vpp-zfqlf)"
time="2022-02-09T10:40:46Z" level=error msg="nse-remote-vlan-58948f987f-9fhnm: An error while retrieving logs: the server rejected our request for an unknown reason (get pods nse-remote-vlan-58948f987f-9fhnm)"
time="2022-02-09T10:40:46Z" level=error msg="nsmgr-jm7bx: An error while retrieving logs: the server rejected our request for an unknown reason (get pods nsmgr-jm7bx)"
time="2022-02-09T10:40:46Z" level=error msg="registry-k8s-6c8cd859f4-742c8: An error while retrieving logs: the server rejected our request for an unknown reason (get pods registry-k8s-6c8cd859f4-742c8)"
time="2022-02-09T10:40:46Z" level=error msg="forwarder-vpp-55wgl: An error while retrieving logs: the server rejected our request for an unknown reason (get pods forwarder-vpp-55wgl)"
time="2022-02-09T10:40:46Z" level=error msg="nsmgr-v4vn8: An error while retrieving logs: the server rejected our request for an unknown reason (get pods nsmgr-v4vn8)"
time=2022-02-09T10:40:46Z level=info msg=WH=$(kubectl get pods -l app=admission-webhook-k8s -n nsm-system --template '{{range .items}}{{.metadata.name}}{{"\n"}}{{end}}')
    kubectl delete mutatingwebhookconfiguration ${WH}
    kubectl delete ns nsm-system TestRunRvlanSuiteSingle=stdin
time=2022-02-09T10:40:58Z level=info msg=mutatingwebhookconfiguration.admissionregistration.k8s.io "admission-webhook-k8s-777455dbd7-86rgz" deleted
namespace "nsm-system" deleted TestRunRvlanSuiteSingle=stdout
time=2022-02-09T10:40:58Z level=info msg=docker network disconnect bridge-2 kind-worker
    docker network disconnect bridge-2 kind-worker2
    docker network rm bridge-2
    docker exec kind-worker ip link del eth1
    docker exec kind-worker2 ip link del eth1
    true TestRunRvlanSuiteSingle=stdin
time=2022-02-09T10:40:59Z level=info msg=bridge-2 TestRunRvlanSuiteSingle=stdout
time=2022-02-09T10:40:59Z level=info msg=Cannot find device "eth1"
Cannot find device "eth1" TestRunRvlanSuiteSingle=stderr
time=2022-02-09T10:40:59Z level=info msg=kubectl delete crd spiffeids.spiffeid.spiffe.io
kubectl delete ns spire TestRunRvlanSuiteSingle=stdin
time=2022-02-09T10:41:15Z level=info msg=customresourcedefinition.apiextensions.k8s.io "spiffeids.spiffeid.spiffe.io" deleted
namespace "spire" deleted TestRunRvlanSuiteSingle=stdout
--- FAIL: TestRunRvlanSuiteSingle (220.99s)
    --- FAIL: TestRunRvlanSuiteSingle/Rvlanvpp (147.15s)
        --- FAIL: TestRunRvlanSuiteSingle/Rvlanvpp/TestKernel2RVlan (145.10s)

@denis-tingaikin
Copy link
Member

@ljkiraly Could you have a look?☝️

@ljkiraly
Copy link
Contributor Author

Hello @denis-tingaikin,

The base of networkstatic/iperf3 has changed. Now the updated PR for deployment_k8s/#4465 is installing the required package into the test container.

@ljkiraly
Copy link
Contributor Author

Depending on deployments-k8s#4465
How networkstatic/iperf3 can be added to the list of images which are prefetched?

@denis-tingaikin
Copy link
Member

How networkstatic/iperf3 can be added to the list of images which are prefetched?

See at https://github.com/networkservicemesh/deployments-k8s/blob/main/external-images.yaml

@ljkiraly
Copy link
Contributor Author

ljkiraly commented Feb 23, 2022

Hello @denis-tingaikin,
I updated the commit on the related PR for deployment_k8s/#4465. Now the extra image is added by 'prefetch' step.

I did not received any comment on the above mentioned PR yet. Should I break it down and have separate PR for fixes?

Laszlo

@denis-tingaikin
Copy link
Member

@ljkiraly PR is merged! Shall we rebase?

@ljkiraly
Copy link
Contributor Author

ljkiraly commented Mar 9, 2022

@denis-tingaikin Yes, of course. Afternoon I rebased to check the integration tests, but for some reason the forwarder-ovs does not started. In my machine run successfully. Now I increased the test timeout to 1 hour and 40 minutes. I will investigate further if the test fails again.

@ljkiraly ljkiraly marked this pull request as draft March 11, 2022 13:58
@ljkiraly
Copy link
Contributor Author

Still struggle to get the test stable. Now got some errors waiting for forwarders to start:
time=2022-03-09T20:48:17Z level=info msg=timed out waiting for the condition on pods/forwarder-ovs-5hr5q
timed out waiting for the condition on pods/forwarder-ovs-j95fq TestRunRvlanSuiteSingle/Rvlanovs=stderr
...
time=2022-03-09T20:52:20Z level=info msg=timed out waiting for the condition on pods/forwarder-vpp-kgz7l 6325 timed out waiting for the condition on pods/forwarder-vpp-nv4m4 TestRunRvlanSuiteSingle/Rvlanvpp=stderr
...

Strange that these can not be reproduced on my environment.

@ljkiraly ljkiraly marked this pull request as ready for review March 16, 2022 15:45
@ljkiraly ljkiraly marked this pull request as draft March 17, 2022 13:44
@ljkiraly ljkiraly self-assigned this Mar 17, 2022
@ljkiraly
Copy link
Contributor Author

Hello @denis-tingaikin,
The timeouts seen during test execution most probably are caused by missing/wrong references. The fix deployments-k8s#5063 might solve this problem.

@ljkiraly ljkiraly force-pushed the 4433 branch 2 times, most recently from 35e36d9 to fc15bbf Compare March 24, 2022 15:31
@denis-tingaikin denis-tingaikin marked this pull request as ready for review March 25, 2022 01:56
@denis-tingaikin denis-tingaikin marked this pull request as draft March 25, 2022 01:58
@ljkiraly ljkiraly force-pushed the 4433 branch 3 times, most recently from 1d21842 to d699126 Compare March 29, 2022 14:27
@denis-tingaikin
Copy link
Member

This looks promising. I guess you could try to rebase and PR should pass CI.

@ljkiraly ljkiraly force-pushed the 4433 branch 2 times, most recently from bd2972e to 6df2eef Compare April 8, 2022 07:45
@ljkiraly ljkiraly marked this pull request as ready for review April 8, 2022 13:21
@denis-tingaikin
Copy link
Member

@edwarnicke This PR adds vlan remote tests running on ci. I think it can be merged, other ovs/vlan tests can be considered in separate PRs. Thoughts?

@edwarnicke
Copy link
Member

@denis-tingaikin If you and @ljkiraly think its good to go, I'm good with it too! :)

@ljkiraly ljkiraly marked this pull request as draft April 14, 2022 11:52
@ljkiraly ljkiraly force-pushed the 4433 branch 4 times, most recently from 52b5512 to 86713f4 Compare June 22, 2022 13:48
@ljkiraly ljkiraly marked this pull request as ready for review June 23, 2022 14:54
@ljkiraly ljkiraly force-pushed the 4433 branch 3 times, most recently from ec70776 to 1134358 Compare July 11, 2022 12:54
Related PR: deployments-k8s/#4465
Added entry point for remote vlan examples
Adjusted test timeout

Signed-off-by: Laszlo Kiraly <laszlo.kiraly@est.tech>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants