Skip to content

Commit f3259d7

Browse files
authored
vagrantfile: increase dev box resources (#3204)
1 parent bf0a4da commit f3259d7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Vagrantfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -148,8 +148,8 @@ Vagrant.configure("2") do |config|
148148
# Display the VirtualBox GUI when booting the machine
149149
vb.gui = false
150150
vb.customize ["modifyvm", :id, "--vram", "128"]
151-
# Customize the amount of memory on the VM:
152-
vb.memory = "4096"
151+
vb.memory = 6144
152+
vb.cpus = 6
153153
end
154154

155155
nodeconfig.vm.provision "shell", inline: <<-SHELL
@@ -164,7 +164,7 @@ Vagrant.configure("2") do |config|
164164
wget
165165
curl -sL -o /tmp/go#{GO_VERSION}.linux-amd64.tar.gz https://go.dev/dl/go#{GO_VERSION}.linux-amd64.tar.gz
166166
tar -C /usr/local -xzf /tmp/go#{GO_VERSION}.linux-amd64.tar.gz
167-
echo "alias ll='ls -la'" > /etc/profile.d/ll.sh
167+
echo "alias ll='ls -lah'" > /etc/profile.d/ll.sh
168168
echo 'export PATH=$PATH:/usr/local/go/bin' > /etc/profile.d/go.sh
169169
echo 'export PATH=$PATH:$(go env GOPATH)/bin' >> /etc/profile.d/go.sh
170170
SHELL

0 commit comments

Comments
 (0)