From: David Galloway Date: Tue, 15 Jun 2021 16:16:50 +0000 (-0400) Subject: ansible: Pin centos8 vagrant builders to 2.2.10 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=3ff12ddd8a738869b00db8a9c9349d03b88511e0;p=ceph-build.git ansible: Pin centos8 vagrant builders to 2.2.10 Seeing weird random failures with 2.2.16. Signed-off-by: David Galloway --- diff --git a/ansible/examples/centos8-vagrant.yml b/ansible/examples/centos8-vagrant.yml index 8ed5410f..b1d8a120 100644 --- a/ansible/examples/centos8-vagrant.yml +++ b/ansible/examples/centos8-vagrant.yml @@ -29,7 +29,9 @@ - name: Set the latest vagrant version URL set_fact: - latest_vagrant_url: "https://releases.hashicorp.com/vagrant/{{ latest_vagrant_version.stdout }}/vagrant_{{ latest_vagrant_version.stdout }}_x86_64.rpm" + latest_vagrant_url: "https://releases.hashicorp.com/vagrant/2.2.10/vagrant_2.2.10_x86_64.rpm" + # Latest vagrant version sometimes has issue. Pinning to 2.2.10 for now. + # latest_vagrant_url: "https://releases.hashicorp.com/vagrant/{{ latest_vagrant_version.stdout }}/vagrant_{{ latest_vagrant_version.stdout }}_x86_64.rpm" ## Wipe out vagrant stuff # From https://github.com/vagrant-libvirt/vagrant-libvirt/issues/943#issuecomment-463678158