search for: pool_controller

Displaying 11 results from an estimated 11 matches for "pool_controller".

2009 May 22
1
[PATCH server] fixed smart pool 'save' regression.
...ecent refactoring didn't work properly for new smart pools, so I've cleaned jup the parameter handling for the various pool 'create' actions. Signed-off-by: Scott Seago <sseago at redhat.com> --- src/app/controllers/hardware_controller.rb | 5 +---- src/app/controllers/pool_controller.rb | 6 ++++-- src/app/controllers/resources_controller.rb | 6 ------ src/app/services/hardware_pool_service.rb | 4 ++-- src/app/services/smart_pool_service.rb | 4 ++-- src/app/services/vm_resource_pool_service.rb | 4 ++-- 6 files changed, 11 insertions(+), 18 del...
2010 Feb 25
2
[PATCH] Enhance vms display
...efully those new fields. It has been made at the expense of UUID, Total Run Time & Load fields. Since those fields are often better displayed from a monitoring software, I have though it was acceptable. Signed-off-by: Loiseleur Michel <mloiseleur at linagora.com> --- src/app/controllers/pool_controller.rb | 6 ++-- src/app/views/vm/_form.rhtml | 10 ++++++-- src/app/views/vm/_grid.rhtml | 9 ++++--- src/db/migrate/044_add_vm_fields.rb | 34 ++++++++++++++++++++++++++++++++ 4 files changed, 49 insertions(+), 10 deletions(-) create mode 100644 src/db/migrate/044_ad...
2009 Jul 02
1
[PATCH server] UI for accumulated uptime for VMs. (revised)
This revised version of the patch incorporates jguidditta's sorting fix as well as some other changes required to make this work fully on the cloud UI side. --- src/app/controllers/pool_controller.rb | 2 +- src/app/controllers/resources_controller.rb | 4 +++- src/app/controllers/smart_pools_controller.rb | 5 ++--- src/app/helpers/application_helper.rb | 14 ++++++++++++++ src/app/models/vm.rb | 11 ++++++++++- src/app/views/cloud/inst...
2009 Jul 06
2
[PATCH server] UI for accumulated uptime for VMs. (revised3)
This revised version of the patch incorporates jguiditta's sorting fix as well as some other changes required to make this work fully on the cloud UI side. --- src/app/controllers/pool_controller.rb | 2 +- src/app/controllers/resources_controller.rb | 4 +++- src/app/controllers/smart_pools_controller.rb | 7 +++---- src/app/helpers/application_helper.rb | 14 ++++++++++++++ src/app/models/vm.rb | 11 ++++++++++- src/app/views/cloud/in...
2009 Jun 29
3
[PATCH server] UI for accumulated uptime for VMs.
There's still a problem with this working on the cloud side, but that can be resolved in a subsequent commit. --- src/app/controllers/pool_controller.rb | 2 +- src/app/controllers/resources_controller.rb | 7 ++++++- src/app/controllers/smart_pools_controller.rb | 5 ++--- src/app/helpers/application_helper.rb | 14 ++++++++++++++ src/app/models/vm.rb | 5 +++++ src/app/views/cloud/instanc...
2009 Jul 06
0
[PATCH server] UI for accumulated uptime for VMs. (revised2)
This revised version of the patch incorporates jguiditta's sorting fix as well as some other changes required to make this work fully on the cloud UI side. --- src/app/controllers/pool_controller.rb | 2 +- src/app/controllers/resources_controller.rb | 4 +++- src/app/controllers/smart_pools_controller.rb | 7 +++---- src/app/helpers/application_helper.rb | 14 ++++++++++++++ src/app/models/vm.rb | 11 ++++++++++- src/app/views/cloud/in...
2009 Sep 08
1
[PATCH server] fix live migration
...rtions(+), 1 deletions(-) diff --git a/src/app/views/host/_grid.rhtml b/src/app/views/host/_grid.rhtml index 663a55d..698dc95 100644 --- a/src/app/views/host/_grid.rhtml +++ b/src/app/views/host/_grid.rhtml @@ -1,7 +1,7 @@ <%= render :partial => 'graph/load_graph.rhtml' %> <% pool_controller = 'hardware' unless (defined? pool_controller) and !(pool_controller.nil?) %> -<% hosts_per_page.nil? ? hosts_per_page = 40: hosts_per_page = hosts_per_page %> +<% hosts_per_page = 40 if !defined?(hosts_per_page) or hosts_per_page.nil? %> <% if (hwpool.nil? or (...
2009 May 15
0
[PATCH server] final cleanup for service layer refactoring.
...-- src/app/controllers/host_controller.rb | 55 -------------------- src/app/controllers/network_controller.rb | 9 --- src/app/controllers/nic_controller.rb | 28 ---------- src/app/controllers/permission_controller.rb | 7 --- src/app/controllers/pool_controller.rb | 7 --- src/app/controllers/quota_controller.rb | 8 --- src/app/controllers/smart_pools_controller.rb | 2 +- src/app/controllers/storage_controller.rb | 8 --- src/app/controllers/storage_volume_controller.rb | 8 --- src/app/controllers/v...
2009 Jul 24
1
permit many-to-many vms / networks relationship redux
redux patchset permitting a vm to be associated with multiple networks and vice-versa. updated patchset so as to be applicable against current oVirt server HEAD these patches may be applied in any order, they all need to be pushed together
2009 Jul 09
2
permit many-to-many vms / networks relationship
This patchset contains changes to the ovirt server frontend, backend, and tests components, permitting vms to be associated with multiple networks and vice versa. Also included are two patches which are required for the frontend bits; a patch adding collapsable sections to the vm form, which in itself depends on the second patch that provides default values for the cpu and memory vm table fields
2009 Jun 30
0
[PATCH server] permit many-to-many vms / networks relationship
...sts additions - various fixes / cleanup to get things working depends on my last two (still unacked) patches: - add collapsable sections to vm form - provide default vm allocated cpu and memory values ovirt-agent might need to be updated to work with the changes --- src/app/controllers/pool_controller.rb | 2 +- src/app/controllers/vm_controller.rb | 54 ++++++- src/app/helpers/application_helper.rb | 4 +- src/app/models/network.rb | 2 - src/app/models/nic.rb | 54 +++++-- src/app/models/vlan.rb...