summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorIan Lewis <ianlewis@google.com>2020-03-25 08:28:24 +0900
committerGitHub <noreply@github.com>2020-03-25 08:28:24 +0900
commit8fbf811f79d611dd55355734736265dfec20b73f (patch)
tree1011bd93ba189f1bd64981940fcfc09f053b1a75
parentfa5f99187bb28a0f363ddce82cefe92a002edc0f (diff)
Updated e2e tests on travis (#53)
* Updated e2e tests on travis - Updated tests to run using Go 1.14 - Added test for containerd 1.3 - Updated release of runsc to test * Fix release downloading in e2e tests * Fix test targets * Update to using Ubuntu bionic in travis tests
-rw-r--r--.travis.yml18
-rwxr-xr-xtest/e2e/containerd-install.sh10
-rwxr-xr-xtest/e2e/runsc-install.sh2
-rwxr-xr-xtest/e2e/untrusted-workload/install.sh5
4 files changed, 22 insertions, 13 deletions
diff --git a/.travis.yml b/.travis.yml
index e9be6c7aa..d9ef5e33f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,14 +1,15 @@
-dist: trusty
+dist: bionic
sudo: required
language: go
-go: "1.12.x"
+go: "1.14.x"
env:
- - GO111MODULE=on CONTAINERD_VERSION=1.1.5 RUNSC_VERSION=2019-08-06 TEST=untrusted-workload
- - GO111MODULE=on CONTAINERD_VERSION=1.2.1 RUNSC_VERSION=2019-08-06 TEST=untrusted-workload
- - GO111MODULE=on CONTAINERD_VERSION=1.2.1 RUNSC_VERSION=2019-08-06 TEST=runtime-handler
- - GO111MODULE=on CONTAINERD_VERSION=1.2.1 RUNSC_VERSION=2019-08-06 TEST=runtime-handler-shim-v2
-
+ - CONTAINERD_VERSION=1.1.8 RUNSC_VERSION=release/20200219.0 TEST=untrusted-workload
+ - CONTAINERD_VERSION=1.2.13 RUNSC_VERSION=release/20200219.0 TEST=untrusted-workload
+ - CONTAINERD_VERSION=1.2.13 RUNSC_VERSION=release/20200219.0 TEST=runtime-handler
+ - CONTAINERD_VERSION=1.2.13 RUNSC_VERSION=release/20200219.0 TEST=runtime-handler-shim-v2
+ - CONTAINERD_VERSION=1.3.3 RUNSC_VERSION=release/20200219.0 TEST=runtime-handler
+ - CONTAINERD_VERSION=1.3.3 RUNSC_VERSION=release/20200219.0 TEST=runtime-handler-shim-v2
go_import_path: github.com/google/gvisor-containerd-shim
@@ -18,11 +19,10 @@ addons:
- socat
- conntrack
- ipset
+ - libseccomp-dev
before_install:
- uname -r
- - sudo apt-get -q update
- - sudo apt-get install -y libseccomp-dev/trusty-backports
script:
- make test
diff --git a/test/e2e/containerd-install.sh b/test/e2e/containerd-install.sh
index 538b0ca2b..400819245 100755
--- a/test/e2e/containerd-install.sh
+++ b/test/e2e/containerd-install.sh
@@ -10,6 +10,13 @@ sudo mkdir -p /etc/containerd /etc/cni/net.d /opt/cni/bin
sudo tar -xvf cni-plugins-amd64-v0.7.0.tgz -C /opt/cni/bin/
sudo tar -xvf containerd-${CONTAINERD_VERSION}.linux-amd64.tar.gz -C /
+cat <<EOF | sudo tee /etc/containerd/config.toml
+disabled_plugins = ["restart"]
+# Set to avoid port overlap on older versions of containerd where default is 10010.
+[plugins.cri]
+ stream_server_port = "10011"
+EOF
+
cat <<EOF | sudo tee /etc/cni/net.d/10-bridge.conf
{
"cniVersion": "0.3.1",
@@ -34,5 +41,4 @@ cat <<EOF | sudo tee /etc/cni/net.d/99-loopback.conf
}
EOF
-sudo PATH=$PATH containerd -log-level debug &> /tmp/containerd-cri.log &
-
+sudo PATH=$PATH containerd -log-level debug &>/tmp/containerd-cri.log &
diff --git a/test/e2e/runsc-install.sh b/test/e2e/runsc-install.sh
index 64823bd3b..420fe01e9 100755
--- a/test/e2e/runsc-install.sh
+++ b/test/e2e/runsc-install.sh
@@ -3,6 +3,6 @@
# Sample script to install runsc
wget -q --https-only \
- https://storage.googleapis.com/gvisor/releases/nightly/${RUNSC_VERSION}/runsc
+ https://storage.googleapis.com/gvisor/releases/${RUNSC_VERSION}/runsc
chmod +x runsc
sudo mv runsc /usr/local/bin/
diff --git a/test/e2e/untrusted-workload/install.sh b/test/e2e/untrusted-workload/install.sh
index cb11ab8d3..c4538aed1 100755
--- a/test/e2e/untrusted-workload/install.sh
+++ b/test/e2e/untrusted-workload/install.sh
@@ -11,6 +11,9 @@ disabled_plugins = ["restart"]
[plugins.linux]
shim = "/usr/local/bin/gvisor-containerd-shim"
shim_debug = true
+# Set to avoid port overlap on older versions of containerd where default is 10010.
+[plugins.cri]
+ stream_server_port = "10011"
[plugins.cri.containerd.untrusted_workload_runtime]
runtime_type = "io.containerd.runtime.v1.linux"
runtime_engine = "/usr/local/bin/runsc"
@@ -20,5 +23,5 @@ EOF
{ # Step 2: Restart containerd
sudo pkill containerd
-sudo containerd -log-level debug &> /tmp/containerd-cri.log &
+sudo containerd -log-level debug &>/tmp/containerd-cri.log &
}