Description of problem: After STG is upgraded and migrated, the additional gear storage for an existing silver account is still 30GB, which is expected to be reduced to 5GB. Maybe the mongo isn't migrated or the capacity is reset with oo-admin-ctl-user? Version-Release number of selected component (if applicable): STG(devevn-stage_347) How reproducible: Always Steps to Reproduce: 1. Prepare an account with silver plan(jhou+6 on STG) 2. After STG is upgraded, verify the account's additional gear storage capacity is changed to 5GB curl -s -k -H 'Content-Type: Application/json' --user jhou+6:x https://stg.openshift.redhat.com/broker/rest/user -X GET Actual results: After step 2: the max_storage_per_gear is 30, which is expected to be 5 <---------------------------> "data": { "capabilities": { "gear_sizes": [ "small", "medium" ], "plan_upgrade_enabled": true, "private_ssl_certificates": true, "subaccounts": false, "max_storage_per_gear": 30 }, <---------------------------> Expected results: max_storage_per_gear should be 5 Additional info:
This should be fixed on STG now.
Verified on STG, the max_storage_per_gear is changed to 5G now <---------------------------> "data": { "capabilities": { "gear_sizes": [ "small", "medium" ], "plan_upgrade_enabled": true, "private_ssl_certificates": true, "subaccounts": false, "max_storage_per_gear": 5 }, "consumed_gears": 10, ......... <--------------------------->