如何在OpenStack上修改镜像内存?



我正在玩OpenStack API。是否有一种方法可以更改映像所需的最小内存?我最初创建了一个具有4GB RAM的映像,但是现在我只需要用2GB RAM启动该映像。由于Linux支持更改可用RAM的数量(在重新启动后),我认为一定有一种方法可以减少OpenStack映像所需的最小RAM。

注意:当我尝试启动2GB的映像时,我得到以下消息:

Error: Unable to launch instance: Instance type's memory is too small 
for requested image. (HTTP 400)

是的,你可以有一个API。

# First list all images to note down the uuid of image you want to change
glance index
# Check how to use the image update function
glance help image-update
# or if you dont know which function to use just run
glance help
# The following command will change minimum ram to 2000MB and minimum disk to 1GB
glance image-update <<uuid or name of image>> --min-ram 2000 --min-disk 1

相关内容

  • 没有找到相关文章

最新更新