Re: [openstack-dev] [Heat] Network topologies

2013-10-28 Thread Edgar Magana
to having a broader discussion. Thanks, Edgar On 10/28/13 9:47 AM, "Clint Byrum" wrote: >Excerpts from Steven Hardy's message of 2013-10-28 07:47:06 -0700: >> On Sun, Oct 27, 2013 at 08:37:15AM -0700, Edgar Magana wrote: >> > Heat Developers, >> >

[openstack-dev] [Heat] Network topologies

2013-10-27 Thread Edgar Magana
Heat Developers, I am one of the core developers for Neutron who is lately working on the concept of "Network Topologies". I want to discuss with you if the following blueprint will make sense to have in heat or neutron code: https://blueprints.launchpad.net/neutron/+spec/network-topologies-api B

Re: [openstack-dev] [GIT] Reset a commit in Gerrit

2013-10-20 Thread Edgar Magana
Floren, Just just need to send a patch to gerrit. >From you local repo, do the necessary fixes and be sure everything is just as you want. Then simply run: #git commit -a --amend #git review Thanks, Edgar On 10/20/13 11:26 AM, "Floren Llanos" wrote: >Hello, > >I'm a newbie contributor in Ope

Re: [openstack-dev] [Neutron] Common requirements for services' discussion

2013-10-11 Thread Edgar Magana
t;> >> On 10 October 2013 09:55, Bob Melander (bmelande) wrote: >>> Hi Edgar, >>> >>> I'm also interested in a broadening of NAT capability in Neutron using the >>> evolving service framework. >>> >>> Thanks, >>> B

Re: [openstack-dev] [Neutron] Common requirements for services' discussion

2013-10-09 Thread Edgar Magana
Hello all, Is anyone working on NATaaS? I know we have some developer working on Router as a Service and they probably want to include NAT functionality but I have some interest in having NAT as a Service. Please, response is somebody is interested in having some discussions about it. Thanks,

Re: [openstack-dev] [Neutron][Client] How do I list interfaces on a router?

