forked from cccco/otus-linux-pacemaker-vbox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhosts.yml
More file actions
24 lines (24 loc) · 775 Bytes
/
hosts.yml
File metadata and controls
24 lines (24 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
all:
children:
pcs_servers:
hosts:
pcs1:
ansible_host: "192.168.11.201"
ansible_private_key_file: ".vagrant/machines/pcs1/virtualbox/private_key"
pcs2:
ansible_host: "192.168.11.202"
ansible_private_key_file: ".vagrant/machines/pcs2/virtualbox/private_key"
pcs3:
ansible_host: "192.168.11.203"
ansible_private_key_file: ".vagrant/machines/pcs3/virtualbox/private_key"
vars:
virtualbox_host: "192.168.11.1"
virtualbox_host_username: "mbfx"
virtualbox_host_password: "strong_pass"
vars:
domain: "mydomain.test"
ntp_timezone: "UTC"
pcs_password: "strong_pass" # cluster user: hacluster
cluster_name: "hacluster"
...