mardi 7 mai 2019

Converting qcow2 images to raw and uploading to glance




  1. Converting qcow2 images to raw and uploading to glance




    for i in `ls |grep -E 'qcow2|img'`
     do qemu-img convert -f qcow2 -O raw $i `echo "$i"|cut -d '.' -f 1`.raw
     rm $i
     openstack image create `echo "$i"|cut -d '.' -f 1`  --file  `echo "$i"|cut -d '.' -f 1`.raw --disk-format raw --container-format bare --public
    done

OpenShift Assisted Installer on premise deep dive

Test Assisted Installer on premise deep dive Introduction In this series of blog posts, we will demonstrate how Infra...