*** stanchan has quit IRC | 00:42 | |
*** cleverdevil has quit IRC | 01:02 | |
*** Liuqing has joined #openstack-astara | 01:37 | |
*** fzylogic has joined #openstack-astara | 01:42 | |
*** jordantardif has quit IRC | 02:09 | |
openstackgerrit | Adam Gandelman proposed openstack/astara: test https://review.openstack.org/263527 | 02:15 |
---|---|---|
openstackgerrit | Yang Li proposed openstack/astara: Fix log message translator issues https://review.openstack.org/263164 | 03:04 |
*** Liuqing has quit IRC | 05:05 | |
*** Liuqing has joined #openstack-astara | 05:06 | |
*** Liuqing has quit IRC | 05:51 | |
openstackgerrit | xiayu proposed openstack/astara: astara-ctl return error help info https://review.openstack.org/262602 | 07:02 |
*** ronis has joined #openstack-astara | 08:37 | |
*** Prithiv has joined #openstack-astara | 09:30 | |
*** Prithiv has quit IRC | 11:38 | |
openstackgerrit | Merged openstack/astara-neutron: This is the first step in removing auto added resources https://review.openstack.org/261038 | 15:15 |
*** ronis has quit IRC | 15:49 | |
openstackgerrit | mark mcclain proposed openstack/astara-neutron: Remove version from setup.py https://review.openstack.org/255036 | 16:46 |
openstackgerrit | mark mcclain proposed openstack/astara: Remove version from setup.py https://review.openstack.org/255033 | 16:50 |
markmcclain | rods: can you re-review: https://review.openstack.org/#/c/260216/1 | 17:00 |
rods | markmcclain looking | 17:00 |
rods | markmcclain +2'd | 17:01 |
markmcclain | thanks! | 17:02 |
markmcclain | rods: don't forget to add workflow +1 | 17:03 |
rods | ops :) | 17:03 |
rods | done | 17:04 |
markmcclain | awesome | 17:04 |
openstackgerrit | Merged openstack/astara: Fix log message translator issues https://review.openstack.org/263164 | 17:20 |
openstackgerrit | Merged openstack/astara: devstack: Set correct nova metadata proxy flag https://review.openstack.org/261113 | 17:20 |
openstackgerrit | Merged openstack/astara: Fixes logging in astara-debug-router https://review.openstack.org/260211 | 17:24 |
*** cleverdevil has joined #openstack-astara | 17:24 | |
*** ronis has joined #openstack-astara | 17:33 | |
openstackgerrit | Merged openstack/astara: devstack: Unpin DIB https://review.openstack.org/260216 | 17:34 |
openstackgerrit | Merged openstack/astara: Avoid hard coding for driver state https://review.openstack.org/262469 | 17:34 |
openstackgerrit | Merged openstack/astara: Fix more hard coding issue https://review.openstack.org/262641 | 17:36 |
openstackgerrit | Merged openstack/astara: Add loadbalancer example parameters in ini file https://review.openstack.org/262416 | 17:36 |
*** jordantardif has joined #openstack-astara | 18:07 | |
openstackgerrit | Adam Gandelman proposed openstack/astara: devstack: prevent auth params set in env. polluting client calls https://review.openstack.org/263839 | 18:34 |
openstackgerrit | Merged openstack/astara-neutron: Remove version from setup.py https://review.openstack.org/255036 | 18:54 |
openstackgerrit | Merged openstack/astara: Remove version from setup.py https://review.openstack.org/255033 | 19:03 |
openstackgerrit | Eric Lopez proposed openstack/astara: Fixed astara-ctl ssh command https://review.openstack.org/262956 | 19:08 |
openstackgerrit | Adam Gandelman proposed openstack/astara: Filter the 'leader' member from cluster membership list https://review.openstack.org/261098 | 19:17 |
rods | adam_g I can reproduce the issue on master(the one where you can't delete a network id you don't delete the router before) http://rods_screenshots.objects.dreamhost.com/01-05-2016-20-30-13.png | 19:33 |
rods | I'm opening a bug and assign it to me | 19:33 |
adam_g | rods, oh cool, thanks | 19:33 |
adam_g | wanted to look at it yesterday but was stalled with some devstack issues (resolved now) | 19:33 |
rods | np | 19:34 |
adam_g | elo, gave some comments on https://review.openstack.org/#/c/262956/5 | 19:42 |
elo | ok. will update | 19:50 |
*** ronis has quit IRC | 20:04 | |
adam_g | i think the functional tests added here have proven reliable https://review.openstack.org/#/c/219952/ and ready for review/merge | 20:25 |
rods | adam_g create https://bugs.launchpad.net/astara/+bug/1531274 | 20:41 |
openstack | Launchpad bug 1531274 in Astara "unable to delete tenant networks" [Undecided,New] - Assigned to Rosario Di Somma (mr-rods) | 20:41 |
rods | so, my understanding is that a vrrp port for a router(astara) is created for every tenant network and is deleted when a router is rebooted or stopped | 20:46 |
rods | but when a user just tries to delete a network simply removing the interface from the router | 20:48 |
rods | the vrrp port is still there and prevent the network to be deleted | 20:49 |
markmcclain | rods: things are eventually consistent | 20:59 |
markmcclain | and not synchronous so not certain how we can prevent this other than busy waiting | 21:00 |
rods | markmcclain can we override the delete_network in astara-neutron https://github.com/openstack/astara-neutron/blob/master/astara_neutron/plugins/ml2_neutron_plugin.py#L34 | 21:04 |
rods | to cleanup the vrrp port when a network is deleted? | 21:05 |
markmcclain | more likely, we'd want to make the L3 plugin ... synchronously wait for the port to be deleted | 21:06 |
markmcclain | will ensure that we're properly l2 agnostic | 21:06 |
markmcclain | wrap the super method in: https://github.com/openstack/astara-neutron/blob/master/astara_neutron/plugins/ml2_neutron_plugin.py#L99 | 21:07 |
markmcclain | for remove_router_interface() | 21:08 |
rods | yeah, makes sense | 21:08 |
rods | markmcclain so the wrapper should remove the vrrp port, wait for the port to be gone and the call super method, right? | 21:14 |
markmcclain | it should remove the logical port and then wait some bounded amount of time for the rug to clean up the VRRP port | 21:15 |
markmcclain | if we remove the port before the rug might cause other problems | 21:15 |
rods | markmcclain mmh, I see the logical port(ASTARA:VRRP:2e89fe59-6f70-4494-ba79-49ded1607214) but I don't see the bounded port | 21:26 |
markmcclain | the logical port is the one add_router_interface creates | 21:26 |
markmcclain | it's device_owner is network:router | 21:27 |
rods | oh I see it now | 21:28 |
*** manjeets has joined #openstack-astara | 21:36 | |
manjeets | Hi I am trying neutron with astara using devstack | 21:36 |
manjeets | when i build a router its taking long time to change status from build to active | 21:36 |
manjeets | is that normal ? | 21:36 |
manjeets | to login to my router vm if sshkey is insereted properly what user name should be used | 21:40 |
elo | manjeets: is this a nested environment? What HV is used, e.g. virtual box, lvm, vmware? What is the hardware type | 21:40 |
elo | astara is the username. | 21:40 |
manjeets | I guess its nested | 21:41 |
manjeets | I am using a vm over public cloud | 21:41 |
manjeets | to try astara with single node devstack | 21:41 |
elo | my DevVM environment is 4 CPU/4 GB ram | 21:43 |
manjeets | okay its 8gb ram/ 4 cpu | 21:44 |
adam_g | manjeets, see that nova reports the VM as ACTIVE first | 21:45 |
openstackgerrit | Adam Gandelman proposed openstack/astara: Push orchestrator config into the appliance https://review.openstack.org/255612 | 21:45 |
openstackgerrit | Adam Gandelman proposed openstack/astara: Cleanup SM management during rebalance events. https://review.openstack.org/259216 | 21:45 |
openstackgerrit | Adam Gandelman proposed openstack/astara: Adds a new rebalance takeover state https://review.openstack.org/260748 | 21:45 |
manjeets | yes it is active | 21:47 |
manjeets | I am able to ping router ip | 21:47 |
manjeets | but not able to login into router vm | 21:48 |
manjeets | using ssh atsar@router_ip | 21:48 |
manjeets | astara* | 21:48 |
manjeets | when i add interface to router should i choose one with IPv4 or IPv6 . it shows two for same network i created | 21:51 |
manjeets | adam_g: elo: | 21:52 |
adam_g | manjeets, nova should show it as having an address on the mgt network--thats the one you should be using to ssh | 21:53 |
elo | and the appliance key from /home/$STACK_USER/.ssh/id_rsa.pub file | 21:55 |
elo | in my nested environment it took about 5m to deploy and configure a new router instance | 21:56 |
manjeets | nova shows mgmt ipv6 in Ip when i first create the router | 21:59 |
manjeets | if add interface and gateway then shows that as well on IP | 22:00 |
manjeets | I used default network thenet for my instance i just created | 22:01 |
*** stanchan has joined #openstack-astara | 22:02 | |
manjeets | and associated fip to that instance and not able to ping instance even after adding sgrule for icmp and ssh | 22:02 |
*** cleverdevil- has joined #openstack-astara | 23:00 | |
*** cleverdevil has quit IRC | 23:02 | |
*** cleverdevil- has quit IRC | 23:07 | |
openstackgerrit | Adam Gandelman proposed openstack/astara: Adds reno for release notes management https://review.openstack.org/263942 | 23:08 |
openstackgerrit | Adam Gandelman proposed openstack/astara: Dynamically allocate service port addresses https://review.openstack.org/263943 | 23:08 |
adam_g | ^ backports | 23:08 |
* adam_g goes to eye doctor | 23:08 | |
*** cleverdevil has joined #openstack-astara | 23:10 | |
openstackgerrit | Eric Lopez proposed openstack/astara: Fixed astara-ctl ssh command https://review.openstack.org/262956 | 23:30 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!