summaryrefslogtreecommitdiffstats
path: root/distro/tests/fedora33
diff options
context:
space:
mode:
Diffstat (limited to 'distro/tests/fedora33')
-rw-r--r--distro/tests/fedora33/Vagrantfile29
-rw-r--r--distro/tests/fedora33/ansible.cfg6
2 files changed, 35 insertions, 0 deletions
diff --git a/distro/tests/fedora33/Vagrantfile b/distro/tests/fedora33/Vagrantfile
new file mode 100644
index 0000000..0644b44
--- /dev/null
+++ b/distro/tests/fedora33/Vagrantfile
@@ -0,0 +1,29 @@
+# -*- mode: ruby -*-
+# vi: set ft=ruby :
+#
+
+Vagrant.configure(2) do |config|
+
+ config.vm.box = "fedora/33-cloud-base"
+ config.vm.synced_folder ".", "/vagrant", disabled: true
+
+ config.vm.define "fedora33_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
diff --git a/distro/tests/fedora33/ansible.cfg b/distro/tests/fedora33/ansible.cfg
new file mode 100644
index 0000000..b3b37ea
--- /dev/null
+++ b/distro/tests/fedora33/ansible.cfg
@@ -0,0 +1,6 @@
+[defaults]
+
+# additional paths to search for roles in, colon separated
+roles_path = ../ansible-roles
+interpreter_python = auto
+stdout_callback=debug