From a731e2577838253afaf80fb0139c358ac85d0749 Mon Sep 17 00:00:00 2001
From: Kenichi Omichi <ken1ohmichi@gmail.com>
Date: Mon, 7 Nov 2022 17:08:16 +0900
Subject: [PATCH] Make vagrant-ubuntu20-flannel voting (#9469)

We made all vagrant jobs non-voting because those jobs were not stable.
However the setting allowed a pull request which broke vagrant jobs
completely merged into the master branch.
To avoid such situation, this makes one of vagrant jobs voting.
Let's see the stability of the job.
---
 .gitlab-ci/vagrant.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.gitlab-ci/vagrant.yml b/.gitlab-ci/vagrant.yml
index 8c0f4a21d..4f7bd9e43 100644
--- a/.gitlab-ci/vagrant.yml
+++ b/.gitlab-ci/vagrant.yml
@@ -43,6 +43,7 @@ vagrant_ubuntu20-flannel:
   stage: deploy-part2
   extends: .vagrant
   when: on_success
+  allow_failure: false
 
 vagrant_ubuntu16-kube-router-sep:
   stage: deploy-part2
-- 
GitLab