Re: query about 4.4 usage

2015-02-15 Thread Daan Hoogland
Thanks Antoine, Loic, would be good to share fixes. We had some problems with 4.4 ourselves so probably there is some doubles here. If you could, please do a merge and a pull request against apache/4.4...? thanks On Sat, Feb 14, 2015 at 8:32 PM, Antoine Coetsier antoine.coets...@exoscale.ch

Re: Cloudmonkey question

2015-02-15 Thread Mike Tutkowski
I believe you'd need to write a script to invoke CloudMonkey to execute the list command and then parse the results of the command (keeping only what you're interested in). On Sunday, February 15, 2015, Andrei Mikhailovsky and...@arhont.com wrote: Hello guys, I have a silly question; can't

Re: Cloudmonkey question

2015-02-15 Thread Ian Duffy
Assuming I'm reading and understanding the API docs correctly at http://cloudstack.apache.org/docs/api/apidocs-4.1/root_admin/listVolumes.html list volumes tags=remote_backup should list everything with the tag remote_backup On 15 February 2015 at 23:50, Mike Tutkowski

Re: Ans: About Instance Storage Live Migration on VMware

2015-02-15 Thread ilya musayev
Star, There is an API call MigrateVirtualMachineWithVolume, http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/migrateVirtualMachineWithVolume.html It only works over NFS, Citrix promised to add support for VMFS in the near future. Regards ilya On 2/13/15 4:15 AM, Erik Weber

Ans: About Instance Storage Live Migration on VMware

2015-02-15 Thread Star Guo
Hi, Erik I use cloudmonkey, and get help migrate virtualmachine:  help migrate virtualmachine (migrateVirtualMachine) Attempts Migration of a VM to a different host or Root volume of the vm to a different storage pool This API is asynchronous. Required params are virtualmachineid Parameters

Cloudmonkey question

2015-02-15 Thread Andrei Mikhailovsky
Hello guys, I have a silly question; can't really find an answer by googling. How do I use tags when I want to query something. For instance, if I want to query volumes using list volumes command. If i would like to get only the results containing a certain tag, like a tag with key

Re: Review Request 30821: CLOUDSTACK-8236: Automation test cases for storage migration test path

2015-02-15 Thread Ashutosh Kelkar
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/30821/ --- (Updated Feb. 16, 2015, 4:34 a.m.) Review request for cloudstack and

Re: Query on snapshot and cloning for managed storage

2015-02-15 Thread Mike Tutkowski
I would recommend you take a look at a bunch of my most recent 4.6 commits. On Sunday, February 15, 2015, Mike Tutkowski mike.tutkow...@solidfire.com wrote: I am working on creating the necessary infrastructure to support managed snapshots on XenServer and ESXi in 4.6 (for block storage, that

Re: Query on snapshot and cloning for managed storage

2015-02-15 Thread Mike Tutkowski
I am working on creating the necessary infrastructure to support managed snapshots on XenServer and ESXi in 4.6 (for block storage, that is). For example, with XenServer, you cannot simply take a backend snapshot of the LUN that contains the SR and VDI. Technically you can, however, you would

Re: Review Request 25885: CLOUDSTACK-7594: Adding automation test cases for Stopped VM test path

2015-02-15 Thread Ashutosh Kelkar
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/25885/#review72574 --- As discussed, removed the code snippet, and all the test cases are

Re: Query on snapshot and cloning for managed storage

2015-02-15 Thread Punith S
thanks for the info mike.i'll go through your commits of 4.6. the updated plugin i pushed for 4.5 used to only take backend storage snapshot in cloudbyte. but when i'm trying to create a volume out of that snapshot it is going to motion service where it is trying to copy the vmfs or vmdk file but

Re: Query on snapshot and cloning for managed storage

2015-02-15 Thread Mike Tutkowski
I think it might be easier if you examine my plug-in along with two new classes: StorageSystemSnapshotStrategy StorageSystemDataMotionStrategy Those last two classes are intended for managed storage in general (i.e. they are not SolidFire specific). That code currently only handles XenServer.

Re: Query on snapshot and cloning for managed storage

2015-02-15 Thread Punith S
thanks mike, i'll go through the classes and i'll try to test it on a master(4.6) setup for the better understanding. On Mon, Feb 16, 2015 at 11:57 AM, Mike Tutkowski mike.tutkow...@solidfire.com wrote: I think it might be easier if you examine my plug-in along with two new classes:

Re: Review Request 30611: Before throwing exception for iso download try one more time

2015-02-15 Thread sanjeev n
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/30611/ --- (Updated Feb. 16, 2015, 6:47 a.m.) Review request for cloudstack and

Re: Review Request 19195: Automation of CCP Objects Verification after external changes made to the original setup

2015-02-15 Thread SrikanteswaraRao Talluri
On Feb. 13, 2015, 6:42 a.m., SrikanteswaraRao Talluri wrote: pushed to master 7461297f3e17b431643e7a8c575e799d0e151261 reverted this from master as this is not tested and causing other tests to fail. Please resubmit a fresh patch for master. - SrikanteswaraRao

Review Request 31078: CLOUDSTACK-8257: test_escalations_volume.py - Removing asserts on volumes names as they don't hold true when random cha racters are appended to the volume name before creation

2015-02-15 Thread Gaurav Aradhye
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/31078/ --- Review request for cloudstack, sanjeev n and SrikanteswaraRao Talluri. Bugs:

Re: Review Request 25885: CLOUDSTACK-7594: Adding automation test cases for Stopped VM test path

2015-02-15 Thread Ashutosh Kelkar
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/25885/ --- (Updated Feb. 16, 2015, 5:16 a.m.) Review request for cloudstack, suresh sadhu

Re: Review Request 25885: CLOUDSTACK-7594: Adding automation test cases for Stopped VM test path

2015-02-15 Thread Ashutosh Kelkar
On Feb. 4, 2015, 10:48 a.m., suresh sadhu wrote: you didn't remove the below code... as its not required in test03 -- here vm deployed in stopped state.. if str(self.zone.networktype).lower() == advanced: response = VerifyRouterState(

Re: Cloudmonkey question

2015-02-15 Thread Mike Tutkowski
Yeah, that's true - it does look like that should work. On Sunday, February 15, 2015, Ian Duffy i...@ianduffy.ie wrote: Assuming I'm reading and understanding the API docs correctly at http://cloudstack.apache.org/docs/api/apidocs-4.1/root_admin/listVolumes.html list volumes

Query on snapshot and cloning for managed storage

2015-02-15 Thread Punith S
Hi Stackers, I have been testing out the cloudstack 4.5 RC on vmware setup with Cloudbyte as a storage backend for supporting managed storage, while taking a snapshot of a data disk i'm only taking the snapshot from the storage side only, but on cloning the snapshot of the volume is it enough to