CodeBleu commented on issue #148: URL: https://github.com/apache/cloudstack-terraform-provider/issues/148#issuecomment-2536698257
> > @chrxmvtik if you can use [CloudMonkey](https://github.com/apache/cloudstack-cloudmonkey) ( cmk ) it would be helpful to see the other info that the UI doesn't show for the offering. > > So far, nothing is standing out to me, but it would be helpful to see more detail on how the offering is setup. > > `cmk list serviceofferings --filter name="g1.Custom"` > > Also, what Cloudstack Ver. are you running? > > Cloudstack version is **4.19.1.3** > > Here is result offering info from CMK: > > ```json > (localcloud) 🐱 > list serviceofferings --filter name="g1.Custom" > { > "count": 1, > "serviceoffering": [ > { > "cacheMode": "writeback", > "created": "2024-07-13T16:53:40+0200", > "defaultuse": false, > "diskofferingstrictness": false, > "displaytext": "Custom Instance HDD", > "domain": "ROOT", > "domainid": "687a14xac120002", > "dynamicscalingenabled": true, > "encryptroot": false, > "hasannotations": false, > "hosttags": "WBHO", > "id": "77290x4c9ff2686", > "iscustomized": true, > "issystem": false, > "isvolatile": false, > "limitcpuuse": false, > "name": "g1.Custom", > "offerha": true, > "provisioningtype": "thin", > "rootdisksize": 0, > "serviceofferingdetails": { > "domainid": "1", > "zoneid": "1" > }, > "state": "Active", > "storagetags": "Primary-HDD", > "storagetype": "shared", > "zone": "XX", > "zoneid": "730cb3x1399" > } > ] > } > ``` > > Neither do I really see anything suspicious in here, tho. 1. My previous comment was for my initial issue, not our conversation :smile: 2. I'm using a custom `constrained` with `min` and `max` settings for CPU and RAM in my offering. Maybe this is a bug with the `unconstrained` offering? ```json { "count": 1, "serviceoffering": [ { "cacheMode": "none", "cpuspeed": 2600, "created": "2024-10-17T15:49:28+0000", "defaultuse": false, "diskofferingstrictness": false, "displaytext": "jwh-customed-constrained", "dynamicscalingenabled": true, "encryptroot": false, "hasannotations": false, "hosttags": "standard", "id": "c99c0b1a-ac09-4eb4-a05b-afe5192445d4", "iscustomized": true, "issystem": false, "isvolatile": false, "limitcpuuse": true, "name": "jwh-customed-constrained-2-8-2-4", "offerha": false, "provisioningtype": "thin", "rootdisksize": 0, "serviceofferingdetails": { "maxcpunumber": "8", "maxmemory": "4096", "mincpunumber": "2", "minmemory": "2048" }, "state": "Active", "storagetags": "standard_storage", "storagetype": "local" } ] } ``` Maybe try using a custom `constrained` and limit the CPU and RAM like me to see if that works for you. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org