Issue
My virtual server does not show RAM correctly. The issue can be related to the template which does not support hot resize.
Environment
All OnApp Cloud versions
Resolution
If you want to prevent memory reservation for hot_resize
, disable resize_without_reboot_policy
for this template. It will affect all virtual servers built from this template.
On the database, set the following per template:
mysql> update templates set resize_without_reboot_policy='---\n:xen:\n :centos5: 0\n :centos6: 0\n :centos7: 0\n:kvm:\n :centos5: 0\n :centos6: 0\n :centos7: 0\n' where id=TEMPLATE_ID;
CODE