-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVagrantfile
More file actions
29 lines (24 loc) · 794 Bytes
/
Copy pathVagrantfile
File metadata and controls
29 lines (24 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# File : Vagrantfile
# Author : Anton Riedel <anton.riedel@tum.de>
# Date : 27.08.2021
# Last Modified Date: 17.09.2022
# Last Modified By : Anton Riedel <anton.riedel@tum.de>
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
# general setup
config.vm.define "alice-f36" do |alice|
alice.vm.hostname = "alice-f36"
alice.vm.box = "generic/fedora36"
# libvirt setup
alice.vm.provider :libvirt do |v|
v.memory = 26624 # 26*1024
v.cpus = 16
end
# share data between host and guest
alice.vm.synced_folder "vagrant", "/vagrant", type: "nfs", nfs_udp: false, nfs_version: 4
end
config.vm.provision "ansible" do |ansible|
ansible.playbook = "provision/bootstrap.yml"
end
end