I run this command to get specific nova instance.here in my case "MyProxy-VM"
nova list --name MyProxy-VM --fields id |grep MyProxy-VM |cut -f 2 -d "|"
It works fine and also bit faster
I want to list specific glance image say "Ubuntu-14.04"
glance image-list | grep Ubuntu-14.04 | awk '{print $2;}
This command takes time so i want to list specific image.
I didn't find any option for this in openstack docs. Is there any way to do this.