Skip to content

Commit

Permalink
fix: dur
Browse files Browse the repository at this point in the history
  • Loading branch information
AidanAbd committed Jul 18, 2024
1 parent 6b644cb commit 3c83f72
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sysbox-eks.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ source "amazon-ebs" "ubuntu-eks" {
}

launch_block_device_mappings {
device_name = "/dev/xvda"
device_name = "/dev/sda1"
volume_size = 30
volume_type = "gp3"
delete_on_termination = true
Expand Down Expand Up @@ -399,7 +399,7 @@ build {
inline_shebang = "/usr/bin/env bash"
inline = [
"echo '>>> Installing NVIDIA Drivers 530'",
"wget https://developer.download.nvidia.com/compute/cuda/12.1.0/local_installers/cuda_12.1.0_530.30.02_linux.run",
"wget --quiet https://developer.download.nvidia.com/compute/cuda/12.1.0/local_installers/cuda_12.1.0_530.30.02_linux.run",
"sudo sh cuda_12.1.0_530.30.02_linux.run --extract=/home/ubuntu/530.30.02",
"rm cuda_12.1.0_530.30.02_linux.run",
"cd /home/ubuntu/530.30.02",
Expand All @@ -417,7 +417,7 @@ build {

"echo '>>> Configuring NVIDIA Drivers 530'",

"wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2004/x86_64/cuda-keyring_1.0-1_all.deb",
"wget --quiet https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2004/x86_64/cuda-keyring_1.0-1_all.deb",
"sudo dpkg -i cuda-keyring_1.0-1_all.deb",
"rm cuda-keyring_1.0-1_all.deb",

Expand Down

0 comments on commit 3c83f72

Please sign in to comment.