├── .gitignore ├── Makefile ├── README.md ├── Vagrantfile ├── admin.openrc ├── boot-cirros.py ├── demo.openrc ├── devstack.yml ├── files └── keyringrc.cfg ├── requirements.txt ├── templates └── local.conf.j2 └── topology.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorin/devstack-vm/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorin/devstack-vm/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorin/devstack-vm/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorin/devstack-vm/HEAD/Vagrantfile -------------------------------------------------------------------------------- /admin.openrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorin/devstack-vm/HEAD/admin.openrc -------------------------------------------------------------------------------- /boot-cirros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorin/devstack-vm/HEAD/boot-cirros.py -------------------------------------------------------------------------------- /demo.openrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorin/devstack-vm/HEAD/demo.openrc -------------------------------------------------------------------------------- /devstack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorin/devstack-vm/HEAD/devstack.yml -------------------------------------------------------------------------------- /files/keyringrc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorin/devstack-vm/HEAD/files/keyringrc.cfg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorin/devstack-vm/HEAD/requirements.txt -------------------------------------------------------------------------------- /templates/local.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorin/devstack-vm/HEAD/templates/local.conf.j2 -------------------------------------------------------------------------------- /topology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lorin/devstack-vm/HEAD/topology.png --------------------------------------------------------------------------------