2017-06-02 12:00:19 +02:00
|
|
|
# hpc-cloud
|
2017-04-25 14:47:04 +02:00
|
|
|
|
2017-08-29 14:06:34 +02:00
|
|
|
This repository contains playbooks to bring up openstack components inside docker containers.
|
|
|
|
It makes use of ansible roles for the openstack components and the supporting infrastructure.
|
|
|
|
The following roles are installed.
|
|
|
|
|
|
|
|
### Openstack components.
|
|
|
|
|
|
|
|
* keystone
|
|
|
|
* glance-controller
|
|
|
|
* horizon
|
|
|
|
* neutron-controller
|
|
|
|
* nova-controller
|
|
|
|
* nova-compute
|
|
|
|
* cinder-controller
|
|
|
|
* cinder-storage
|
|
|
|
|
|
|
|
### Auxilary components:
|
|
|
|
|
|
|
|
* database (mariadb)
|
|
|
|
* rabbitmq (cluster of three nodes)
|
|
|
|
* memcached
|
|
|
|
|
|
|
|
## Getting started:
|
|
|
|
|
|
|
|
### Prerequisites:
|
|
|
|
* A cluster of servers to install the components on.
|
|
|
|
* The machines running nova-compute and neutron-controller need a separate interface for neutron to use.
|
|
|
|
* ubuntu 16.04 with python installed (usually already present).
|
|
|
|
* Access to the webhost12.service.rug.nl docker repository.
|
|
|
|
|
|
|
|
### Settings:
|
|
|
|
Passwords need be added to `secrets.yml.topol` and it needs to be saved as `secrets.yml`.
|
|
|
|
This can be done by running `./generate_secrets.py`.
|
|
|
|
Optionally, one can encrypt the secrtets by running `ansible-vault encrypt secrets.yml`.
|
|
|
|
|
|
|
|
|
|
|
|
### Secrets:
|
2017-04-25 14:47:04 +02:00
|
|
|
|
|
|
|
The roles can be set in the inventory file (hosts)
|
|
|
|
|
2017-06-02 12:00:19 +02:00
|
|
|
To bring up one role, for instance keystone, use:
|
|
|
|
|
|
|
|
$ ansible-playbook keystone.yml
|
|
|
|
|
|
|
|
To bring up all roles, use
|
|
|
|
|
|
|
|
$ ansible-playbook site.yml
|