Skip to content
This repository has been archived by the owner on May 25, 2023. It is now read-only.

Commit

Permalink
Use solution from dotless-de/vagrant-vbguest#399
Browse files Browse the repository at this point in the history
  • Loading branch information
mrakitin committed Feb 24, 2022
1 parent 7059b98 commit 693aae2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/vagrant-up.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,7 @@ jobs:
- name: Install vagrant plugins
run: |
set -vxeuo pipefail
vagrant plugin uninstall vagrant-vbguest
vagrant plugin install vagrant-vbguest --plugin-version 0.21
vagrant plugin install vagrant-vbguest
vagrant plugin install vagrant-disksize
- name: vagrant up
Expand Down
3 changes: 2 additions & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
Vagrant.configure("2") do |config|
config.vm.box = "bento/centos-8.5"
config.vm.box_version = "202112.19.0"
config.disksize.size = "50GB"
config.vm.hostname = "test-ansible-box"
config.vbguest.installer_options = { allow_kernel_upgrade: true }
config.disksize.size = "50GB"
# config.vm.network "private_network", ip: "10.10.10.10"
config.vm.provider "virtualbox" do |v|
v.memory = 4096
Expand Down

0 comments on commit 693aae2

Please sign in to comment.