summaryrefslogtreecommitdiffstats
path: root/distro/tests/ubuntu2010/Vagrantfile
blob: 6f816f2f98c0e2793f025dfda897eef697be4366 (plain)
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
30
31
# SPDX-License-Identifier: GPL-3.0-or-later
# -*- mode: ruby -*-
# vi: set ft=ruby :
#

Vagrant.configure(2) do |config|

    # TODO: switch to generic/ubuntu2010 when available (has libvirt box)
    config.vm.box = "ubuntu/groovy64"
    config.vm.synced_folder ".", "/vagrant", disabled: true

    config.vm.define "ubuntu2010_knot-dns"  do |machine|
        machine.vm.provision "ansible" do |ansible|
            ansible.playbook = "../knot-dns-pkgtest.yaml"
            ansible.extra_vars = {
                ansible_python_interpreter: "/usr/bin/python3"
            }
        end
    end

    config.vm.provider :libvirt do |libvirt|
      libvirt.cpus = 1
      libvirt.memory = 1024
    end

    config.vm.provider :virtualbox do |vbox|
      vbox.cpus = 1
      vbox.memory = 1024
    end

end