inventory.py 652 B

123456789101112131415161718192021222324
  1. #!/usr/bin/env python
  2. """
  3. This is an Ansible dynamic inventory for OpenStack.
  4. It requires your OpenStack credentials to be set in clouds.yaml or your shell
  5. environment.
  6. """
  7. import resources
  8. def build_inventory():
  9. """Build the Ansible inventory for the current environment."""
  10. inventory = resources.build_inventory()
  11. inventory['nodes'] = inventory['openstack_nodes']
  12. inventory['masters'] = inventory['openstack_master_nodes']
  13. inventory['etcd'] = inventory['openstack_etcd_nodes']
  14. inventory['glusterfs'] = inventory['openstack_cns_nodes']
  15. return inventory
  16. if __name__ == '__main__':
  17. resources.main(build_inventory)