Zack Williams | aa3d6f7 | 2020-12-01 20:39:42 -0700 | [diff] [blame] | 1 | # examle inventory file for manual provisioning of aether systems |
| 2 | [aethermgmt] |
| 3 | mgmtserver1.role1.site ansible_host=<mgmt server ip> |
| 4 | |
| 5 | [aethermgmt:vars] |
| 6 | ansible_user="onfadmin" |
| 7 | ansible_become_password="<onfadmin password>" |
| 8 | ansible_python_interpreter=/usr/bin/python3 |
| 9 | |
| 10 | [aethercompute] |
| 11 | node1.role1.site ansible_host=10.0.0.138 |
| 12 | node2.role1.site ansible_host=10.0.0.139 |
| 13 | node3.role1.site ansible_host=10.0.0.140 |
| 14 | |
| 15 | [aethercompute:vars] |
| 16 | ansible_ssh_common_args='-o ProxyCommand="ssh -W %h:%p -q onfadmin@<mgmt server ip>"' |
| 17 | ansible_user="onfadmin" |
| 18 | ansible_become_password="<onfadmin password>" |
| 19 | ansible_python_interpreter=/usr/bin/python3 |
| 20 | |
| 21 | [aetherfabric] |
| 22 | spine1.role1.site ansible_host=10.0.0.130 |
| 23 | spine2.role1.site ansible_host=10.0.0.132 |
| 24 | leaf1.role1.site ansible_host=10.0.0.134 |
| 25 | leaf2.role1.site ansible_host=10.0.0.136 |
| 26 | |
| 27 | [aetherfabric:vars] |
| 28 | ansible_ssh_common_args='-o ProxyCommand="ssh -W %h:%p -q onfadmin@<mgmt server ip>"' |
| 29 | ansible_user="root" |
| 30 | ansible_ssh_pass="onl" |
| 31 | ansible_python_interpreter=/usr/bin/python3 |