2013-10-07 Thread Edgar Magana
Jay, You need to find out if the router has ports active, for instance take a look to this code: def delete(self, request, obj_id): try: router_id = self.table.kwargs['router_id'] port = api.neutron.port_get(request, obj_id) if port['device_

Re: [openstack-dev] Curvature and Donabe repos are now public!

2013-10-03 Thread Edgar Magana
Debo, Congratulations on this move! The entire Cisco team is doing an awesome work around OpenStack. Cheers, Edgar On 10/3/13 11:43 AM, "Debojyoti Dutta" wrote: >Hi! > >We @Cisco just made the following repos public >https://github.com/CiscoSystems/donabe >https://github.com/CiscoSystems/curv

Re: [openstack-dev] [Neutron] PTL Candidacy

2013-09-22 Thread Edgar Magana
Big Plus 1 for Mark! Great PTL and Excellent Job in Neutron! Edgar On Fri, Sep 20, 2013 at 1:44 PM, Mark McClain wrote: > > Hi- > > I writing to announce my candidacy for the OpenStack Networking (Neutron) > PTL. > > I am the current Neutron PTL. Our team continued to grow during the > Havana

Re: [openstack-dev] About multihost patch review

2013-08-26 Thread Edgar Magana
tension. I could be totally wrong and crazy, so please provide some feedback. Thanks, Edgar From: Yongsheng Gong Date: Monday, August 26, 2013 2:58 PM To: "Kyle Mestery (kmestery)" , Aaron Rosen , Armando Migliaccio , Akihiro MOTOKI , Edgar Magana , Maru Newby , Nachi Ueno , Salva

[openstack-dev] [Horizon] Devstack fails to deploy it

2013-08-22 Thread Edgar Magana
Hi, I just pulled devstack in a clean environment and I am seeing this error on Horizon: emagana@os-cont-pod-2:~/devstack$ cd /opt/stack/horizon && sudo tail -f /var/log/apache2/horizon_error.log || echo "horizon failed to start" | tee "/opt/stack/status/stack/horizon.failure" [Thu Aug 22 18:46:0

Re: [openstack-dev] [Nova] nova-api won't start in devstack

2013-08-06 Thread Edgar Magana
nvironment where an old version of a pip is causing you to > not function correctly, now is the time to bring that up, so we can fix > global requirements and get everything working again. > > -Sean > > On 08/06/2013 09:35 PM, Noorul Islam K M wrote: > >> Edgar M

Re: [openstack-dev] [Nova] nova-api won't start in devstack

2013-08-06 Thread Edgar Magana
I found the problem: python-boto and python-cmd2 had the wrong version. I have already installed those libraries. Cheers, Edgar From: Edgar Magana Date: Tuesday, August 6, 2013 11:33 AM To: OpenStack List Subject: [Nova] nova-api won't start in devstack I just downloaded devstack

[openstack-dev] [Nova] nova-api won't start in devstack

2013-08-06 Thread Edgar Magana
I just downloaded devstack and I am getting this error: 2013-08-06 11:28:28.938 TRACE nova Traceback (most recent call last): 2013-08-06 11:28:28.938 TRACE nova File "/usr/local/bin/nova-api", line 10, in 2013-08-06 11:28:28.938 TRACE nova sys.exit(main()) 2013-08-06 11:28:28.938 TRACE nova

Re: [openstack-dev] [Horizon][Neutron] Security groups call to Neutron instead of Nova

2013-07-29 Thread Edgar Magana
> _horizon_config_set $local_settings OPENSTACK_NEUTRON_NETWORK >enable_security_group $Q_USE_SECGROUP >fi > >On Tue, Jul 30, 2013 at 6:02 AM, Edgar Magana >wrote: >> You just confirmed what I found! >> I was wondering if I could add update that variable in

Re: [openstack-dev] [Horizon][Neutron] Security groups call to Neutron instead of Nova

2013-07-29 Thread Edgar Magana
()? > >if is_service_enabled quantum; then > _horizon_config_set $local_settings OPENSTACK_NEUTRON_NETWORK >enable_security_group $Q_USE_SECGROUP >fi > >On Tue, Jul 30, 2013 at 6:02 AM, Edgar Magana >wrote: >> You just confirmed what I found! >> I was wondering i

Re: [openstack-dev] [Horizon][Neutron] Security groups call to Neutron instead of Nova

2013-07-29 Thread Edgar Magana
;(Or edit local/local_settings.py.example before stack.sh and then run >stack.sh) > >I am planning to add a mechanism to determine which security group >should be used >through Neutron extension list in H3. > >Thanks, >Akihiro > > > >On Tue, Jul 30, 2013 at 5:17 AM, Edg

[openstack-dev] [Horizon][Neutron] Security groups call to Neutron instead of Nova

2013-07-29 Thread Edgar Magana
Using devstack with security-groups in Neutron disabled and instead of that using nova. Horizon is calling neutron client for security-groups API instead of Nova client, is this expected? If security-groups are not implemented, this behaviors will be broken for many plugins. Thanks, Edgar __

Re: [openstack-dev] [Neutron] Proposal to add new neutron-core members

2013-07-23 Thread Edgar Magana
+1 Absolutely for both! BTW. I also would like to propose to Eugene Nikanorov Thanks, Edgar On 7/23/13 12:15 PM, "Mark McClain" wrote: >All- > >I'd like to propose that Kyle Mestery and Armando Migliaccio be added to >the Neutron core team. Both have been very active with valuable reviews >a

Re: [openstack-dev] () Errors in Quantum/Neutron Grizzly (2013.1.2)

2013-07-15 Thread Edgar Magana
Craig, It will help if you can add more information about your set-up: release version? devstack configuration (if you are using it) configuration files recently, if you are using master branch this error is really weird because we renamed all quantum references to neutron. Thanks, Edgar On M

Re: [openstack-dev] Bug #1194026

2013-07-15 Thread Edgar Magana
This is ready to be merged, already has two core reviews but Salvatore ask for some changes in the commit message. Thanks, Edgar On 7/15/13 1:47 AM, "Thierry Carrez" wrote: >Nachi Ueno wrote: >> Since this is critical bug which stops gating, I hope this is merged >>soon. >> I'll fix this code

Re: [openstack-dev] [Neutron] does delete_network call delete_subnet automatically?

2013-07-02 Thread Edgar Magana
should be in the db_base class. If you call self.delete_subnet() from the db_base class then it will call the delete_subnet() method from the plugin if implement. Inheritance. On Tue, Jul 2, 2013 at 3:15 PM, Edgar Magana wrote: > It makes sense totally. Then, instead of making the db_base cl

Re: [openstack-dev] [Neutron] does delete_network call delete_subnet automatically?

2013-07-02 Thread Edgar Magana
g the user to delete the subnets first. Aaron On Tue, Jul 2, 2013 at 2:04 PM, Edgar Magana wrote: > Before filing a bug, do we really want this kind of functionality? > Is it "correct" to delete a network without really checking if the owner > really wants to delete a

Re: [openstack-dev] [Neutron] does delete_network call delete_subnet automatically?

2013-07-02 Thread Edgar Magana
t > Subject: Re: [openstack-dev] [Neutron] does delete_network call delete_subnet > automatically? > > delete_network() in the db_base class handles deleting the subnets associated > with the networks. > > https://github.com/openstack/quantum/blob/master/quantum/db/db_base_plugin_v2. &

Re: [openstack-dev] [Neutron] does delete_network call delete_subnet automatically?

2013-07-02 Thread Edgar Magana
? delete_network() in the db_base class handles deleting the subnets associated with the networks. https://github.com/openstack/quantum/blob/master/quantum/db/db_base_plugin_v 2.py#L1033 On Tue, Jul 2, 2013 at 12:31 PM, Edgar Magana wrote: > Folks, > > When I create a network and

[openstack-dev] [Neutron] does delete_network call delete_subnet automatically?

2013-07-02 Thread Edgar Magana
Folks, When I create a network and a subnet associated to that network, I am able to delete the network without deleting the subnet first from both CLI and Horizon. The difference is that in Horizon, both APIs are called: delete_subnet() and delete_network() When I tried by CLI, only delete_networ

Re: [openstack-dev] [networking] Changes to the OVS agent tunneling

2013-07-02 Thread Edgar Magana
Hi Kyle, It seems that the document is locked, could you provide the access code? Thanks, Edgar On 7/2/13 8:32 AM, "Kyle Mestery (kmestery)" wrote: >I've been spending a fair amount of time working with the OVS agent >recently, and I've written up a small Google Document [1] detailing the >en

Re: [openstack-dev] [Networking] Allocation of IPs

2013-06-28 Thread Edgar Magana
lugin-specific override is not the best fit. On Fri, Jun 28, 2013 at 2:42 PM, Edgar Magana wrote: > Got it!!! I knew it could be possible.. > > Thanks, > > Edgar > > From: Aaron Rosen > Reply-To: OpenStack List > Date: Friday, June 28, 2013 2:19 PM > > To: Open

Re: [openstack-dev] [Networking] Allocation of IPs

2013-06-28 Thread Edgar Magana
do is implement: _allocate_ips_for_port() in your plugin and then that method will be called instead of the base class one. Aaron On Fri, Jun 28, 2013 at 12:48 PM, Edgar Magana wrote: > Aaron, > > You are totally right, the point is that I don't want to loose the IPAM info > in Neutron be

Re: [openstack-dev] [Networking] Allocation of IPs

2013-06-28 Thread Edgar Magana
t notifies your dhcp server the mac-ip bindings each instance should have. Am i missing something here? Thanks, Aaron On Thu, Jun 27, 2013 at 11:00 PM, Edgar Magana wrote: > Aaron, > > Because the create create_subnet API is the one that enables/disables the > DHCP: > quantum subne

Re: [openstack-dev] [Networking] Allocation of IPs

2013-06-28 Thread Edgar Magana
un 21, 2013, at 5:34 PM, Edgar Magana wrote: > Mark, > > Can you point me to the BP for this feature? > I want to keep an eye on it. > > Thanks, > > Edgar > > From: Mark McClain > Reply-To: OpenStack List > Date: Friday, June 21, 2013 12:41 PM > To:

Re: [openstack-dev] [Networking] Allocation of IPs

2013-06-28 Thread Edgar Magana
at 1:51 PM, Edgar Magana wrote: > Could it be possible to add a flag to disable the allocation for the IP? > If the "no allocation" flag is enabled, all ports will have an empty value for > IPs. > It will increase the config parameters in quantum, should we try it? > > E

Re: [openstack-dev] [Networking] Allocation of IPs

2013-06-21 Thread Edgar Magana
option where you can configure the default IP allocator. Additionally, the allocator will be configurable at subnet creation time. mark On Jun 20, 2013, at 4:51 PM, Edgar Magana wrote: > Could it be possible to add a flag to disable the allocation for the IP? > If the "no allocati

Re: [openstack-dev] [Networking] Allocation of IPs

2013-06-20 Thread Edgar Magana
Thursday, June 20, 2013 1:13 PM To: OpenStack List Subject: Re: [openstack-dev] [Networking] Allocation of IPs There's work under way to make IP allocation pluggable. One of the options will include not having an allocator for a subnet. mark On Jun 20, 2013, at 2:36 PM, Edga

[openstack-dev] [Networking] Allocation of IPs

2013-06-20 Thread Edgar Magana
Developers, So far in Networking (formerly Quantum) IPs are pre-allocated when a new port is created by the following def: _allocate_ips_for_port(self, context, network, port): If we are using a real DHCP (not the dnsmasq process) that does not accept static IP allocation because it only allocate

<    1   2   3