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

Make Minio Server IP a Parameter #74

Draft
wants to merge 11 commits into
base: main
Choose a base branch
from
Prev Previous commit
fixed an issue with KVM checks
Signed-off-by: Dmitrii Ustiugov <dmitrii.ustiugov@epfl.ch>
  • Loading branch information
ustiugov committed Dec 14, 2020
commit 06428f6eefde8856cdceae9959d4ea642ba44db6
3 changes: 2 additions & 1 deletion ae_scripts/run_all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ fi

host_ip=`curl ifconfig.me`

#wlds=(helloworld chameleon pyaes image_rotate_s3 json_serdes_s3 lr_serving cnn_serving rnn_serving lr_training_s3 video_processing_s3)
# Make sure KVM is available on the machine
sudo setfacl -m u:${USER}:rw /dev/kvm

# Reading the file with functions
i=0
Expand Down
10 changes: 5 additions & 5 deletions ae_scripts/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,17 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
ROOT="$( cd $DIR && cd .. && pwd)"
SCRIPTS=$ROOT/scripts

source $SCRIPTS/install_go.sh
$SCRIPTS/setup_system.sh

sudo apt-get -y install gcc g++ acl gcc g++ make acl net-tools

# Set up KVM
sudo setfacl -m u:${USER}:rw /dev/kvm

# Check if KVM is available
[ -r /dev/kvm ] && [ -w /dev/kvm ] && echo "KVM is available" || echo "KVM is unavailable"

source $SCRIPTS/install_go.sh
$SCRIPTS/setup_system.sh

sudo apt-get -y install gcc g++ acl gcc g++ make acl net-tools

$SCRIPTS/setup_containerd.sh

$SCRIPTS/create_devmapper.sh
Expand Down