Skip to content

Commit

Permalink
test/packet: Update provision installation script
Browse files Browse the repository at this point in the history
This commit contains various updates to the script:

  - Drop VIRTUALBOX_VERSION as it is no longer needed because 6.0 is now
    the default version on the recent Ubuntu releases (after bionic)
  - Update the VAGRANT_VERSION to a more modern version
  - Install NFS client and server for better compatibility with our
    e2e suite

Signed-off-by: Chris Tarazi <chris@isovalent.com>
  • Loading branch information
christarazi authored and aanm committed Jun 4, 2021
1 parent ce76a2f commit 5bb9211
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions test/packet/scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,8 @@ set -e
export DEBIAN_FRONTEND=noninteractive

GOLANG_VERSION="1.16.4"
VAGRANT_VERSION="2.2.4"
VAGRANT_VERSION="2.2.16"
PACKER_VERSION="1.3.5"
VIRTUALBOX_VERSION="6.0"

#repositories

Expand All @@ -26,11 +25,11 @@ sudo add-apt-repository \
sudo --preserve-env=DEBIAN_FRONTEND apt-get update
sudo --preserve-env=DEBIAN_FRONTEND apt-get install -y \
curl jq apt-transport-https htop bmon zip \
nfs-common nfs-kernel-server \
linux-tools-common linux-tools-generic \
ca-certificates software-properties-common \
git openjdk-8-jdk gcc make perl unzip awscli \
linux-headers-`uname -r` \
virtualbox-${VIRTUALBOX_VERSION} docker-ce
linux-headers-`uname -r` virtualbox docker-ce

cd /tmp/
wget https://releases.hashicorp.com/vagrant/${VAGRANT_VERSION}/vagrant_${VAGRANT_VERSION}_x86_64.deb
Expand Down

0 comments on commit 5bb9211

Please sign in to comment.