ISSUE TYPE
COMPONENT NAME
CLOUDSTACK VERSION
CONFIGURATION
Service Offering with a fixed root disk size
(2019) > list serviceofferings filter=rootdisksize,name,id id=4250629b-5754-495c-be84-16c2cdfe481f
{
"count": 1,
"serviceoffering": [
{
"id": "4250629b-5754-495c-be84-16c2cdfe481f",
"name": "HA 1G (Root 30GB)",
"rootdisksize": 32212254720
}
]
}
(2019) >
SUMMARY
The UI shows a toggle to customize the root disk size upon deployment even though if the root disk size has been set to a fixed value under the service offering.
This toggle should be hidden when a offering is selected which does not allow for customization of the root disk size.
Above is the output of the API and below a screenshot of the UI.
This offering has a fixed size of 30GB.
We probably want an if-statement like (pseudo):
allowRootDiskResize = True
if rootdisksize > 0:
allowRootDiskResize = False

ISSUE TYPE
COMPONENT NAME
CLOUDSTACK VERSION
CONFIGURATION
Service Offering with a fixed root disk size
(2019) > list serviceofferings filter=rootdisksize,name,id id=4250629b-5754-495c-be84-16c2cdfe481f { "count": 1, "serviceoffering": [ { "id": "4250629b-5754-495c-be84-16c2cdfe481f", "name": "HA 1G (Root 30GB)", "rootdisksize": 32212254720 } ] } (2019) >SUMMARY
The UI shows a toggle to customize the root disk size upon deployment even though if the root disk size has been set to a fixed value under the service offering.
This toggle should be hidden when a offering is selected which does not allow for customization of the root disk size.
Above is the output of the API and below a screenshot of the UI.
This offering has a fixed size of 30GB.
We probably want an if-statement like (pseudo):