Added nova compute

Also configured horizon to display hypervisors.
This commit is contained in:
Egon Rijpkema
2017-07-14 10:02:55 +02:00
parent 1b7fa48714
commit d42d1495e9
7 changed files with 80 additions and 4 deletions

View File

@ -0,0 +1,24 @@
# Build and install a docker image for nova-controller.
---
- name: install service file.
template:
src: templates/nova-compute.service
dest: /etc/systemd/system/nova-compute.service
mode: 644
owner: root
group: root
- command: systemctl daemon-reload
- apt:
name: '{{ item }}'
with_items:
- kvm
- libvirt0
- libvirt-bin
- qemu
- name: make sure service is started
systemd:
name: nova-compute.service
state: restarted