-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathansible-hosts-vagrant.yml
34 lines (34 loc) · 1.15 KB
/
ansible-hosts-vagrant.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
all:
children:
controller_nodes:
hosts:
controller:
ansible_host: 192.168.99.101
ansible_ssh_user: vagrant
ansible_ssh_private_key_file: .vagrant/machines/controller/libvirt/private_key
external_ip: 192.168.98.101
internal_ip: 192.168.99.101
storage_nodes:
hosts:
controller:
ansible_host: 192.168.99.101
ansible_ssh_user: vagrant
ansible_ssh_private_key_file: .vagrant/machines/controller/libvirt/private_key
external_ip: 192.168.98.101
internal_ip: 192.168.99.101
network_nodes:
hosts:
controller:
ansible_host: 192.168.99.101
ansible_ssh_user: vagrant
ansible_ssh_private_key_file: .vagrant/machines/controller/libvirt/private_key
external_ip: 192.168.98.101
internal_ip: 192.168.99.101
compute_nodes:
hosts:
compute:
ansible_host: 192.168.99.102
ansible_ssh_user: vagrant
ansible_ssh_private_key_file: .vagrant/machines/compute/libvirt/private_key
external_ip: 192.168.98.102
internal_ip: 192.168.99.102