-
Notifications
You must be signed in to change notification settings - Fork 897
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Resize disk reconfigure screen #16711
Resize disk reconfigure screen #16711
Conversation
…ureScreen * origin/master: (45 commits) Order queue messages by ID for ems spec test Parse models of > 3 namespaces Make ContainerLogger respond to #instrument Call request_owner_email method to handle getting email for Services and VM provisions. Removed to_s from get_option(:owner_email) to cause an error if email is nil. Remove commented tests Added "Mass Transform" feature Return only CloudVolume types which really exists in DB Mark task as active while destroying an ems Extract queue message delivery into helper method Create a task when destroying an ems Stop cashing @column_cache and @model_relats for ChargebackVm Remove Dictionary.gettext() with static string argument Remove ui_lookup() with static string argument Use UUID to ensure the uniqueness of job template name Procfile.example - add workers needed for embedded ansible Calculate Metering Used Hours only from used hours add :container_quota_scope factory Change worker validation to check USS not PSS Show USS instead of PSS in rake evm:status Also log the server/worker unique set size (USS) ...
Checked commits evertmulder/manageiq@7220cc2~...e72185c with ruby 2.3.3, rubocop 0.47.1, haml-lint 0.20.0, and yamllint 1.10.0 |
@@ -32,6 +32,7 @@ def self.get_description(req_obj) | |||
new_settings << "Total Processors: #{req_obj.options[:number_of_cpus].to_i}" unless req_obj.options[:number_of_cpus].blank? | |||
new_settings << "Add Disks: #{req_obj.options[:disk_add].length}" unless req_obj.options[:disk_add].blank? | |||
new_settings << "Remove Disks: #{req_obj.options[:disk_remove].length}" unless req_obj.options[:disk_remove].blank? | |||
new_settings << "Resize Disks: #{req_obj.options[:disk_resize].length}" unless req_obj.options[:disk_resize].blank? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@tinaafitz This will require quota changes to fully support. We should open RFE to track.
Hi @gmcculloug, there is a PR that depends on this one and we need to backport it to GA branch: ManageIQ/manageiq-providers-vmware#231 Is it safe to backport this one as well/are there any related PRs? /cc @simaishi |
Yes, this is safe to backport. This PR is referenced from ManageIQ/manageiq-providers-vmware#164 so that is likely required as well. |
.. and as per ManageIQ/manageiq-ui-classic#3127, I think we also need ManageIQ/manageiq-ui-classic#3128 |
Resize disk reconfigure screen (cherry picked from commit 9134e2a)
Gaprindashvili backport details:
|
On of the PRs to support resize disks from the reconfigure screen:
See: ManageIQ/manageiq-ui-classic#3127