Cloudstack
cloudstack 最終使用者 cantg 調整捲大小
最終使用者(也是域管理員)無法調整捲的大小 - CS GUI 中沒有這樣的選項(參見 img1.PNG)。雖然 Cloudstack 管理員能夠調整捲大小(請參閱 img2.PNG)。
資訊:CS 版本 - 使用 MariaDb Galera 的 HAProxy 後面的 4.8.0 HA 管理伺服器。主機:Xenserver。
這在 4.9 中由以下 PR 修復。API 允許最終使用者調整大小,但該選項在 UI 中不可用。 https://github.com/apache/cloudstack/pull/1595 在:/usr/share/cloudstack-management/webapps/client/scripts/storage.js
刪除:
if (jsonObj.hypervisor == "KVM" || jsonObj.hypervisor == "XenServer" || jsonObj.hypervisor == "VMware") { if (jsonObj.state == "Ready" || jsonObj.state == "Allocated") { allowedActions.push("resize"); }
並添加:
if (jsonObj.state == "Ready" || jsonObj.state == "Allocated") { allowedActions.push("resize"); }
同時刪除:/usr/share/cloudstack-management/webapps/client/scripts/storage.js.gz
解決問題