Re: Managed storage with KVM

2013-09-13 Thread Mike Tutkowski
Yeah, I remember that StorageProcessor stuff being put in the codebase and having to merge my code into it in 4.2. Thanks for all the details, Marcus! :) I can start digging into what you were talking about now. On Sat, Sep 14, 2013 at 12:02 AM, Marcus Sorensen wrote: > Looks like things might

Re: Managed storage with KVM

2013-09-13 Thread Marcus Sorensen
It looks like this KVMStorageProcessor is meant to handle StorageSubSystemCommand commands. Probably to handle the new storage framework for things that are now triggered via the mgmt server's storage stuff. On Sat, Sep 14, 2013 at 12:02 AM, Marcus Sorensen wrote: > Looks like things might be sli

Re: Managed storage with KVM

2013-09-13 Thread Marcus Sorensen
Looks like things might be slightly different now in 4.2, with KVMStorageProcessor.java in the mix.This looks more or less like some of the commands were ripped out verbatim from LibvirtComputingResource and placed here, so in general what I've said is probably still true, just that the location of

Re: Managed storage with KVM

2013-09-13 Thread Marcus Sorensen
Ok, KVM will be close to that, of course, because only the hypervisor classes differ, the rest is all mgmt server. Creating a volume is just a db entry until it's deployed for the first time. AttachVolumeCommand on the agent side (LibvirtStorageAdaptor.java is analogous to CitrixResourceBase.java)

Re: Managed storage with KVM

2013-09-13 Thread Mike Tutkowski
OK, yeah, the ACL part will be interesting. That is a bit different from how it works with XenServer and VMware. Just to give you an idea how it works in 4.2 with XenServer: * The user creates a CS volume (this is just recorded in the cloud.volumes table). * The user attaches the volume as a dis

RE: [Proposal] Userdata Support for Hyper-V with KVP Data Exchange

2013-09-13 Thread Rajesh Battala
Yes, this KVP is for hyperv systemvm like the systemvm on xenserver they show up in /proc/cmdline. The boot args will be passed from hyperv to systemvm using this KVP and then they will be read from the cloud-early-config and then configure the systemvm. Thanks Rajesh Battala -Original Mess

Re: Managed storage with KVM

2013-09-13 Thread Marcus Sorensen
Perfect. You'll have a domain def ( the VM), a disk def, and the attach the disk def to the vm. You may need to do your own StorageAdaptor and run iscsiadm commands to accomplish that, depending on how the libvirt iscsi works. My impression is that a 1:1:1 pool/lun/volume isn't how it works on xen

Re: Managed storage with KVM

2013-09-13 Thread Mike Tutkowski
Yeah, that would be ideal. So, I would still need to discover the iSCSI target, log in to it, then figure out what /dev/sdX was created as a result (and leave it as is - do not format it with any file system...clustered or not). I would pass that device into the VM. Kind of accurate? On Fri, Se

Re: Managed storage with KVM

2013-09-13 Thread Marcus Sorensen
If you wire up the block device you won't have to require users to manage a clustered filesystem or lvm, and all of the work in maintaining those clustered services and quorum management, cloudstack will ensure only one vm is using the disks at any given time and where. It would be cake compared to

Re: Managed storage with KVM

2013-09-13 Thread Marcus Sorensen
Look in LibvirtVMDef.java (I think) for the disk definitions. There are ones that work for block devices rather than files. You can piggy back off of the existing disk definitions and attach it to the vm as a block device. The definition is an XML string per libvirt XML format. You may want to use

Re: Managed storage with KVM

2013-09-13 Thread Mike Tutkowski
Yeah, I think it would be nice if it supported Live Migration. That's kind of why I was initially leaning toward SharedMountPoint and just doing the work ahead of time to get things in a state where the current code could run with it. On Fri, Sep 13, 2013 at 8:00 PM, Marcus Sorensen wrote: > No

Re: Managed storage with KVM

2013-09-13 Thread Marcus Sorensen
No, as that would rely on virtualized network/iscsi initiator inside the vm, which also sucks. I mean attach /dev/sdx (your lun on hypervisor) as a disk to the VM, rather than attaching some image file that resides on a filesystem, mounted on the host, living on a target. Actually, if you plan on

Re: Managed storage with KVM

2013-09-13 Thread Mike Tutkowski
When you say, "wire up the lun directly to the vm," do you mean circumventing the hypervisor? I didn't think we could do that in CS. OpenStack, on the other hand, always circumvents the hypervisor, as far as I know. On Fri, Sep 13, 2013 at 7:40 PM, Marcus Sorensen wrote: > Better to wire up the

Re: Managed storage with KVM

