mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-31 01:44:47 +07:00
Remove Vagrant
This commit is contained in:
parent
5f86cf33c0
commit
ff1b8f4327
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,4 +1,3 @@
|
||||
.vagrant/
|
||||
target/
|
||||
|
||||
*.log
|
||||
|
23
Vagrantfile
vendored
23
Vagrantfile
vendored
@ -1,23 +0,0 @@
|
||||
# -*- mode: ruby -*-
|
||||
# vi: set ft=ruby :
|
||||
|
||||
Vagrant.configure("2") do |config|
|
||||
config.vm.box = "centos/8"
|
||||
|
||||
config.vm.provider "libvirt" do |libvirt|
|
||||
libvirt.cpus = 4
|
||||
libvirt.memory = 8192
|
||||
libvirt.nested = true
|
||||
end
|
||||
|
||||
config.vm.network :public_network,
|
||||
:dev => "virbr0",
|
||||
:mode => "bridge",
|
||||
:type => "bridge"
|
||||
|
||||
config.disksize.size = '100GB'
|
||||
|
||||
config.vm.provision "ansible" do |ansible|
|
||||
ansible.playbook = "ansible/playbook.yml"
|
||||
end
|
||||
end
|
Loading…
Reference in New Issue
Block a user