Enable nova-libvirt to be updated

Libvirt shuts down existing virtual machines.  To solve this problem,
the /var/lib/libvirt directory needs to be persisted.  By persisting
this directory in the nova data container, libvirt can communicate
with the sockets setup by the previous data container.

Change-Id: I362c533f8493984123686fe6e3f8e43d97434ca6
Closes-Bug: #1494060
This commit is contained in:
Steven Dake 2015-09-09 18:56:30 -07:00
parent 1025890e99
commit ca4db1d965

View File

@ -41,7 +41,9 @@
insecure_registry: "{{ docker_insecure_registry }}"
name: nova_data
image: "{{ nova_data_image_full }}"
volumes: "/var/lib/nova/instances"
volumes:
- "/var/lib/nova/instances"
- "/var/lib/libvirt"
- name: Starting Nova bootstrap container
docker: