Displaying 7 results from an estimated 7 matches for "vm_provision".
2010 Sep 09
1
Provisioning Windows
How do I go about provisioning a windows VM? I've added the iso to
cobbler using the following command.
cobbler image add --name=W2k8Prov --file=nfs://192.168.50.190/ovirt/w2k8.iso
The image then appears in the list of Operating Systems to choose when
creating a VM. I select the image when I create the VM but then when I
go to save I get the error:
undefined method `keys' for
2009 Aug 21
0
Unable to assign cobbler image as boot device
...nd):
/usr/lib/ruby/1.8/xmlrpc/client.rb:549:in `do_rpc'
/usr/lib/ruby/1.8/xmlrpc/client.rb:420:in `call2'
/usr/lib/ruby/1.8/xmlrpc/client.rb:410:in `call'
cobbler (0.1.3) lib/cobbler/base.rb:127:in `make_call'
(eval):4:in `find_one'
app/services/vm_service.rb:291:in `vm_provision'
app/services/vm_service.rb:164:in `svc_update'
app/services/vm_service.rb:159:in `svc_update'
app/controllers/vm_controller.rb:81:in `update'
The image is an iso on an nfs mount set up using the cobbler gui.
Cheers,
Justin.
2009 May 19
1
re-sending outstanding controller refactoring patches after rebase
I've rebased the patch series to the current next branch and am sending them again.
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 May 15
0
[PATCH server] final cleanup for service layer refactoring.
...+id+
+ # === Required permissions
+ # [<tt>Privilege::MODIFY</tt>] for the Vm's HardwarePool
+ def svc_get_for_migrate(id)
+ @vm = Vm.find(id)
+ @current_pool_id=@vm.vm_resource_pool.id
+ authorized!(Privilege::MODIFY, @vm.get_hardware_pool)
+ end
+
protected
def vm_provision
if @vm.uses_cobbler?
diff --git a/src/app/views/host/addhost.html.erb b/src/app/views/hardware/addhost.rhtml
similarity index 76%
rename from src/app/views/host/addhost.html.erb
rename to src/app/views/hardware/addhost.rhtml
index 967643e..7279731 100644
--- a/src/app/views/host/addhost.html.e...
2009 Jun 30
0
[PATCH server] permit many-to-many vms / networks relationship
...new(vm_hash)
authorized!(Privilege::MODIFY, at vm.vm_resource_pool)
@@ -103,6 +103,10 @@ module VmService
alert = "VM was successfully created."
Vm.transaction do
@vm.save!
+ nics.each{ |nic|
+ nic[:vm_id] = @vm.id
+ Nic.create(nic)
+ }
vm_provision
@task = VmTask.new({ :user => @user,
:task_target => @vm,
@@ -129,7 +133,7 @@ module VmService
# [<tt>@vm</tt>] stores the Vm with +id+
# === Required permissions
# [<tt>Privilege::MODIFY</tt>] for the Vm's VmResou...