fix: e2e tests with conntrack required by k8s/minikube

This commit is contained in:
Tomasz Prus 2020-03-28 02:10:38 +01:00
parent 686acd26e8
commit be66f96cdf

View File

@ -35,6 +35,10 @@ setenforce 0
HOME=/home/travis
sudo mount --make-rshared /
# Install conntrack (required by minikube/K8s 1.18+)
sudo apt-get update
sudo apt-get install -y conntrack
# Install docker if needed
path_to_executable=$(which docker)
if [ -x "$path_to_executable" ] ; then