2013-09-13 Thread Marcus Sorensen
Better to wire up the lun directly to the vm unless there is a good reason not to. On Sep 13, 2013 7:40 PM, "Marcus Sorensen" wrote: > You could do that, but as mentioned I think its a mistake to go to the > trouble of creating a 1:1 mapping of CS volumes to luns and then putting a > filesystem o

Re: Managed storage with KVM

2013-09-13 Thread Marcus Sorensen
You could do that, but as mentioned I think its a mistake to go to the trouble of creating a 1:1 mapping of CS volumes to luns and then putting a filesystem on it, mounting it, and then putting a QCOW2 or even RAW disk image on that filesystem. You'll lose a lot of iops along the way, and have more

Re: Managed storage with KVM

2013-09-13 Thread Marcus Sorensen
This would require that they put a clustered filesystem on the lun, right? Seems like it would be better for them to use CLVM and make a volume group from the luns, I'll bet some of your customers are doing that unless they are explicitly instructed otherwise, that's how others are doing iscsi or f

Re: Managed storage with KVM

2013-09-13 Thread Mike Tutkowski
Ah, OK, I didn't know that was such new ground in KVM with CS. So, the way people use our SAN with KVM and CS today is by selecting SharedMountPoint and specifying the location of the share. They can set up their share using Open iSCSI by discovering their iSCSI target, logging in to it, then mou

Re: Managed storage with KVM

2013-09-13 Thread Marcus Sorensen
Oh, hypervisor snapshots are a bit different. I need to catch up on the work done in KVM, but this is basically just disk snapshots + memory dump. I still think disk snapshots would preferably be handled by the SAN, and then memory dumps can go to secondary storage or something else. This is relati

Re: Managed storage with KVM

2013-09-13 Thread Marcus Sorensen
Let me back up and say I don't think you'd use a vdi style on an iscsi lun. I think you'd want to treat it as a RAW format. Otherwise you're putting a filesystem on your lun, mounting it, creating a QCOW2 disk image, and that seems unnecessary and a performance killer. So probably attaching the ra

Re: Managed storage with KVM

2013-09-13 Thread Marcus Sorensen
Ideally volume snapshots can be handled by the SAN back end, if the SAN supports it. The cloudstack mgmt server could call your plugin for volume snapshot and it would be hypervisor agnostic. As far as space, that would depend on how your SAN handles it. With ours, we carve out luns from a pool, an

Re: Build server was down?

2013-09-13 Thread Gavin Lee
Thanks both! On Sat, Sep 14, 2013 at 1:11 AM, Marty Sweet wrote: > Hi, > > This is due to DNS issues with cloudstack.org. We will continue to discuss > this matter in the subject 'www.cloudstack.org not resolving'. > > Thanks, > Marty > > > > On Fri, Sep 13, 2013 at 6:03 PM, Chip Childers >wro

Re: Managed storage with KVM

2013-09-13 Thread Mike Tutkowski
Hey Marcus, I wonder if the iSCSI storage pool type for libvirt won't work when you take into consideration hypervisor snapshots? On XenServer, when you take a hypervisor snapshot, the VDI for the snapshot is placed on the same storage repository as the volume is on. Same idea for VMware, I beli

Re: ConfigDepot and null values and defaults

2013-09-13 Thread Darren Shepherd
Honestly, doesn't really matter that much. Just as long as I understand the intended behavior. Darren On Sep 13, 2013, at 5:41 PM, Darren Shepherd wrote: > Alex, > > Here's my general problem. I like to make just about everything > configurable, but the reality is that only about 5% of se

Re: Apache CloudStack 4.2.0 (fifth round)

