给镜像改密码:

virt-customize -a disk/CentOS-7-x86_64-GenericCloud-1511.qcow2 --root-password password:123456

以qcow2模板为例

1. 上传镜像qcow2文件到服务器。

2. 先转换qcow2格式为raw,例如:
qemu-img convert -f qcow2 -O raw win2012r2.qcow2 win2012r2.raw

3. 再将raw镜像上传到glance,例如:
Windows镜像上传:
glance image-create --name "win2012r2" --file win2012r2.raw --disk-format raw --container-format bare --progress --property os_type=windows

Linux镜像上传:
glance image-create --name "CentOS7.6" --file CentOS7.6.raw --disk-format raw --container-format bare --progress

 

注:windows镜像模板制作可提前打补丁尤其是勒索补丁;centos制作可提前升级内核与应用版本,如openssh版本

发表评论

邮箱地址不会被公开。 必填项已用*标注