Added basic provisioning
This commit is contained in:
parent
75b8617af0
commit
30a3c8563f
35 changed files with 779 additions and 4 deletions
3
Vagrantfile
vendored
3
Vagrantfile
vendored
|
|
@ -7,7 +7,7 @@ Vagrant.configure(2) do |config|
|
|||
config.vm.box = "hashicorp/bionic64"
|
||||
|
||||
config.vm.provider :virtualbox do |vbox, override|
|
||||
vbox.customize ["modifyvm", :id, "--name", "jotbe Dev VM Ansible Playground"]
|
||||
vbox.customize ["modifyvm", :id, "--name", "jotbe DevOps VM Ansible Playground"]
|
||||
vbox.customize ["modifyvm", :id, "--memory", 8192]
|
||||
vbox.customize ["modifyvm", :id, "--cpus", Etc.nprocessors/2]
|
||||
vbox.customize ["modifyvm", :id, "--vram", 128]
|
||||
|
|
@ -16,6 +16,7 @@ Vagrant.configure(2) do |config|
|
|||
vbox.customize ["modifyvm", :id, "--clipboard-mode", "bidirectional"]
|
||||
vbox.customize ["modifyvm", :id, "--uartmode1", "disconnected"]
|
||||
vbox.customize ["modifyvm", :id, "--natnet1", "10.0.5/24"]
|
||||
vbox.customize ["storageattach", :id, "--storagectl", "IDE Controller", "--port", "0", "--device", "0", "--type", "dvddrive", "--medium", "emptydrive"]
|
||||
#vbox.customize ["storagectl", :id, "--name", "SATA Controller", "--hostiocache", "on"]
|
||||
# Default: The VM is hosted on an SSD.
|
||||
# Set to "off" if it is hosted on an HDD to enable performance optimizations for rotational drives (e.g. defragmentation):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue