mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
[artifact testing] Use local ansible provisioner (#133047)
We've seen a number of package testing timeouts where a random command will hang while establishing an ssh connection. Instead of running installation remotely, this switches to the ansible_local provisioner.
This commit is contained in:
parent
07a865261e
commit
a6a66381b6
1 changed files with 3 additions and 3 deletions
6
test/package/Vagrantfile
vendored
6
test/package/Vagrantfile
vendored
|
@ -6,7 +6,7 @@ Vagrant.configure("2") do |config|
|
|||
vb.memory = 2048
|
||||
end
|
||||
deb.vm.box = 'elastic/debian-9-x86_64'
|
||||
deb.vm.provision "ansible" do |ansible|
|
||||
deb.vm.provision "ansible_local" do |ansible|
|
||||
ansible.playbook = "deb.yml"
|
||||
end
|
||||
deb.vm.network "private_network", ip: "192.168.56.5"
|
||||
|
@ -17,7 +17,7 @@ Vagrant.configure("2") do |config|
|
|||
vb.memory = 2048
|
||||
end
|
||||
rpm.vm.box = 'elastic/centos-7-x86_64'
|
||||
rpm.vm.provision "ansible" do |ansible|
|
||||
rpm.vm.provision "ansible_local" do |ansible|
|
||||
ansible.playbook = "rpm.yml"
|
||||
end
|
||||
rpm.vm.network "private_network", ip: "192.168.56.6"
|
||||
|
@ -28,7 +28,7 @@ Vagrant.configure("2") do |config|
|
|||
vb.memory = 2048
|
||||
end
|
||||
docker.vm.box = 'elastic/ubuntu-18.04-x86_64'
|
||||
docker.vm.provision "ansible" do |ansible|
|
||||
docker.vm.provision "ansible_local" do |ansible|
|
||||
ansible.playbook = "docker.yml"
|
||||
end
|
||||
docker.vm.network "private_network", ip: "192.168.56.7"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue