diff --git a/.gitlab-ci/vagrant.yml b/.gitlab-ci/vagrant.yml
index 596e06be33d64deb5a45e51c99f29b1b4611f1d4..fcc5de4594604e1d8d1e8e234ab07b02b5c5c060 100644
--- a/.gitlab-ci/vagrant.yml
+++ b/.gitlab-ci/vagrant.yml
@@ -47,3 +47,8 @@ vagrant_ubuntu18-weave-medium:
   stage: deploy-part2
   extends: .vagrant
   when: manual
+
+vagrant_ubuntu20-flannel:
+  stage: deploy-part2
+  extends: .vagrant
+  when: on_success
\ No newline at end of file
diff --git a/docs/ci.md b/docs/ci.md
index 831bd159eb4d40f887b592106485a847578b3655..6649cd98e3cb8a962cb8f18ec941a6b39799fa57 100644
--- a/docs/ci.md
+++ b/docs/ci.md
@@ -17,7 +17,7 @@ opensuse |  :x: | :white_check_mark: | :x: | :x: | :x: | :x: | :x: | :x: | :x: |
 oracle7 |  :x: | :white_check_mark: | :x: | :x: | :x: | :x: | :x: | :x: | :x: |
 ubuntu16 |  :x: | :white_check_mark: | :x: | :white_check_mark: | :white_check_mark: | :x: | :white_check_mark: | :x: | :white_check_mark: |
 ubuntu18 |  :white_check_mark: | :x: | :white_check_mark: | :x: | :white_check_mark: | :x: | :x: | :x: | :white_check_mark: |
-ubuntu20 |  :white_check_mark: | :x: | :x: | :x: | :x: | :x: | :x: | :x: | :x: |
+ubuntu20 |  :white_check_mark: | :x: | :x: | :x: | :white_check_mark: | :x: | :x: | :x: | :x: |
 
 ## crio
 
diff --git a/tests/files/vagrant_ubuntu20-flannel.rb b/tests/files/vagrant_ubuntu20-flannel.rb
new file mode 100644
index 0000000000000000000000000000000000000000..c739f58a2aba8ee87a89a2d481b5ec6630a07cfd
--- /dev/null
+++ b/tests/files/vagrant_ubuntu20-flannel.rb
@@ -0,0 +1,9 @@
+$os = "ubuntu2004"
+
+# For CI we are not worries about data persistence across reboot
+$libvirt_volume_cache = "unsafe"
+
+# Checking for box update can trigger API rate limiting
+# https://www.vagrantup.com/docs/vagrant-cloud/request-limits.html
+$box_check_update = false
+$vm_cpus = 2
\ No newline at end of file
diff --git a/tests/files/vagrant_ubuntu20-flannel.yml b/tests/files/vagrant_ubuntu20-flannel.yml
new file mode 100644
index 0000000000000000000000000000000000000000..e878a5e388a12930cd3e800c7154e3e8318b96a0
--- /dev/null
+++ b/tests/files/vagrant_ubuntu20-flannel.yml
@@ -0,0 +1,7 @@
+---
+# Kubespray settings
+
+kube_network_plugin: flannel
+
+deploy_netchecker: true
+dns_min_replicas: 1
\ No newline at end of file