2013-09-13 Thread Hugo Trippaers
+1 (binding) Tested: Nicira NVP plugin with XenServer Nicira NVP plugin with VMWare VPC with other service providers (NiciraNVP) Cheers, Hugo Sent from my iPhone On 14 sep. 2013, at 08:17, Vijayendra Bhamidipati wrote: > +1 > > > -Original Message- > From: Animesh Chaturvedi [mail

Re: ConfigDepot and null values and defaults

2013-09-13 Thread Darren Shepherd
Alex, Here's my general problem. I like to make just about everything configurable, but the reality is that only about 5% of setting will ever matter to people. So these are really internal flags to tweak things. So for stuff like that I don't want the first ever default I chose to be saved

RE: Apache CloudStack 4.2.0 (fifth round)

2013-09-13 Thread Vijayendra Bhamidipati
+1 -Original Message- From: Animesh Chaturvedi [mailto:animesh.chaturv...@citrix.com] Sent: Friday, September 13, 2013 4:13 PM To: dev@cloudstack.apache.org Subject: Apache CloudStack 4.2.0 (fifth round) I've created a 4.2.0 release, with the following artifacts up for a vote: Git Bra

Re: Managed storage with KVM

2013-09-13 Thread Marcus Sorensen
Take a look at this: http://libvirt.org/storage.html#StorageBackendISCSI "Volumes must be pre-allocated on the iSCSI server, and cannot be created via the libvirt APIs.", which I believe your plugin will take care of. Libvirt just does the work of logging in and hooking it up to the VM (I believe

Re: Managed storage with KVM

2013-09-13 Thread Mike Tutkowski
So, Marcus, I need to investigate libvirt more, but you figure it supports connecting to/disconnecting from iSCSI targets, right? On Fri, Sep 13, 2013 at 5:29 PM, Mike Tutkowski < mike.tutkow...@solidfire.com> wrote: > OK, thanks, Marcus > > I am currently looking through some of the classes you

Re: Managed storage with KVM

2013-09-13 Thread Mike Tutkowski
OK, thanks, Marcus I am currently looking through some of the classes you pointed out last week or so. On Fri, Sep 13, 2013 at 5:26 PM, Marcus Sorensen wrote: > Yes, my guess is that you will need the iscsi initiator utilities > installed. There should be standard packages for any distro. Then

Re: Apache CloudStack 4.2.0 (fifth round)

2013-09-13 Thread Sheng Yang
+1. --Sheng On Fri, Sep 13, 2013 at 4:12 PM, Animesh Chaturvedi < animesh.chaturv...@citrix.com> wrote: > > I've created a 4.2.0 release, with the following artifacts up for a vote: > > Git Branch and Commit SH: > > https://git-wip-us.apache.org/repos/asf?p=cloudstack.git;a=shortlog;h=refs/head

Re: Managed storage with KVM

2013-09-13 Thread Marcus Sorensen
Yes, my guess is that you will need the iscsi initiator utilities installed. There should be standard packages for any distro. Then you'd call an agent storage adaptor to do the initiator login. See the info I sent previously about LibvirtStorageAdaptor.java and libvirt iscsi storage type to see if

Re: DhcpServiceProvider

2013-09-13 Thread Sheng Yang
In the original implementation, the new dhcp entry would automatically override the old one, so the old entry hasn't been removed explicitly. But still, it would be better to get it done explicitly of course. --Sheng On Fri, Sep 13, 2013 at 1:20 PM, Chiradeep Vittal < chiradeep.vit...@citrix.co

Apache CloudStack 4.2.0 (fifth round)

2013-09-13 Thread Animesh Chaturvedi
I've created a 4.2.0 release, with the following artifacts up for a vote: Git Branch and Commit SH: https://git-wip-us.apache.org/repos/asf?p=cloudstack.git;a=shortlog;h=refs/heads/4.2 Commit: c1e24ff89f6d14d6ae74d12dbca108c35449030f List of changes: https://git-wip-us.apache.org/repos/asf?p=c

Managed storage with KVM

2013-09-13 Thread Mike Tutkowski
Hi, As you may remember, during the 4.2 release I developed a SolidFire (storage) plug-in for CloudStack. This plug-in was invoked by the storage framework at the necessary times so that I could dynamically create and delete volumes on the SolidFire SAN (among other activities). This is necessar

Adding Domain name to the .header style

2013-09-13 Thread al bell
Is there a list of variables that can be added to the .header style ? As we have a deployment with multiple domains and subdomains, it will be very useful to add this in the header, to the left of the user name. Thanks

[VOTE] Apache CloudStack CloudMonkey 5.0.0 (first round)

2013-09-13 Thread Chip Childers
I've created a 5.0.0 release of cloudmonkey, with the following artifacts up for a vote: Git Branch and Commit SH: https://git-wip-us.apache.org/repos/asf?p=cloudstack-cloudmonkey.git;a=shortlog;h=refs/heads/5.0 Commit: 767bfbe084e24d441f1ad73ace183c09f26a276b List of changes: https://git-wip-us.

RE: [Proposal] Userdata Support for Hyper-V with KVP Data Exchange

2013-09-13 Thread Donal Lafferty
Yep. I'll recirculate the proposal next week. DL > -Original Message- > From: Chiradeep Vittal [mailto:chiradeep.vit...@citrix.com] > Sent: 13 September 2013 21:16 > To: dev@cloudstack.apache.org > Subject: Re: [Proposal] Userdata Support for Hyper-V with KVP Data > Exchange > > I belie

RE: Advanced Networking Public Network Service Providers

2013-09-13 Thread Soheil Eizadi
The main use case is providing DNS for the Public Network, but could also provide DHCP and IP Address Management once we work out the Interface for making External IPAM authoritative for CloudStack. Yes agree, much of the discussion on the thread you attached applies here also, is it more compl

Re: security around api.log

2013-09-13 Thread Ian Duffy
> I haven't tried it yet, but can't I use that info to hijack the session? You can... Create a cookie: (please excuse the full stops as spaces, didn't trust it to render correctly) Key... Value JSESSIONID 7asvmtwoesbc6ia3e4kxtzrl sessionKey .

Re: win7+cygwin+cloudstack having a problem

2013-09-13 Thread Punith s
are you using a devcloud or a production evironment ?? regards, punith s cloudbyte On Fri, Sep 13, 2013 at 7:08 AM, 黑洞 wrote: > I am according to the github cloudstack source code for INSTANL.md > 1、cygwin is goode > 2、database is goode > 3、mvn -pl :cloud-client-ui jetty:run > exception detai

Error in start MS in master

2013-09-13 Thread Min Chen
Hi there, Did anybody experience any issues in starting MS in latest master? I ran into the following issue: org.springframework.beans.factory.BeanCreationException: Could not autowire field: org.apache.cloudstack.framework.config.dao.ConfigurationDao org.apache.cloudstack.framework.config.imp

Re: Q's about UserAuthenticators and getName()

2013-09-13 Thread Darren Shepherd
On 09/12/2013 10:56 PM, Ian Duffy wrote: So my problem is that LDAP currently has a null name on getName(). So which should I do? Add Go ahead and add it. I missed that override in error. Okay I created https://reviews.apache.org/r/14126/ Darren

Re: DhcpServiceProvider

2013-09-13 Thread Chiradeep Vittal
Soheil, agree that it needs to moved to NetworkElement and also needs complementary remove() It seems half-thought-out. On 9/13/13 11:31 AM, "Soheil Eizadi" wrote: >Posting my questions again... -Soheil > >From: Soheil Eizadi [seiz...@infoblox.com] >Sent:

RE: what wrong? start cloudstack

2013-09-13 Thread Donal Lafferty
(Apologies if this was sent twice, I am having trouble responding to the message)... I sense a build problem, Let me explain: Bean definitions cross reference .class files, e.g. Administrator@cc-svr10 ~/github/cifs $ grep -R iciraNvpDaoImpl * --include=*.xml.in cloudstack/client/tomcatconf/com

RE: win7+cygwin+cloudstack having a problem

2013-09-13 Thread Donal Lafferty
(Apologies if this was sent twice, I am having trouble responding to the message)... I sense a build problem, Let me explain: Bean definitions cross reference .class files, e.g. Administrator@cc-svr10 ~/github/cifs $ grep -R iciraNvpDaoImpl * --include=*.xml.in cloudstack/client/tomcatconf/com

Re: [Proposal] Userdata Support for Hyper-V with KVP Data Exchange

2013-09-13 Thread Chiradeep Vittal
I believe DL is actually referring to boot args, not user/metadata On 9/13/13 12:41 PM, "Darren Shepherd" wrote: >On 09/13/2013 11:56 AM, Donal Lafferty wrote: > >> Ah, okay, so you're talking about this: >>http://cloudstack.apache.org/docs/en-US/Apache_CloudStack/4.1.1/html/Admi >>n_Guide/user-

security around api.log

2013-09-13 Thread Darren Shepherd
I just noticed api.log which seems to log all the API access in a form like 2013-09-13 00:02:09,451 INFO [a.c.c.a.ApiServer] (2011638958@qtp-657397168-0:ctx-81b1e088 ctx-174e4a62) (userId=2 accountId=2 sessionId=7asvmtwoesbc6ia3e4kxtzrl) 127.0.0.1 -- GET command=listZones&response=json&sessio

Re: Advanced Networking Public Network Service Providers

2013-09-13 Thread Chiradeep Vittal
What services would you provide on the public network? I see a similar discussion here: http://goo.gl/eESveL On 9/13/13 11:35 AM, "Soheil Eizadi" wrote: >In the Advanced Networking use cases you have two physical networks >(Public and Guest Networks). What is the reason for the GUI not providing

RE: ConfigDepot and null values and defaults

2013-09-13 Thread Alex Huang
> -Original Message- > From: Darren Shepherd [mailto:darren.s.sheph...@gmail.com] > Sent: Friday, September 13, 2013 1:10 AM > To: dev@cloudstack.apache.org; Alex Huang > Subject: ConfigDepot and null values and defaults > > If you have a configuration that the value is null and not dyna

Build server was down?

2013-09-13 Thread Gavin Lee
Seems http://jenkins.cloudstack.org/ could not be accessed all day. Will someone look on this? -- Gavin

RE: [Proposal] Userdata Support for Hyper-V with KVP Data Exchange

2013-09-13 Thread Donal Lafferty
> -Original Message- > From: Darren Shepherd [mailto:darren.s.sheph...@gmail.com] > Sent: 13 September 2013 18:35 > To: dev@cloudstack.apache.org > Subject: Re: [Proposal] Userdata Support for Hyper-V with KVP Data > Exchange > > On 09/13/2013 10:25 AM, Rajesh Battala wrote: > > > > To bri

Re: www.cloudstack.org not resolving

2013-09-13 Thread Mathias Mullins
David, Who do we need to reach out too? We are in day 3 of outage now? Matt On 9/11/13 9:58 PM, "David Nalley" wrote: >The ASF has taken charge of the domains, but I suspect DNS is lagging a >bit. > >--David > >On Wed, Sep 11, 2013 at 9:03 PM, Mathias Mullins > wrote: >> Cloudstack.org isn'

ConfigDepot initialization

2013-09-13 Thread Darren Shepherd
ConfigDepot(Admin) really needs to be initialized fully before anything else really. I can move things around to get that to work almost. The problem is with populateConfigurations(). That gets called twice. Once in ConfigurationServerImpl.configure() and ConfigurationServerImpl.persistDefa

Re: [Proposal] Userdata Support for Hyper-V with KVP Data Exchange

2013-09-13 Thread Darren Shepherd
On 09/13/2013 11:56 AM, Donal Lafferty wrote: Ah, okay, so you're talking about this: http://cloudstack.apache.org/docs/en-US/Apache_CloudStack/4.1.1/html/Admin_Guide/user-data-and-meta-data.html Okay, that leads me back to my original question. Why is that hypervisor specific? That data

VirtualRouter MAC address NULL

2013-09-13 Thread Soheil Eizadi
I have not come across this when testing Basic Networking on 4.2, but on 4.3/master with Advanced Networking I have a call to create the Virtual Router with Mac Address is NULL on call to prepare(). Is this normal? -Soheil 2013-09-13 11:14:22,684 INFO [o.a.c.n.e.InfobloxElement] (Job-Executor-

Re: Build server was down?

2013-09-13 Thread Chip Childers
Use Jenkins.buildacloud.org Sent from my iPhone On Sep 13, 2013, at 12:08 PM, Gavin Lee wrote: > Seems http://jenkins.cloudstack.org/ could not be accessed all day. > Will someone look on this? > > -- > Gavin

RE: [Proposal] Userdata Support for Hyper-V with KVP Data Exchange

2013-09-13 Thread Donal Lafferty
> -Original Message- > From: Darren Shepherd [mailto:darren.s.sheph...@gmail.com] > Sent: 13 September 2013 17:40 > To: dev@cloudstack.apache.org > Subject: Re: [Proposal] Userdata Support for Hyper-V with KVP Data > Exchange > > On 09/13/2013 08:51 AM, Donal Lafferty wrote: > > IIRC, Op

Re: www.cloudstack.org not resolving

2013-09-13 Thread Tracy Phillips
Matt, Probably the contact listed in the whois Domain ID:D150572512-LROR Domain Name:CLOUDSTACK.ORG Created On:07-Jan-2008 15:12:00 UTC Last Updated On:12-Sep-2013 11:24:54 UTC Expiration Date:07-Jan-2018 15:12:00 UTC Sponsoring Registrar:Domain.com, LLC (R1915-LROR) Status:TRANSFER PROHIBITED St

Re: Review Request 14084: Updates to @ActionEvent to be compatible with Spring AOP

2013-09-13 Thread Kelven Yang
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/14084/#review26086 --- Ship it! - Kelven Yang On Sept. 11, 2013, 5:07 p.m., Darren Sheph

Re: run cloustack have a exeception

2013-09-13 Thread Wei ZHOU
你的运行环境是什么?

RE: DhcpServiceProvider

2013-09-13 Thread Soheil Eizadi
Posting my questions again... -Soheil From: Soheil Eizadi [seiz...@infoblox.com] Sent: Friday, September 06, 2013 3:13 PM To: dev@cloudstack.apache.org Subject: DhcpServiceProvider I had not looked at the DhcpServiceProvider NetworkElement before, but after

Advanced Networking Public Network Service Providers

2013-09-13 Thread Soheil Eizadi
In the Advanced Networking use cases you have two physical networks (Public and Guest Networks). What is the reason for the GUI not providing Network Service Provider configuration for the Public Network? Thanks, -Soheil

Re: Review Request 14084: Updates to @ActionEvent to be compatible with Spring AOP

2013-09-13 Thread Darren Shepherd
> On Sept. 13, 2013, 6:17 p.m., Kelven Yang wrote: > > Was this actually committed? - Darren --- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/14084/#review26086 ---

Re: Which DevCloud2 Usage Mode is good for Development and Debugging ????

2013-09-13 Thread Mike Tutkowski
Yeah, remote debugging in Eclipse - whether the process I connect to is in a different VM, same VM, or on a different physical machine - usually works. Not sure what was going on yesterday and I haven't tried it yet today. On Fri, Sep 13, 2013 at 4:32 AM, Punith s wrote: > hi guys , > > thanks

Re: Build server was down?

2013-09-13 Thread Marty Sweet
Hi, This is due to DNS issues with cloudstack.org. We will continue to discuss this matter in the subject 'www.cloudstack.org not resolving'. Thanks, Marty On Fri, Sep 13, 2013 at 6:03 PM, Chip Childers wrote: > Use Jenkins.buildacloud.org > > Sent from my iPhone > > On Sep 13, 2013, at 12:08

Re: Review Request 13559: Automation: Portable IP test cases

2013-09-13 Thread Gaurav Aradhye
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/13559/ --- (Updated Sept. 13, 2013, 4:52 p.m.) Review request for cloudstack, Murali Reddy

Re: Q's about UserAuthenticators and getName()

2013-09-13 Thread Abhinandan Prateek
The code already has the name set to ³LDAP² in 4.2. What branch are you on ? Will also prefer if we can use getClass().getSimpleName() to get the classname, but we should check the possibility of the adapter classnames getting enhanced by underlying framework. On 13/09/13 4:41 am, "Darren Shephe

Re: Security Groups

2013-09-13 Thread Lynch, Gerard
By default XenServer (6.x) disables iptable/arptable checking over bridges in /etc/sysctl.conf - you'll need to ensure those are enabled. net.bridge.bridge-nf-call-iptables = 1 net.bridge.bridge-nf-call-ip6tables = 0 net.bridge.bridge-nf-call-arptables = 1 On 13/09/2013 04:55, "Jijun" wrote:

Re: Review Request 13559: Automation: Portable IP test cases

2013-09-13 Thread Gaurav Aradhye
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/13559/ --- (Updated Sept. 13, 2013, 4:12 p.m.) Review request for cloudstack, Murali Reddy

Re: www.cloudstack.org not resolving

2013-09-13 Thread Marty Sweet
Hi Guys, Those nameservers are GoDaddy's, have we moved away from them? They are responding with SERVFAIL for any cloudstack.org lookup. Marty On Fri, Sep 13, 2013 at 6:02 PM, Tracy Phillips wrote: > Matt, > > Probably the contact listed in the whois > > Domain ID:D150572512-LROR > Domain Name

RE: win7+cygwin+cloudstack having a problem

2013-09-13 Thread Donal Lafferty
Build problem? Let me explain: Bean definitions cross reference .class files, e.g. Administrator@cc-svr10 ~/github/cifs $ grep -R iciraNvpDaoImpl * --include=*.xml.in cloudstack/client/tomcatconf/componentContext.xml.in: cloudstack/client/tomcatconf/nonossComponentContext.xml.in: Notice I’

Re: [Proposal] Userdata Support for Hyper-V with KVP Data Exchange

2013-09-13 Thread Darren Shepherd
On 09/13/2013 10:25 AM, Rajesh Battala wrote: To bring up the system vm's on the hyperv host we need to pass the boot args from host to the systemvm's. To pass the data from hyperv host to systemvm guest we need this method. Oh maybe I'm getting terminology mixed up. When you say userdata I

Re: Creating an instance with ssh key pair

2013-09-13 Thread Harikrishna Patnala
SSH script pulls only the ssh public key that is associated with the vm instance. There is an API to reset the SSH key pair associated to the VM. This is will associate new ssh key pair to the vm and on reboot of vm this ssh script gets the new ssh public key into the VM. If you can modify the s

RE: [Proposal] Userdata Support for Hyper-V with KVP Data Exchange

2013-09-13 Thread Rajesh Battala
Hi Darren, To bring up the system vm's on the hyperv host we need to pass the boot args from host to the systemvm's. To pass the data from hyperv host to systemvm guest we need this method. Thanks Rajesh Battala -Original Message- From: Darren Shepherd [mailto:darren.s.sheph...@gmail.c

Re: Problem with cloud.storage_pool's used_bytes

2013-09-13 Thread Mike Tutkowski
Thanks, Wei I assume this is also present in 4.2? If not, it seems like a serious problem. On Fri, Sep 13, 2013 at 12:45 AM, Wei ZHOU wrote: > sorry, the url is > > https://git-wip-us.apache.org/repos/asf?p=cloudstack.git;a=commit;h=5c141a46fc3f684fd633d8b1b18f708bcff4 > > > 2013/9/13 Wei

Re: Review Request 14126: Return name for getName() on LdapAuthenticator

2013-09-13 Thread Ian Duffy
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/14126/#review26081 --- Ship it! Ship It! - Ian Duffy On Sept. 13, 2013, 3:06 p.m., Darr

Review Request 14126: Return name for getName() on LdapAuthenticator

2013-09-13 Thread Darren Shepherd
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/14126/ --- Review request for cloudstack and Donal Lafferty. Repository: cloudstack-git

Re: [Proposal] Userdata Support for Hyper-V with KVP Data Exchange

2013-09-13 Thread Darren Shepherd
On 09/13/2013 08:51 AM, Donal Lafferty wrote: IIRC, OpenStack puts userdata for Hyper-V guest VMs on a separate volume. The guest can mount the volume and extract the data. However, I suggest we use Hyper-V's KVP Data Exchange mechanism instead. Doing so keeps volume management and passing u

Re: Q's about UserAuthenticators and getName()

2013-09-13 Thread Ian Duffy
Great. Applied it. You can mark it as submitted. On 13 September 2013 16:10, Darren Shepherd wrote: > On 09/12/2013 10:56 PM, Ian Duffy wrote: > >> So my problem is that LDAP currently has a null name on getName(). So >>> >> which should I do? Add >> >> Go ahead and add it. I missed that over

RE: what wrong? start cloudstack

2013-09-13 Thread Alex Huang
Are you still getting this error? This is because niciria plugin was not compile somehow. How did you compile your cloudstack? --Alex > -Original Message- > From: 黑洞 [mailto:heids...@sina.com] > Sent: Thursday, September 12, 2013 10:48 PM > To: dev > Subject: what wrong? start cloudsta

[Proposal] Userdata Support for Hyper-V with KVP Data Exchange

2013-09-13 Thread Donal Lafferty
IIRC, OpenStack puts userdata for Hyper-V guest VMs on a separate volume. The guest can mount the volume and extract the data. However, I suggest we use Hyper-V's KVP Data Exchange mechanism instead. Doing so keeps volume management and passing userdata cleanly separated. Feature Spec at htt

Re: run cloustack have a exeception

2013-09-13 Thread Punith s
hey don't use fullsandbox mode in devcloud2, its recommended to use devcloud as only host(hypervisor) switching to this might solve your problem . regards, punith s On Fri, Sep 13, 2013 at 11:48 AM, 黑洞 wrote: > > > > > > INFO [utils.component.ComponentContext] (Timer-2:) Configuring > com.clo

test - please ignore

2013-09-13 Thread Donal Lafferty
Problems replying to this newsgroup... testing that I can post :(

RE: run cloustack have a exeception

2013-09-13 Thread Alex Huang
This is a known error on windows. CloudStack tries to generate a key store but on windows, it is not possible. For windows, before launching CloudStack, I always have to manually change the developer to false in order to have it run. You'll still see this error but it would be meaningless. U

Re: createVPCOffering (Was:RE: Marvin tests for VPC - why create VPC offering?)

2013-09-13 Thread Alena Prokharchyk
On 9/12/13 11:39 PM, "Sowmya Krishnan" wrote: >But we don't have an option to choose service providers with >createVPCOffering. It's always VPC VR for all services. If let's say, I >want to create a VPC Offering with LB as Netscaler and say, the following >services only: DNS, DHCP and SourceNat -

Re: Q's about UserAuthenticators and getName()

2013-09-13 Thread Darren Shepherd
On 09/13/2013 03:48 AM, Abhinandan Prateek wrote: The code already has the name set to ³LDAP² in 4.2. What branch are you on ? Will also prefer if we can use getClass().getSimpleName() to get the classname, but we should check the possibility of the adapter classnames getting enhanced by underlyi

Re: Creating an instance with ssh key pair

2013-09-13 Thread Gaurav Aradhye
Thanks Sangeetha. That was helpful. Regards, Gaurav On Thu, Sep 12, 2013 at 9:25 PM, Sangeetha Hariharan < sangeetha.hariha...@citrix.com> wrote: > To deploy Vm using ssh key pairs you will need to use a template that has > SSH Key Gen Scripts in it. > Only then you will be able to ssh into t

Re: Review Request 14084: Updates to @ActionEvent to be compatible with Spring AOP

2013-09-13 Thread Darren Shepherd
> On Sept. 12, 2013, 5:28 p.m., Kelven Yang wrote: > > Darren, I saw you added the annotation for group of events and annotated in > > various places, is there any test done for the business logic validation? I added an annotation @ActionEvents and its used in only one place and that is on Acc

Review Request 14124: CLOUDSTACK-4622 : If a VM from guest network is added to network tier of VPC then IP reservation allows the CIDR to be a superset of Network CIDR for that VPC tier

2013-09-13 Thread Saksham Srivastava
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/14124/ --- Review request for cloudstack and Sateesh Chodapuneedi. Bugs: CLOUDSTACK-4622

Re: Which DevCloud2 Usage Mode is good for Development and Debugging ????

2013-09-13 Thread Punith s
hi guys , thanks a lot for the info , you guys are right , now i'm using #*3.host only mode *in devcloud2 , and i'm able to debug the MS from eclipse seamlessly in my localhost. and mike if you have such problems then you can try *full sandbox mode *in devcloud2 and connect to it remotely from ecl

Re: Review Request 11626: Automation: Memory limits tests from Resource Limits Tests

2013-09-13 Thread sailaja mada
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/11626/#review26076 --- Ship it! Ship It! - sailaja mada On Sept. 12, 2013, 10:19 a.m.,

Re: Security Groups

2013-09-13 Thread Jayapal Reddy Uradi
Hi, Can you please share your security group rules 'iptables -L -nv' output in pastebin So that see why it is happening. Thanks, Jayapal On 13-Sep-2013, at 9:25 AM, Jijun wrote: > hi , i encounter the same problem, > > as i know, XenServer 6.2 need not the CSP. > > but the ingress not be b

RE: win7+cygwin+cloudstack having a problem

2013-09-13 Thread Donal Lafferty
Build problem? Let me explain: Bean definitions cross reference .class files, e.g. Administrator@cc-svr10 ~/github/cifs $ grep -R iciraNvpDaoImpl * --include=*.xml.in cloudstack/client/tomcatconf/componentContext.xml.in: cloudstack/client/tomcatconf/nonossComponentContext.xml.in: Notice I’

com.cloud.ha.RecreatableFencer used?

2013-09-13 Thread Darren Shepherd
com.cloud.ha.RecreatableFencer is registered in applicationContext.xml but never in a componentContext.xml. So it appears that fencer is never used. Is there a specific reason for this? Darren

ConfigDepot and null values and defaults

2013-09-13 Thread Darren Shepherd
If you have a configuration that the value is null and not dynamic, it still hits the database on every read. I'm thinking that's really not intentional. Additionally, if I have a key that is default value is 5, then I later change the default to 10. If the user never changed or set the valu

Review Request 14119: Default null value in ConfigKey results in NPE on second start

2013-09-13 Thread Darren Shepherd
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/14119/ --- Review request for cloudstack and Alex Huang. Repository: cloudstack-git Desc

RE: Volunteers to Complete the 4.2 Release Notes

2013-09-13 Thread Radhika Puthiyetath
Who is volunteering to provide the list of Fixed issues for the RN? -Original Message- From: Animesh Chaturvedi [mailto:animesh.chaturv...@citrix.com] Sent: Wednesday, August 28, 2013 4:40 AM To: dev@cloudstack.apache.org; us...@cloudstack.apache.org Subject: RE: Volunteers to Complete th

Re: Problem with cloud.storage_pool's used_bytes

2013-09-13 Thread Wei ZHOU
sorry, the url is https://git-wip-us.apache.org/repos/asf?p=cloudstack.git;a=commit;h=5c141a46fc3f684fd633d8b1b18f708bcff4 2013/9/13 Wei ZHOU > Mike, > it is already fixed in master and 4.2-forward branch. > > https://git-wip-us.apache.org/repos/asf?p=cloudstack.git;a=commit;h=7bff499bd362

Re: Problem with cloud.storage_pool's used_bytes

2013-09-13 Thread Wei ZHOU
Mike, it is already fixed in master and 4.2-forward branch. https://git-wip-us.apache.org/repos/asf?p=cloudstack.git;a=commit;h=7bff499bd3625f8a75a1c93cb9e3e2c90955df5e 2013/9/13 Mike Tutkowski > Hi, > > I just set up a single zone with one KVM host using master. > > My CPVM and SSVM are up an

createVPCOffering (Was:RE: Marvin tests for VPC - why create VPC offering?)

2013-09-13 Thread Sowmya Krishnan
But we don't have an option to choose service providers with createVPCOffering. It's always VPC VR for all services. If let's say, I want to create a VPC Offering with LB as Netscaler and say, the following services only: DNS, DHCP and SourceNat - it isn't possible from the API.. However this ma

  1   2   >