scaleup_inventory.py 317 B

123456789101112131415
  1. #!/usr/bin/env python
  2. """
  3. This is an Ansible dynamic inventory for OpenStack, specifically for use with
  4. the scaling playbooks.
  5. It requires your OpenStack credentials to be set in clouds.yaml or your shell
  6. environment.
  7. """
  8. import resources
  9. if __name__ == '__main__':
  10. resources.main(resources.build_inventory)