Skip to content
Snippets Groups Projects
Unverified Commit 21b71b38 authored by Maciej Wereski's avatar Maciej Wereski Committed by GitHub
Browse files

Vagrantfile: add var to set ansible verbosity level (#8639)

parent b2f9442a
No related branches found
No related tags found
No related merge requests found
......@@ -73,6 +73,8 @@ $disk_size ||= "20GB"
$local_path_provisioner_enabled ||= false
$local_path_provisioner_claim_root ||= "/opt/local-path-provisioner/"
$libvirt_nested ||= false
# boolean or string (e.g. "-vvv")
$ansible_verbosity ||= false
$playbook ||= "cluster.yml"
......@@ -244,6 +246,7 @@ Vagrant.configure("2") do |config|
if i == $num_instances
node.vm.provision "ansible" do |ansible|
ansible.playbook = $playbook
ansible.verbose = $ansible_verbosity
$ansible_inventory_path = File.join( $inventory, "hosts.ini")
if File.exist?($ansible_inventory_path)
ansible.inventory_path = $ansible_inventory_path
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment