should nova-docker work on Juno?
I just installed nova-docker on a brand-new Juno release on Ubuntu 14.04. I'm seeing several errors, like "image not found" and some message timeouts on the compute node when I attempt to boot a container.
The compute node is set up according to the instructions on the wiki. Other hypervisors work on other nodes. So I was wondering if maybe nova-docker is expected to work on Juno yet. Can someone fill me in?
Could you post what the errors you are facing are exactly? What is written on the log? How did you put the docker images on glance?
The "image not found" problem was due to an uncaught exception (calling self.docker.inspect_image) on https://github.com/stackforge/nova-docker/blob/master/novadocker/virt/docker/driver.py#L388 (line 388 of driver.py).
Catch the exception and it uses glance to get the image.
I will file a ticket.
I also met the image not found issue, my glance and nova-compute are on different nodes. If I manually pull the dock image like "docker pull ubuntu", it will still fai, saying
"AttributeError: 'module' object has no attribute 'InstanceInfo'"
Any clue for this?