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

Increase Vagrant disk size from 10 GB to 50 GB #948

Merged
merged 2 commits into from
Sep 24, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
1 change: 1 addition & 0 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

Vagrant.configure('2') do |config|
config.vm.box = 'ubuntu/bionic64'
config.disksize.size = '50GB'
config.vm.box_check_update = false
config.vm.host_name = 'sumologic-kubernetes-collection'
config.vm.network :private_network, ip: "192.168.78.66"
Expand Down
13 changes: 12 additions & 1 deletion vagrant/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,18 @@

## Setting up

Please install [Vagrant](https://www.vagrantup.com/) and [VirtualBox](https://www.virtualbox.org/).
Please install the following:

- [VirtualBox](https://www.virtualbox.org/)
- [Vagrant](https://www.vagrantup.com/)
- [vagrant-disksize](https://github.com/sprotheroe/vagrant-disksize) plugin

```bash
brew cask install virtualbox
brew cask install vagrant
vagrant plugin install vagrant-disksize
andrzej-stencel marked this conversation as resolved.
Show resolved Hide resolved
```

After that you can run the Vagrant environment with just one command:

```bash
Expand Down