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

2013-07-29 Thread Akihiro MOTOKI
Hi Edgar, If Neutron plugin without Neutron Security Group support, please set 'enable_security_group' in OPENSTACK_NEUTRON_NETWORK to True in /opt/stack/horizon/openstack_dashboard/local/local_settings.py after stack.sh and restart apache. (Or edit local/local_settings.py.example before stack.sh

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

2013-07-29 Thread Edgar Magana
You just confirmed what I found! I was wondering if I could add update that variable in devstack, I was planning to add into lib/neutron: _horizon_config_set $local_settings OPENSTACK_NEUTRON_NETWORK enable_security_group False What do you think? Edgar On 7/29/13 1:59 PM, Akihiro MOTOKI

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

2013-07-29 Thread Akihiro MOTOKI
How about adding the following in lib/horizon around q-lbaas in init_horizon()? 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 emag...@plumgrid.com wrote:

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

2013-07-29 Thread Edgar Magana
I already filed a bug: https://bugs.launchpad.net/devstack/+bug/1206271 I am proposing this: In lib/neutron: if [[ $Q_USE_SECGROUP == True ]]; then LIBVIRT_FIREWALL_DRIVER=nova.virt.firewall.NoopFirewallDriver iniset $NOVA_CONF DEFAULT security_group_api quantum +else +

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

2013-07-29 Thread Edgar Magana
I push this fix: https://review.openstack.org/#/c/39181/ Let me know if you are fine with it. Edgar On 7/29/13 2:19 PM, Akihiro MOTOKI amot...@gmail.com wrote: How about adding the following in lib/horizon around q-lbaas in init_horizon()? if is_service_enabled quantum; then