Partial failure image creation
Hi,
When I try to perform several image-create with glance in a loop, I end up with some of the images not being made. I am using the following code.
nova list --all-tenants | awk 'NR > 3 {print $4}' | awk NF > document
while read i; do
nova image-create $i $i-$(date +%Y%m%d)
done < document
Some of the images are queued and become active, others just never appear in the image list. Does anyone know what seems to be the problem here?
Regards, Juiced