Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ num_zookeepers = 1
num_brokers = 3
num_workers = 0 # Generic workers that get the code, but don't start any services
ram_megabytes = 1280
base_box = "ubuntu/trusty64"
base_box = "ubuntu/bionic64"

# EC2
ec2_access_key = ENV['AWS_ACCESS_KEY']
Expand Down
4 changes: 2 additions & 2 deletions vagrant/base.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ JDK_FULL="${JDK_FULL:-17-linux-x64}"

if [ -z `which javac` ]; then
apt-get -y update
apt-get install -y software-properties-common python-software-properties binutils java-common
apt-get install -y software-properties-common binutils java-common

echo "===> Installing JDK..."

Expand Down Expand Up @@ -94,7 +94,7 @@ get_kafka() {
}

# Install Kibosh
apt-get update -y && apt-get install -y git cmake pkg-config libfuse-dev
apt-get update -y && apt-get install -y git cmake pkg-config libfuse-dev ntpdate
pushd /opt
rm -rf /opt/kibosh
git clone -q https://github.com/confluentinc/kibosh.git
Expand Down
Loading