*** gongysh has joined #openstack-dev | 00:01 | |
lifeless | quantum question: is there a 'fixed network' driver - for networks that are not virtualised, and we want to just deal, doing DHCP but thats it. | 00:05 |
---|---|---|
lifeless | (this is in the context of baremetal, and the thread I started on the list last week) | 00:05 |
*** mmcloud has quit IRC | 00:07 | |
mordred | hrm | 00:10 |
mordred | lifeless: that might be an interesting first-step for us | 00:10 |
gongysh | lefeless: quantum generate mac <-> ip mapping and put them into dhcp server. | 00:11 |
gongysh | sorry, lifeless. | 00:11 |
lifeless | gongysh: close, - there is already a baremetal VIF plug driver. | 00:11 |
lifeless | gongysh: which understands that baremetal hosts have fixed macs; I'm digging into whats needed for dealing with a regular (non-openflow) L2/L3 physical infrastructure | 00:12 |
gongysh | lifeless: problem is how to assign networks to instances for baremetal machines | 00:12 |
lifeless | gongysh: indeed | 00:12 |
lifeless | gongysh: thats something that I think the responders to my email missed | 00:12 |
*** sacharya1 has joined #openstack-dev | 00:13 | |
lifeless | gongysh: specific machines need to be constraints to the networks physically available | 00:13 |
lifeless | and attempts to use those machines by folk without access to those networks rejected. | 00:13 |
*** sacharya has quit IRC | 00:13 | |
lifeless | related to that is VLAN support | 00:14 |
*** eternal1 has quit IRC | 00:14 | |
lifeless | which sort of needs one port on multiple network/subnet. | 00:14 |
*** roadTripper has joined #openstack-dev | 00:15 | |
gongysh | lifeless: you have to let things such like quantumv2.api: allocate_for_instance to give quantum mac for virtual port. | 00:16 |
lifeless | gongysh: thanks | 00:16 |
lifeless | the provider network extension may be useful | 00:17 |
gongysh | lifeless: for L2, I think we should use provider network concept. | 00:19 |
lifeless | gongysh: are you also working on baremetal ? | 00:20 |
gongysh | lifeless: a few months ago. | 00:20 |
lifeless | gongysh: ah, so you have it working, or are doing something else now ? | 00:21 |
gongysh | lifeless: I just mentored. I have no working artifacts. I am a developer on quantum project | 00:22 |
lifeless | gongysh: oh cool | 00:23 |
lifeless | gongysh: I may be asking you more questions :) | 00:23 |
gongysh | lifeless: sure. where is your blur print if any? | 00:24 |
lifeless | gongysh: there is no blueprint yet. There are two things; one is automation that sets up a virtualised test environment, which currently has network issues because it lacks the ability to constrain ports to have real mac addresses | 00:25 |
*** maxiz_ has quit IRC | 00:25 | |
lifeless | and there is the email I sent to the list last week | 00:25 |
lifeless | the automation is on github - https://github.com/tripleo/demo/ | 00:26 |
lifeless | how do you turn on the provider network extension ? | 00:29 |
gongysh | lifeless: ovs or linux bridge plugin support provider network by default. | 00:30 |
gongysh | lifeless: u just need to create a net with --provider:network_type vlan|flat|local|gre --provider:physical_network test1 --provider:segmentation_id vlan_id|gre_tunnel_id. | 00:32 |
gongysh | lifeless: first u need define a physical network in ovs or linux bridge plugin configuration file | 00:32 |
gongysh | lifeless: second, link baremetal machines with a switch and link the switch to the defined physical network. | 00:33 |
gongysh | lifeless: third make quantumv2.API can allocate network information with specified mac. | 00:34 |
*** andrewbogott is now known as andrewbogott_afk | 00:36 | |
lifeless | gongysh: nova.virt.baremetal.vif_driver.BaremetalVIFDriver should do the last bit ? | 00:36 |
lifeless | gongysh: what sort of switch should I use for this - for the 'second, link baremetal machines with a switch and link the switch to the defined physical network.' step, there is no ovs or linux bridge involved. | 00:37 |
gongysh | lifeless: no. we need to run the dhcp agent, which will create port on ovs or linux bridge. | 00:38 |
lifeless | gongysh: so - the baremetal compute node will run the dhcp agent; it will have an ovs|linux bridge, which the agent connects to, and its connected to the physical network via the config file ? | 00:40 |
*** otherwiseguy has quit IRC | 00:40 | |
gongysh | lifeless: I think baremetanlVIFDriver should call a modified qantumv2.api's allocate_for_instance | 00:40 |
gongysh | lifeless: quantum's dhcp agent uses port on ovs or linux bridge. and the bridge (such as br-int )will link to physical network (br-eth1). | 00:42 |
lifeless | ok | 00:43 |
lifeless | I think I see | 00:43 |
gongysh | lifeless: the physical network will link to the switch that links some of bare metal machines. | 00:43 |
lifeless | yes | 00:43 |
lifeless | I will try and get my devstack baremetal w/quantum working | 00:43 |
lifeless | you have been very helpful | 00:43 |
lifeless | some of the intricacies here are not well covered by the documentation | 00:43 |
gongysh | lifeless: I think the first step is the baremetanlVIFDriver which should give mac to quantum to create port and allocate IPs. | 00:46 |
gongysh | lifeless: if need hep, you can send email to ML or ping me at IRC. | 00:47 |
lifeless | gongysh: yes, I agree - I think the baremetal VIF driver already does that. | 00:50 |
lifeless | let me get you a link to its code | 00:50 |
lifeless | gongysh: https://github.com/tripleo/nova/blob/baremetal-dev/nova/virt/baremetal/vif_driver.py#L28 | 00:51 |
*** matiu has quit IRC | 00:52 | |
*** dims has joined #openstack-dev | 00:52 | |
*** pabelanger_ has quit IRC | 00:53 | |
*** pabelanger has joined #openstack-dev | 00:53 | |
*** alexpilotti has joined #openstack-dev | 00:59 | |
gongysh | lifeless: sorry, I cannot see how it is calling quantumv2.api method. | 00:59 |
*** winston-d has joined #openstack-dev | 01:01 | |
lifeless | gongysh: oh, I understand now. I thought it was called into by quantum | 01:01 |
lifeless | gongysh: I will want use_namespaces = False, right ? | 01:04 |
*** dedis6 has joined #openstack-dev | 01:07 | |
*** eglynn has joined #openstack-dev | 01:08 | |
gongysh | lifeless: if namespace or not does not matter | 01:10 |
*** eglynn__ has quit IRC | 01:11 | |
*** Tross has joined #openstack-dev | 01:12 | |
*** dedis6 has quit IRC | 01:15 | |
*** jcmartin has joined #openstack-dev | 01:21 | |
lifeless | gongysh: so, provider network, IIRC - in /etc/quantum/plugins/openvswitch/ovs_quantum_plugin.ini | 01:22 |
lifeless | network_vlan_ranges = physnet1, physvlans:1:2 | 01:22 |
lifeless | and | 01:22 |
lifeless | bridge_mappings = physnet1:br-eth1, physvlans:br-eth1 | 01:22 |
lifeless | would say 'there is one physical network and 2 vlans, and they are all accessible via an ovs bridge br-eth1 on the machine | 01:23 |
gongysh | lifeless: why use two physnets in one br-eth1? u can try with only phynet1: br-eth1. | 01:25 |
lifeless | gongysh: well, we have a real network & the two vlans | 01:26 |
gongysh | lifeless: one quantum virtual network will link to one physical net with one vlan id. | 01:26 |
lifeless | ok | 01:26 |
lifeless | added a note | 01:26 |
gongysh | lifeless: this case, u need to create two quantum virtual networks. | 01:26 |
lifeless | gongysh: do you mean three ? | 01:26 |
lifeless | gongysh: we use the native vlan as well as the two vlans | 01:26 |
gongysh | lifeless: ok this case, you will have three physical nets: one is flat, and two are vlaned. | 01:27 |
*** alexxu has joined #openstack-dev | 01:31 | |
lifeless | gongysh: ok, so I make three ovs bridges | 01:33 |
lifeless | gongysh: and to one I add the physical flat network, physnet1 and to the next I add the vlan 1 and to the next I add the vlan2 | 01:33 |
lifeless | gongysh: then I say bridge_mappings = physnet1:br-eth1, physvlans:br-vlan1, physvlans:br-vlan2 ? | 01:34 |
lifeless | that doesn't seem like it works quite right to me. | 01:34 |
lifeless | Or do I sdefine | 01:34 |
lifeless | network_vlan_ranges = physnet1, physvlans2:1:1 physlvlans2:2:2 ? | 01:34 |
lifeless | and then | 01:34 |
lifeless | bridge_mappings = physnet1:br-eth1, physvlans1:br-vlan1, physvlans2:br-vlan2 | 01:34 |
lifeless | ? | 01:35 |
lifeless | [I'm afk for a little bit, shopping run to super market] | 01:35 |
*** Tross has quit IRC | 01:36 | |
*** Tross has joined #openstack-dev | 01:37 | |
gongysh | lifeless: network_vlan_ranges = flatnet, vlannet:1:2, bridge_mappings = flatnet: br-eth1, vlannet: br-vlan | 01:38 |
gongysh | lifeless: u can have a try. | 01:38 |
*** littleidea has joined #openstack-dev | 01:40 | |
*** esp has joined #openstack-dev | 01:46 | |
*** colinmcnamara has quit IRC | 01:47 | |
*** colinmcnamara has joined #openstack-dev | 01:48 | |
*** colinmcnamara has left #openstack-dev | 01:49 | |
*** reed has joined #openstack-dev | 01:50 | |
*** edygarcia has joined #openstack-dev | 01:52 | |
lifeless | gongysh: ah! thanks | 01:56 |
openstackgerrit | A change was merged to openstack/nova: update api_samples add os-services module https://review.openstack.org/16141 | 01:58 |
*** dingus9 has quit IRC | 02:07 | |
openstackgerrit | A change was merged to openstack/nova: add instance_type_extra_specs to instances https://review.openstack.org/16122 | 02:10 |
*** maxiz has joined #openstack-dev | 02:12 | |
*** kspear has joined #openstack-dev | 02:22 | |
*** Mandell has joined #openstack-dev | 02:25 | |
openstackgerrit | A change was merged to openstack/nova: Fixes create instance *without* config drive test https://review.openstack.org/16083 | 02:27 |
*** littleidea has left #openstack-dev | 02:34 | |
*** littleidea has joined #openstack-dev | 02:39 | |
*** esp has quit IRC | 02:39 | |
*** littleidea has left #openstack-dev | 02:40 | |
*** esp has joined #openstack-dev | 02:43 | |
lifeless | gongysh: sorry to bother you; does this look correct; | 02:45 |
lifeless | network_vlan_ranges = physnet, physvlans:2:3 | 02:45 |
lifeless | bridge_mappings = physnet1:br-eth1, physvlans:br-vlan | 02:45 |
lifeless | sudo ovs-vsctl add-br br-eth1 | 02:45 |
lifeless | sudo ovs-vsctl add-port br-eth1 eth1 | 02:45 |
lifeless | sudo ovs-vsctl add-br br-vlan | 02:45 |
lifeless | sudo ovs-vsctl add-port br-vlan vlan2 | 02:45 |
lifeless | sudo ovs-vsctl add-port br-vlan vlan3 | 02:45 |
lifeless | or should I be adding eth1 to br-vlan ? | 02:45 |
gongysh | lifeless: no. eth1 is for flat network, right? | 02:48 |
lifeless | eth1 is the flat network for untagged frames, vlans are on eth1 too, for tagged traffic | 02:50 |
*** esp has quit IRC | 02:50 | |
*** Mandell has quit IRC | 02:52 | |
*** matiu has joined #openstack-dev | 02:56 | |
*** matiu has quit IRC | 02:56 | |
*** matiu has joined #openstack-dev | 02:56 | |
*** edygarcia has quit IRC | 03:08 | |
openstackgerrit | A change was merged to openstack/swift: Remove IP-based container-sync ACLs from auth middlewares. https://review.openstack.org/16358 | 03:14 |
*** edygarcia has joined #openstack-dev | 03:18 | |
*** nati_ueno has quit IRC | 03:24 | |
*** Tross has quit IRC | 03:25 | |
*** amotoki has joined #openstack-dev | 03:28 | |
*** alexpilotti has quit IRC | 03:29 | |
lifeless | gongysh: nova-compute is failing to call quantumv2api - http://paste.openstack.org/show/26118/ what would cause that ? | 03:30 |
gongysh | lifeless: how do u call it? the API should be called in nova's context. | 03:39 |
lifeless | gongysh: thats the normal nova code | 03:41 |
lifeless | gongysh: calling into allocate_for_instance | 03:41 |
*** edygarcia has quit IRC | 03:41 | |
lifeless | same error generated in the log after calling nova delete | 03:41 |
lifeless | 2012-11-19 03:40:25 DEBUG nova.network.quantumv2.api [req-96cdfd51-6598-411d-8299-a2797ab843ea admin admin] get_instance_nw_info() for bmtest from (pid=11593) _get_instance_nw_info /opt/stack/nova/nova/network/quantumv2/api.py:191 | 03:41 |
lifeless | 2012-11-19 03:40:25 ERROR nova.openstack.common.rpc.amqp [-] Exception during message handling | 03:42 |
lifeless | 2012-11-19 03:40:25 TRACE nova.openstack.common.rpc.amqp Traceback (most recent call last): | 03:42 |
lifeless | 2012-11-19 03:40:25 TRACE nova.openstack.common.rpc.amqp QuantumClientException: (403, 'Forbidden') | 03:42 |
lifeless | 2012-11-19 03:40:25 TRACE nova.openstack.common.rpc.amqp | 03:42 |
*** Tross has joined #openstack-dev | 03:44 | |
*** Dr_Who has quit IRC | 03:46 | |
*** maxiz has quit IRC | 03:47 | |
gongysh | can u run quantum client command on quanum server? | 03:48 |
gongysh | such as quantum net-list | 03:48 |
gongysh | it seems the quantum server isn't running well with keystone. | 03:50 |
lifeless | yes, just fine | 03:51 |
lifeless | quantum net-list | 03:51 |
lifeless | +--------------------------------------+---------+--------------------------------------+ | 03:51 |
lifeless | | id | name | subnets | | 03:51 |
lifeless | +--------------------------------------+---------+--------------------------------------+ | 03:51 |
lifeless | | 2963ca4f-f1fa-4cc9-8af7-4b1dcba4868d | nova | f8720646-f8f6-4e8c-8bb1-84b67d01aca8 | | 03:52 |
lifeless | etc | 03:52 |
lifeless | u'user': {u'username': u'quantum', u'roles_links': [] | 04:00 |
lifeless | in the token | 04:01 |
lifeless | looks like no role setup pehraps? | 04:01 |
lifeless | its in the 'service' tenant though | 04:04 |
lifeless | keystone user-role-list doesn't list it though | 04:04 |
lifeless | so, devstack failure perhaps. Will try to reproduce tomorrow | 04:05 |
lifeless | odd though | 04:10 |
lifeless | keystone user-role-add --user_id f88d44af51724873b5fa66dd6858f490 --tenant-id f0f504f70d0d4a45a7bf34d69a6932f5 --role-id 87b93d48ae16412baec1aecfd50ec7c7 | 04:10 |
lifeless | Unable to communicate with identity service: {"error": {"message": "Conflict occurred attempting to store role grant. User f88d44af51724873b5fa66dd6858f490 already has role 87b93d48ae16412baec1aecfd50ec7c7 in tenant f0f504f70d0d4a45a7bf34d69a6932f5", "code": 409, "title": "Conflict"}}. (HTTP 409) | 04:10 |
lifeless | keystone user-role-list --user-id f88d44af51724873b5fa66dd6858f490 | 04:10 |
lifeless | $ | 04:10 |
lifeless | (that is - nothing) | 04:10 |
*** xchu has joined #openstack-dev | 04:10 | |
*** xchu is now known as Guest44061 | 04:10 | |
*** Guest44061 has quit IRC | 04:15 | |
*** xchu_ has joined #openstack-dev | 04:15 | |
*** xchu_ has quit IRC | 04:16 | |
*** maxiz has joined #openstack-dev | 04:18 | |
*** littleidea has joined #openstack-dev | 04:20 | |
lifeless | ahhh | 04:21 |
lifeless | its using localhost not the actual endpoint. | 04:21 |
lifeless | bizarre | 04:21 |
lifeless | at least I know where to poke tomorrow | 04:21 |
*** Ryan_Lane1 has joined #openstack-dev | 04:21 | |
*** Ryan_Lane has quit IRC | 04:23 | |
*** dedis has joined #openstack-dev | 04:27 | |
*** pabelanger has quit IRC | 04:32 | |
*** Tross has quit IRC | 04:37 | |
*** esp has joined #openstack-dev | 04:39 | |
*** roadTripper has quit IRC | 04:39 | |
*** alexxu has quit IRC | 04:41 | |
openstackgerrit | A change was merged to openstack/oslo-incubator: Use the ThreadGroup for the Launcher https://review.openstack.org/15934 | 04:41 |
*** Tross has joined #openstack-dev | 04:43 | |
*** esp has quit IRC | 04:43 | |
*** mikal has quit IRC | 04:44 | |
*** mikal has joined #openstack-dev | 04:47 | |
*** diganta has joined #openstack-dev | 04:47 | |
*** Ryan_Lane1 is now known as Ryan_Lane | 04:51 | |
*** Ryan_Lane has joined #openstack-dev | 04:51 | |
*** yachf has joined #openstack-dev | 05:00 | |
*** yachf has left #openstack-dev | 05:00 | |
*** reed has quit IRC | 05:43 | |
*** koolhead17 has joined #openstack-dev | 05:46 | |
*** thingee has quit IRC | 05:56 | |
*** wuwenxiang has joined #openstack-dev | 05:58 | |
*** hattwick has quit IRC | 06:00 | |
*** wuwenxiang is now known as wu_wenxiang | 06:02 | |
*** wu_wenxiang has quit IRC | 06:03 | |
*** sacharya1 has quit IRC | 06:04 | |
*** stevebake has joined #openstack-dev | 06:06 | |
*** amotoki has quit IRC | 06:08 | |
*** wu-wenxiang has joined #openstack-dev | 06:12 | |
*** ben__duyujie has joined #openstack-dev | 06:16 | |
*** wu-wenxiang has quit IRC | 06:18 | |
*** AnilV4 has joined #openstack-dev | 06:19 | |
*** wu-wenxiang has joined #openstack-dev | 06:22 | |
*** jcmartin has quit IRC | 06:22 | |
*** vipul is now known as vipul|away | 06:24 | |
*** benner has quit IRC | 06:33 | |
*** enikanorov_ has joined #openstack-dev | 06:34 | |
*** djinni has quit IRC | 06:35 | |
*** enikanorov has quit IRC | 06:36 | |
*** djinni has joined #openstack-dev | 06:36 | |
*** benner has joined #openstack-dev | 06:37 | |
openstackgerrit | A change was merged to openstack/oslo-incubator: Fix update.py string interpolation https://review.openstack.org/16387 | 06:38 |
*** hattwick has joined #openstack-dev | 06:42 | |
*** koolhead17 has quit IRC | 06:45 | |
*** garyk has joined #openstack-dev | 06:55 | |
*** Mandell has joined #openstack-dev | 06:56 | |
openstackgerrit | A change was merged to openstack/nova: Set node_availability_zone in XenAPIAggregateTestCase https://review.openstack.org/16396 | 07:00 |
openstackgerrit | A change was merged to openstack/nova: add index to fixed_ips https://review.openstack.org/16189 | 07:01 |
*** ben__duyujie_ has joined #openstack-dev | 07:02 | |
*** eglynn_ has joined #openstack-dev | 07:02 | |
*** ben__duyujie has quit IRC | 07:04 | |
*** mindpixel has joined #openstack-dev | 07:05 | |
*** eglynn has quit IRC | 07:06 | |
*** zyluo has joined #openstack-dev | 07:09 | |
BLZbubba | good morning | 07:14 |
BLZbubba | any idea what the "libvirt.xml" file is used for? there is one in the same directory as the disk images | 07:14 |
BLZbubba | i am trying to find the easiest way to bring up a vm that was created on a different compute node which died | 07:14 |
BLZbubba | apparently it is possible to use virsh to dump the xml config -- but only while the original node is still running obviously | 07:15 |
openstackgerrit | A change was merged to openstack/quantum: Delete floating port and floatingip in the same transaction https://review.openstack.org/16400 | 07:16 |
BLZbubba | hmm apparently this file ends up in /etc/libvirt/qemu | 07:17 |
*** mrunge has joined #openstack-dev | 07:22 | |
*** afazekas has joined #openstack-dev | 07:23 | |
*** rushiagr has joined #openstack-dev | 07:24 | |
*** ben__duyujie has joined #openstack-dev | 07:24 | |
*** thimble has joined #openstack-dev | 07:25 | |
*** ben__duyujie_ has quit IRC | 07:27 | |
openstackgerrit | A change was merged to openstack/quantum: Completes unittest coverage of quantum.api.v2.attributes.py https://review.openstack.org/15958 | 07:29 |
*** henrynash has joined #openstack-dev | 07:33 | |
*** ben__duyujie_ has joined #openstack-dev | 07:34 | |
*** ben__duyujie has quit IRC | 07:35 | |
*** yolanda has joined #openstack-dev | 07:36 | |
*** Mandell has quit IRC | 07:44 | |
*** Mandell has joined #openstack-dev | 07:44 | |
*** thimble has quit IRC | 07:47 | |
*** littleidea has quit IRC | 07:48 | |
*** Mandell has quit IRC | 07:50 | |
*** henrynash has quit IRC | 07:50 | |
*** rafaduran has joined #openstack-dev | 07:53 | |
*** reidrac has joined #openstack-dev | 07:57 | |
yolanda | hi,i have a problem with git... i'm trying to create a new empty branch from nova | 08:00 |
yolanda | but when i create it and i try to do a commit, it's always appending there an unwanted commit i didn't add | 08:00 |
yolanda | it adds a Merge "add index to fixed_ips", how can i get rid of that? | 08:01 |
*** FlaPer87 has joined #openstack-dev | 08:01 | |
*** thimble has joined #openstack-dev | 08:03 | |
ttx | dims: I already started to work on a patch. What's needed is a bit more complex... I'd suggest you abandon your change: I'll ping you when mine is ready :) | 08:06 |
zykes- | dripton: around ? | 08:08 |
*** reidrac has quit IRC | 08:11 | |
*** aloga has joined #openstack-dev | 08:18 | |
*** jpich has joined #openstack-dev | 08:19 | |
*** reidrac has joined #openstack-dev | 08:28 | |
*** corXi has joined #openstack-dev | 08:31 | |
*** rushiagr1 has joined #openstack-dev | 08:31 | |
*** rburon has joined #openstack-dev | 08:33 | |
*** rushiagr has quit IRC | 08:35 | |
*** fc__ has joined #openstack-dev | 08:42 | |
*** ndipanov has joined #openstack-dev | 08:43 | |
*** zing has joined #openstack-dev | 08:43 | |
*** rushiagr1 has quit IRC | 08:45 | |
*** ociuhandu has joined #openstack-dev | 08:47 | |
*** ijw1 has joined #openstack-dev | 08:47 | |
*** winston-d has quit IRC | 08:52 | |
*** maxiz has quit IRC | 08:56 | |
*** ijw1 has quit IRC | 08:57 | |
*** ijw1 has joined #openstack-dev | 08:57 | |
*** derekh has joined #openstack-dev | 08:57 | |
*** m4xmr has joined #openstack-dev | 09:03 | |
*** m4xmr has left #openstack-dev | 09:03 | |
*** xchu has joined #openstack-dev | 09:03 | |
*** zyluo has quit IRC | 09:03 | |
*** xchu is now known as Guest67058 | 09:04 | |
*** Guest67058 has quit IRC | 09:05 | |
*** xchu_ has joined #openstack-dev | 09:05 | |
*** henrynash has joined #openstack-dev | 09:27 | |
*** darraghb has joined #openstack-dev | 09:27 | |
yolanda | hi, i have a problem trying to create an api test. I'm trying to execute a "restore" call for a server, but i receive that error: Cannot 'restore' while instance is in vm_state active | 09:30 |
yolanda | when i create a server, how can i modify the vm_state of that, or force the deletion? | 09:30 |
*** pixelbeat has joined #openstack-dev | 09:30 | |
*** danpb has joined #openstack-dev | 09:30 | |
yolanda | i did something like that after the post server: | 09:30 |
yolanda | response = self._do_delete('servers/%s' % uuid) | 09:30 |
yolanda | self.assertEqual(response.status, 204) | 09:30 |
yolanda | self.assertEqual(response.read(), '') | 09:30 |
yolanda | but still same problem | 09:31 |
*** mikal has quit IRC | 09:35 | |
*** ijw11 has joined #openstack-dev | 09:36 | |
*** mikal has joined #openstack-dev | 09:36 | |
yolanda | hi, can i get any help with an api test? | 09:36 |
*** zaneb has joined #openstack-dev | 09:37 | |
*** yjiang5 is now known as yjiang5_away | 09:39 | |
*** ijw1 has quit IRC | 09:40 | |
*** zaneb has quit IRC | 09:41 | |
*** maxiz has joined #openstack-dev | 09:44 | |
*** kpavel has joined #openstack-dev | 09:45 | |
*** Ryan_Lane has quit IRC | 09:45 | |
openstackgerrit | A change was merged to openstack/quantum: Ensure that deleted gateway IP address is recycled correctly https://review.openstack.org/16360 | 09:46 |
*** maploin has joined #openstack-dev | 09:47 | |
*** maploin has quit IRC | 09:47 | |
*** maploin has joined #openstack-dev | 09:47 | |
kpavel | Hi, what is the right way to reopen Abandoned change? Thanks. | 09:50 |
*** ijw11 has quit IRC | 09:54 | |
*** ijw1 has joined #openstack-dev | 09:54 | |
*** wu_wenxiang has joined #openstack-dev | 09:55 | |
kpavel | nevermind. found the button :) | 09:59 |
*** kpavel has quit IRC | 09:59 | |
*** FlaPer87 has quit IRC | 10:01 | |
*** xchu_ has quit IRC | 10:03 | |
*** sthaha has joined #openstack-dev | 10:09 | |
*** ijw1 has quit IRC | 10:12 | |
*** ijw1 has joined #openstack-dev | 10:13 | |
*** zaneb has joined #openstack-dev | 10:14 | |
*** alexpilotti has joined #openstack-dev | 10:16 | |
*** zyluo has joined #openstack-dev | 10:20 | |
*** vds has joined #openstack-dev | 10:20 | |
vds | I'm trying to register a new email address on gerrit, I did it a couple of times, but it's been like 30 mins and got no email confirmation, who can I bother? :) | 10:21 |
*** rushiagr has joined #openstack-dev | 10:21 | |
zaneb | vds: the #openstack-infra guys | 10:22 |
zyluo | vds, I believe gerrit uses launchpad openid so that if you wish to change your email addr you should go to launchpad | 10:23 |
vds | zaneb, thanks, I do have that new mail already in LP, I'm trying to add also to gerrit from the Contact Information page, I fill the form, it says wait for a confirmation email, but the confirmation email doesn't arrive, I'll ask on the other channel | 10:25 |
*** ijw1 has quit IRC | 10:25 | |
yolanda | who can i ask for a doubt i have about this bug? https://bugs.launchpad.net/nova/+bug/1070157 | 10:26 |
yolanda | apart from maurosr | 10:26 |
uvirtbot | Launchpad bug 1070157 in nova "DeferredDelete extension doesn't have API Sample Tests to Documentation" [Low,Confirmed] | 10:26 |
*** ijw1 has joined #openstack-dev | 10:27 | |
diganta | hi yolanda: | 10:28 |
yolanda | hi diganta | 10:28 |
yolanda | i have a question about how to test the deferred delete api, can you help? | 10:29 |
diganta | yolanda: can u help me , i am facing problem during running git review command ? | 10:29 |
yolanda | oh, i was asking you for help :) | 10:30 |
yolanda | ok, tell me, what's the problem | 10:30 |
diganta | yolanda: plz check http://fpaste.org/M0LN/ | 10:31 |
yolanda | diganta, and have you tried to run the rebase? | 10:32 |
diganta | yeah i tried everything , then getting conficts and after resolving , then the same problem yolanda | 10:33 |
yolanda | are you working on your own branch? | 10:34 |
diganta | no master | 10:34 |
yolanda | you should work in your own branch | 10:34 |
rushiagr | diganta: dont work on master, fork out a branch out of master and work on it.. it is mentioned in the gerritworkflow link which i gave you | 10:35 |
rushiagr | yolanda: you can post a comment for that bug there | 10:36 |
diganta | ok yolanda first i have to create a branch then i will proceed further , right ? | 10:36 |
*** zyluo has quit IRC | 10:36 | |
*** FlaPer87 has joined #openstack-dev | 10:36 | |
yolanda | diganta, yes, have you looked at the gerrit workflow? | 10:36 |
*** edygarcia has joined #openstack-dev | 10:36 | |
*** edygarcia has quit IRC | 10:38 | |
*** mindpixel has quit IRC | 10:43 | |
diganta | rushiagr: i switched to another branch i created , then running git review , output http://fpaste.org/WwR5/ | 10:51 |
diganta | yolanda: i switched to another branch i created , then running git review , output http://fpaste.org/WwR5/ | 10:55 |
*** asalkeld has quit IRC | 10:56 | |
*** ijw1 has quit IRC | 10:56 | |
*** ijw1 has joined #openstack-dev | 10:57 | |
*** wu_wenxiang has quit IRC | 10:58 | |
*** asalkeld has joined #openstack-dev | 11:01 | |
diganta | yolanda: r u there ? | 11:04 |
*** thimble has quit IRC | 11:05 | |
yolanda | diganta, yes | 11:05 |
yolanda | let me see | 11:05 |
diganta | yolanda: i switched to another branch i created , then running git review , output http://fpaste.org/WwR5/ | 11:05 |
diganta | ok | 11:06 |
yolanda | diganta, did you follow all the steps of review flow? | 11:06 |
yolanda | http://wiki.openstack.org/GerritWorkflow | 11:06 |
diganta | yolanda: i run git status , there is nothing to commit , then i run git review | 11:07 |
yolanda | seems that you are missing the change id on the commit messaage | 11:07 |
yolanda | git commit --amend | 11:07 |
yolanda | this allow to change the message | 11:08 |
*** mmagr has joined #openstack-dev | 11:09 | |
rushiagr | it automatically assigns a change id, so basically do just git commit --amend, and save it, and have the change id created for you in the commit message. I hope this is the right way. yolanda: confirm please | 11:12 |
yolanda | rushiagr, i think so, yes - but i'm a bit newbie with that system... | 11:13 |
openstackgerrit | A change was merged to openstack/ceilometer: Remove nova.flags usage https://review.openstack.org/16314 | 11:13 |
diganta | yolanda: can u check plz http://fpaste.org/RJIM/ | 11:19 |
yolanda | same problema again? but now with your branch? | 11:20 |
diganta | yeah yolanda | 11:20 |
yolanda | at this point, what i've done sometimes is just removing all and start again.... but as i told, i'm not an expert on it | 11:21 |
*** sileht has quit IRC | 11:21 | |
yolanda | i just removed the whole directory, do the clone again, update.... | 11:21 |
*** oleg__ is now known as ogelbukh | 11:23 | |
*** sileht has joined #openstack-dev | 11:24 | |
rushiagr | just do 'git rebase --continue' or 'git rebase --abort'. Not sure, m too not an expert | 11:25 |
rushiagr | it solved for me.. | 11:30 |
*** edygarcia has joined #openstack-dev | 11:35 | |
*** eglynn__ has joined #openstack-dev | 11:36 | |
*** sthaha has quit IRC | 11:36 | |
*** edygarcia has quit IRC | 11:36 | |
*** eglynn_ has quit IRC | 11:38 | |
*** alobbs has joined #openstack-dev | 11:42 | |
*** brich1 has joined #openstack-dev | 11:42 | |
*** eglynn__ is now known as eglynn | 11:43 | |
*** brich1 has quit IRC | 12:00 | |
diganta | yolanda: i cloned again | 12:02 |
*** thimble has joined #openstack-dev | 12:03 | |
yolanda | does it work? | 12:04 |
diganta | i am just running ./ run_teshs.sh | 12:06 |
*** FlaPer87 has quit IRC | 12:07 | |
*** ben__duyujie has joined #openstack-dev | 12:10 | |
*** ben__duyujie_ has quit IRC | 12:13 | |
*** ben__duyujie_ has joined #openstack-dev | 12:26 | |
*** ben__duyujie has quit IRC | 12:27 | |
*** milner has joined #openstack-dev | 12:27 | |
*** ben__duyujie_ has quit IRC | 12:28 | |
*** eglynn has quit IRC | 12:30 | |
*** FlaPer87 has joined #openstack-dev | 12:40 | |
*** eglynn has joined #openstack-dev | 12:51 | |
*** sandywalsh has joined #openstack-dev | 12:51 | |
*** tmishler has joined #openstack-dev | 12:53 | |
*** mjfork has joined #openstack-dev | 12:55 | |
*** eglynn has quit IRC | 13:02 | |
*** markvoelker has joined #openstack-dev | 13:02 | |
*** strife25 has joined #openstack-dev | 13:04 | |
*** Dr_Who has joined #openstack-dev | 13:04 | |
*** Dr_Who has joined #openstack-dev | 13:04 | |
*** maxiz_ has joined #openstack-dev | 13:08 | |
*** sandywalsh has quit IRC | 13:10 | |
*** strife25 has quit IRC | 13:10 | |
*** FlaPer87 has quit IRC | 13:10 | |
*** maxiz has quit IRC | 13:10 | |
*** yolanda has quit IRC | 13:12 | |
*** eglynn has joined #openstack-dev | 13:19 | |
*** EmilienM has joined #openstack-dev | 13:20 | |
*** sandywalsh has joined #openstack-dev | 13:22 | |
*** alunduil has quit IRC | 13:22 | |
*** mmcloud has joined #openstack-dev | 13:25 | |
*** olaph has joined #openstack-dev | 13:27 | |
*** kgriffs has joined #openstack-dev | 13:30 | |
*** strife25 has joined #openstack-dev | 13:40 | |
*** Hitesh has joined #openstack-dev | 13:42 | |
openstackgerrit | A change was merged to openstack/nova: Ignore editor backup files. https://review.openstack.org/16393 | 13:48 |
*** arbrandes has joined #openstack-dev | 13:48 | |
*** ijw1 has quit IRC | 13:52 | |
*** gongysh has quit IRC | 13:53 | |
*** jaypipes has joined #openstack-dev | 13:58 | |
*** dprince has joined #openstack-dev | 13:59 | |
*** dims has quit IRC | 13:59 | |
openstackgerrit | A change was merged to openstack/nova: Make fping extension use CONF https://review.openstack.org/16366 | 14:00 |
*** radez_g0n3 is now known as radez | 14:01 | |
*** aeperezt has joined #openstack-dev | 14:02 | |
*** alexpilotti has quit IRC | 14:02 | |
*** dims has joined #openstack-dev | 14:02 | |
openstackgerrit | A change was merged to openstack/nova: Remove FLAGS https://review.openstack.org/16274 | 14:02 |
danpb | does anyone else here see devstack fail when run from a completely fresh machine with no pre-existing checkouts of nova/glance/etc | 14:02 |
danpb | https://bugs.launchpad.net/devstack/+bug/1068386 | 14:02 |
Hitesh | garyk: Hi Gary | 14:02 |
uvirtbot | Launchpad bug 1068386 in devstack "Bad path for GLANCE_BIN_DIR on stack.sh first run" [Undecided,New] | 14:02 |
Hitesh | garyk: Can you tell me what could be this error, Traceback (most recent call last): File "/usr/local/bin/quantum-server", line 8, in <module> load_entry_point('quantum==2012.2', 'console_scripts', 'quantum-server')() File "/usr/local/lib/python2.7/site-packages/quantum-2012.2-py2.7.egg/quantum/server/__init__.py", line 40, in main quantum_service = service.serve_wsgi(service.QuantumApiService) File "/usr/local/lib | 14:03 |
* danpb is really surprised how devstack could work for anyone, as its written currently | 14:03 | |
garyk | Hitesh: hi, is this from packages? | 14:04 |
*** oneiroi has joined #openstack-dev | 14:04 | |
Hitesh | garyk: http://paste.openstack.org/show/26139/ | 14:04 |
Hitesh | garyk: when I started the service, its giving me error like this | 14:05 |
garyk | Hitesh: the problem is that you have the core_plugin as quantum.plugins.sample.SamplePlugin.FakePlugin | 14:05 |
Hitesh | garyk: did I miss some packeges to be installed? | 14:05 |
Hitesh | garyk: Oh.. | 14:06 |
garyk | Hitesh: ubuntu/fedora? | 14:06 |
Hitesh | garyk: for the test purpose, where should I point it? | 14:06 |
Hitesh | garyk: RedHAt | 14:06 |
garyk | Hitesh: please take a look at https://fedoraproject.org/wiki/QA:Testcase_Quantum_V2#Setup | 14:07 |
openstackgerrit | A change was merged to openstack/nova: Remove nova.flags https://review.openstack.org/16275 | 14:07 |
garyk | Hitesh: for example sudo quantum-server-setup --plugin openvswitch => openvswitch will be used as the plugin | 14:07 |
openstackgerrit | A change was merged to openstack/glance: Stop logging all registry client exceptions https://review.openstack.org/16347 | 14:07 |
*** mrunge is now known as mrunge_afk | 14:08 | |
garyk | Hitesh: it may be simplest to start with the linuxbridge plugin with RHEL | 14:08 |
afazekas | jaypipes: ping | 14:08 |
Hitesh | garyk: Ok.. | 14:09 |
*** ayoung has joined #openstack-dev | 14:09 | |
Hitesh | garyk: Also, I don;t want to use keystone as of now, so auth_strategy=no_auth is right? | 14:09 |
*** rushiagr has left #openstack-dev | 14:10 | |
garyk | Hitesh: yes. you will also need to ensure that the paste file is updated to remove the keystone processing | 14:10 |
garyk | Hitesh: please note that I have not done this :). It is on my to do list to check ... | 14:10 |
Hitesh | garyk: Oh...ok | 14:11 |
*** pabelanger has joined #openstack-dev | 14:11 | |
Hitesh | garyk: Let me check, I'll update on this :) | 14:11 |
garyk | Hitesh: thanks. maybe you can write a wiki on how to use quantum without keystone. this could be nice | 14:11 |
Hitesh | garyk: Cool, | 14:12 |
*** rpedde_away is now known as rpedde | 14:12 | |
jaypipes | afazekas: hi! :) | 14:13 |
*** littleidea has joined #openstack-dev | 14:14 | |
*** spn has quit IRC | 14:14 | |
afazekas | jaypipes: How can I help in the missing BOTO_ config variables issue ? | 14:15 |
*** spn has joined #openstack-dev | 14:15 | |
jaypipes | afazekas: gimme about 15 minutes. I'll push the required devstack changes. | 14:15 |
afazekas | jaypipes: thank you | 14:16 |
jaypipes | np | 14:16 |
diganta | hi jaypipes | 14:16 |
jaypipes | diganta: hello! | 14:17 |
*** Tross has left #openstack-dev | 14:17 | |
diganta | can u help me jaypipes i am getting some error during running ./ run_tests.sh on nova code ? | 14:18 |
Hitesh | garyk: ping | 14:18 |
*** alunduil has joined #openstack-dev | 14:18 | |
garyk | Hitesh: hi | 14:18 |
Hitesh | garyk: Do you have a link for configure linuxbridge + fedore/REHL? | 14:18 |
jaypipes | diganta: I can try. could you pastebin what you are running into? | 14:19 |
diganta | yeah | 14:19 |
garyk | Hitesh: let me dig around and see if i can find something. you can start by just performing the commends and replacing the openvswicth with linuxbridge | 14:19 |
Hitesh | ok | 14:19 |
Hitesh | garyk: Ok | 14:19 |
*** alunduil has quit IRC | 14:20 | |
*** alunduil has joined #openstack-dev | 14:20 | |
diganta | jaypipes: when i am running ./run_tests.sh output http://fpaste.org/ZZKV/ | 14:20 |
*** winston-d has joined #openstack-dev | 14:21 | |
jaypipes | diganta: as described in the message, try running nosetests alone to see what python errors might be occurring.. so do this: nosetests -svx nova | 14:22 |
*** sagar_nikam has joined #openstack-dev | 14:23 | |
garyk | Hitesh: http://d.hatena.ne.jp/enakai00/20121118/1353226066 | 14:23 |
*** alexpilotti has joined #openstack-dev | 14:23 | |
*** networkstatic has joined #openstack-dev | 14:24 | |
Hitesh | garyk: ops...its seems it has blocked by my org porxy | 14:24 |
diganta | ok jaypipes | 14:25 |
Hitesh | garyk: I'll check it | 14:27 |
Hitesh | garyk: :) | 14:27 |
Hitesh | garyk: let me ask Dan about paste config for Keystone | 14:30 |
diganta | jaypipes: http://fpaste.org/bhac/ , i think it is ok ? | 14:30 |
*** timello has joined #openstack-dev | 14:30 | |
zul | mordred: ping have you seen this before? http://pastebin.ubuntu.com/1370166/ | 14:30 |
Hitesh | garyk: can you guess whom should I ping? | 14:30 |
garyk | Hitesh: sorry I do not follow - regarding running with keystone disabled? | 14:31 |
jaypipes | diganta: yep, looks ok to me! | 14:31 |
jaypipes | afazekas: question for you... | 14:32 |
diganta | ok thanku jaypipes | 14:32 |
*** littleidea has quit IRC | 14:32 | |
jaypipes | afazekas: do you want me to issue a call to keystone ec2-credentials-create to create credentials? if so, what user should I do that for? | 14:32 |
*** mrodden has joined #openstack-dev | 14:34 | |
*** amotoki has joined #openstack-dev | 14:35 | |
jaypipes | afazekas: so, it looks to me that your tests are using the "regular" compute user/tenant. Is that correct? | 14:36 |
jaypipes | afazekas: in other words, you are using the tempest.openstack.Manager class' default *client_args when constructing your ec2_client and s3_client | 14:36 |
afazekas | jaypipes: just if the AWS creadentials missing | 14:36 |
jaypipes | afazekas: yes, but how do I know which AWS user's credentials to create? | 14:37 |
afazekas | jaypipes: this is a fallback mechanism | 14:37 |
jaypipes | afazekas: since by default, each tempest compute test case creates a new tenant/user for use in the test. | 14:37 |
afazekas | jaypipes: it could work with any users AWS credentials | 14:38 |
afazekas | jaypipes: If you use admin credentials it triggers a volume status bug | 14:38 |
jaypipes | afazekas: problem is that ini setup_package(), line 72 of tempest/tests/boto/__init__.py | 14:38 |
Hitesh | garyk: but Gary that link will described, setup and configuration from packeges | 14:38 |
jaypipes | afazekas: you set an error if the EC2 credentials have not been set | 14:39 |
Hitesh | garyk: I have installed from source :) | 14:39 |
jaypipes | afazekas: whereas the compute tests create a new user in the setUpClass() method of the base test, and no EC2 credentials will be created before the setup_package() is run. | 14:39 |
Hitesh | garyk: I installed all the things from scratch and from source code | 14:39 |
jaypipes | afazekas: that make sense? | 14:39 |
afazekas | jaypipes: tha fallbeck creates ec2 credentials if it missing | 14:40 |
jaypipes | afazekas: could you point me to where it does that? | 14:40 |
afazekas | jaypipes: The missing test happens after a connection test and credentials creation on line 72 | 14:41 |
jaypipes | afazekas: sorry, I'm not seeing where credentials are created if they are missing... could you give me a file and line number? | 14:42 |
*** japage has joined #openstack-dev | 14:43 | |
*** mmcloud has quit IRC | 14:43 | |
*** ayoung has quit IRC | 14:44 | |
afazekas | jaypipes: https://review.openstack.org/#/c/14689/15/tempest/services/boto/__init__.py line 61 | 14:44 |
jaypipes | aha! | 14:44 |
jaypipes | afazekas: ty :) | 14:44 |
jaypipes | afazekas: ok, so if I leave the BOTO_AWS_KEY and BOTO_AWS_SECRET values blank in the config file, we will be OK, then, right? | 14:45 |
afazekas | jaypipes: yes, I usually not define these. Missing tenant can be problem | 14:46 |
*** mmcloud has joined #openstack-dev | 14:46 | |
jaypipes | afazekas: cool, thx! | 14:47 |
afazekas | s/BOTO_AWS_KEY/BOTO_AWS_ACCESS/ | 14:49 |
*** ayoung has joined #openstack-dev | 14:50 | |
*** sacharya has joined #openstack-dev | 14:50 | |
jaypipes | afazekas: ok, done with devstack changes, now just going to test them. In the meantime, you need to fix lines 205-206 in https://review.openstack.org/#/c/14689/15/etc/tempest.conf.tpl. They are reversed :) | 14:54 |
afazekas | jaypipes: OK. I do not autocreate user/tenant just aws credentials | 14:55 |
jaypipes | afazekas: that's fine. | 14:56 |
*** mtreinish has joined #openstack-dev | 14:56 | |
jaypipes | afazekas: just that one little fixup (reversed access and secret) and we should be good to go. | 14:56 |
afazekas | jaypipes: can I resubmit now ? | 14:59 |
jaypipes | afazekas: sure thing. | 14:59 |
*** sacharya has quit IRC | 14:59 | |
*** almaisan-away is now known as al-maisan | 14:59 | |
jaypipes | afazekas: it won't pass jenkins of course, until the devstack patch is in, but you can push that fix now. | 14:59 |
*** ijw1 has joined #openstack-dev | 15:00 | |
afazekas | jaypipes: I can wait little more, in order to not spam everybody without a need | 15:01 |
jaypipes | afazekas: so, running the tests with a generated conf, I get skips: | 15:04 |
jaypipes | http://paste.openstack.org/show/26146/ | 15:04 |
jaypipes | afazekas: here is the conf that was generated: http://paste.openstack.org/show/26147/ | 15:04 |
*** ijw1 has quit IRC | 15:08 | |
*** ijw1 has joined #openstack-dev | 15:08 | |
openstackgerrit | A change was merged to openstack/nova: Fix _setup_routes() signature in APIRouter https://review.openstack.org/14937 | 15:10 |
*** annegentle_ has joined #openstack-dev | 15:11 | |
*** danwent has joined #openstack-dev | 15:13 | |
Hitesh | danwent: Hi Dan, | 15:16 |
jaypipes | afazekas: any ideas? is there something gllaringly wrong with the conf that I generated? | 15:16 |
Hitesh | danwent: I just installed Quantum-server from source, and I want to validate the set up with sqlite in memory DB, can you tell me how should I go? | 15:17 |
afazekas | jaypipes: It can be some version differnce issue. You have keystone client , right ? | 15:18 |
jaypipes | afazekas: yes... lemme check the version | 15:19 |
jaypipes | afazekas: and of course, it has no --version option... :( | 15:19 |
Hitesh | danwent: I ran the run_test.py unit, its give me this error http://paste.openstack.org/show/26148/ | 15:19 |
*** eharney has joined #openstack-dev | 15:20 | |
*** eharney has joined #openstack-dev | 15:20 | |
jaypipes | afazekas: it is devstack, though, and I use RECLONE=yes, so python-keystoneclient is installed via source and should be the latest commit on trunk. | 15:20 |
Hitesh | arosen: Hi Aron, | 15:21 |
Hitesh | arosen: Can you tell me what could be the problem http://paste.openstack.org/show/26148/ ? | 15:21 |
*** mrodden has quit IRC | 15:21 | |
afazekas | jaypipes: just to make sure, You are using the version submitted today ? | 15:22 |
*** littleidea has joined #openstack-dev | 15:23 | |
jaypipes | afazekas: yep. I did a git review -d 14689 to bring down your code from Gerrit. | 15:24 |
*** dhellmann has joined #openstack-dev | 15:26 | |
openstackgerrit | A change was merged to openstack/swift: Fix lazy-listing of object segments. https://review.openstack.org/16015 | 15:28 |
afazekas | https://review.openstack.org/#/c/14689/15/tempest/tests/boto/__init__.py line 75,76 89,90 should be deleted for getting the exception | 15:28 |
afazekas | jaypipes: I will add logging there | 15:30 |
*** TerryH has joined #openstack-dev | 15:32 | |
jaypipes | afazekas: ok, push up a new patchset and I will pull it locallly | 15:32 |
afazekas | jaypipes: what is your boto version ? | 15:33 |
jaypipes | afazekas: 2.1.1 | 15:34 |
*** sacharya has joined #openstack-dev | 15:37 | |
*** drewlander has joined #openstack-dev | 15:38 | |
afazekas | jaypipes: Mine is python-boto-2.5.2-2.fc18 , I hope I did not called a new function | 15:39 |
jaypipes | afazekas: lol, I have no idea :) could you check into it and see if there's been some API changes? | 15:40 |
*** brich1 has joined #openstack-dev | 15:40 | |
*** radez is now known as radez_g0n3 | 15:43 | |
*** gatuus has joined #openstack-dev | 15:44 | |
*** colinmcnamara has joined #openstack-dev | 15:45 | |
afazekas | jaypipes: bot version reproduces the issue | 15:46 |
afazekas | jaypipes: s/bot/boto/ | 15:47 |
jaypipes | afazekas: kk, so what to do? change to lower version or require the later version? | 15:47 |
*** dolphm has joined #openstack-dev | 15:47 | |
*** dolphm has quit IRC | 15:47 | |
*** dolphm has joined #openstack-dev | 15:47 | |
afazekas | I would like to require the newer version | 15:47 |
*** dolphm has quit IRC | 15:47 | |
jaypipes | afazekas: hmm, ok... but how long has the new version been out? what is common on deployed platforms? | 15:48 |
*** blamar has joined #openstack-dev | 15:48 | |
*** dolphm has joined #openstack-dev | 15:48 | |
* jaypipes curious... | 15:48 | |
*** al-maisan is now known as almaisan-away | 15:48 | |
*** jimfehlig has joined #openstack-dev | 15:50 | |
afazekas | jaypipes: http://pypi.python.org/pypi/boto/2.5.2 | 15:53 |
*** oNeToWn has joined #openstack-dev | 15:53 | |
*** koolhead17 has joined #openstack-dev | 15:54 | |
afazekas | jaypipes: 2.2.1 does not have this issue | 15:54 |
openstackgerrit | A change was merged to openstack/ceilometer: Handle nova.flags removal https://review.openstack.org/16437 | 15:54 |
jaypipes | afazekas: ah, so anything >=2.2.1 would be fine, too? | 15:55 |
*** alof has joined #openstack-dev | 15:55 | |
*** rnirmal has joined #openstack-dev | 15:55 | |
jaypipes | afazekas: please make the tools/pip-requires in Tempest have the 2.2.1 then (it is 2.1.1 now...) | 15:56 |
jaypipes | afazekas: yep, I changed the line to be boto>=2.2.1, then did sudo pip install -r tools/pip-requires and re-ran tests, everything works. | 15:58 |
*** mrodden has joined #openstack-dev | 15:58 | |
*** esp1 has joined #openstack-dev | 15:58 | |
*** boden has joined #openstack-dev | 15:59 | |
boden | [Name/Date] Boden Russell/11.19.2012 | 15:59 |
boden | [Friday + Today] Reg business -- a few GW + SSO issues which have resulted in defects. Continued work on the SCE/OS integraiton design/approach. Met with Dave + Todd later on Friday. Today working on cleaning up design based on that discussion. Plan to get it out for review by EOD tomorrow if not earlier. | 15:59 |
boden | [Blockers] None | 15:59 |
*** zaitcev has joined #openstack-dev | 16:00 | |
jaypipes | afazekas: and here's the devstack patchset ready to go: https://review.openstack.org/#/c/16438/ | 16:00 |
boden | sorry wrong chat room! | 16:00 |
*** adalbas has joined #openstack-dev | 16:00 | |
afazekas | jaypipes: Thank you. I will remove the logging lines or have them to log only in really unexpected case | 16:01 |
*** reidrac has quit IRC | 16:02 | |
afazekas | jaypipes: What about the s3-materials ? | 16:02 |
jaypipes | afazekas: what about them? | 16:03 |
jaypipes | afazekas: they are all in the file.. | 16:03 |
afazekas | jaypipes: Do they exists ? | 16:04 |
jaypipes | boden: good to see you working well with Dave and Todd. | 16:05 |
*** alobbs has quit IRC | 16:05 | |
jaypipes | afazekas: yes, they exist already in the devstack /opt/stack/devstack/files/ location. | 16:05 |
*** alobbs has joined #openstack-dev | 16:05 | |
boden | jaypipes :) my bad... x-chat switch rooms just as I pasted the message... user error | 16:05 |
mordred | zul: yeah - you have two change-id lines in that message | 16:06 |
jaypipes | boden: lol, no worries, was just pulling your leg :) | 16:07 |
*** andrewbogott_afk is now known as andrewbogott | 16:07 | |
zul | mordred: yeah figured it out | 16:07 |
*** rushiagr has joined #openstack-dev | 16:07 | |
*** amotoki has quit IRC | 16:08 | |
*** radez_g0n3 is now known as radez | 16:08 | |
*** ayoung has quit IRC | 16:10 | |
afazekas | jaypipes: Thank you. I keep these exception logging, and change the boto version, and resubmit | 16:11 |
*** boris-42 has joined #openstack-dev | 16:11 | |
*** e1mer has quit IRC | 16:13 | |
*** datsun180b has joined #openstack-dev | 16:14 | |
*** davidlenwell has quit IRC | 16:14 | |
*** torandu has joined #openstack-dev | 16:15 | |
*** sagar_nikam has quit IRC | 16:19 | |
*** ijw1 has quit IRC | 16:23 | |
*** otherwiseguy has joined #openstack-dev | 16:23 | |
*** ayoung has joined #openstack-dev | 16:24 | |
afazekas | jaypipes: Note: the s3 materials are sensitive for changes in the PKI keys/certs | 16:24 |
afazekas | jaypipes: AFAIK, boto alone is not able to create manifests | 16:26 |
*** maxiz_ has quit IRC | 16:28 | |
*** mmcloud has quit IRC | 16:28 | |
*** davidlenwell has joined #openstack-dev | 16:29 | |
*** mmcloud has joined #openstack-dev | 16:29 | |
*** mmcloud has quit IRC | 16:30 | |
*** mmcloud has joined #openstack-dev | 16:30 | |
*** Gordonz has joined #openstack-dev | 16:31 | |
openstackgerrit | A change was merged to openstack/quantum: All egress traffic allowed by default should be implied https://review.openstack.org/16132 | 16:31 |
*** mmagr has quit IRC | 16:36 | |
jaypipes | afazekas: looks like tempest/tests/boto/test_s3_ec2_images.py is missing an import nose... http://paste.openstack.org/show/26149/ | 16:36 |
afazekas | jaypipes: It should be fixed in the last review version | 16:38 |
*** maxiz_ has joined #openstack-dev | 16:40 | |
jaypipes | afazekas: coolio. thx man! | 16:41 |
*** littleidea has quit IRC | 16:42 | |
*** mrunge_afk has quit IRC | 16:42 | |
*** corXi has quit IRC | 16:43 | |
*** saurabhs has joined #openstack-dev | 16:46 | |
*** samkottler|afk is now known as samkottler | 16:47 | |
*** edygarcia has joined #openstack-dev | 16:47 | |
*** garyk has quit IRC | 16:49 | |
*** gatuus has quit IRC | 16:49 | |
*** gatuus has joined #openstack-dev | 16:50 | |
*** samkottler is now known as samkottler|afk | 16:54 | |
dolphm | ayoung: fix for a bad rebase you approved :P https://review.openstack.org/#/c/16290/ | 16:56 |
ayoung | dolphm, approved | 16:57 |
dolphm | ayoung: also, thanks for looking over v3 policies! (haven't looked at your feedback yet though) | 16:58 |
ayoung | dolphm, BTW, I realize we are in a race to claim the 006 sql update. If you get a chance to hit https://review.openstack.org/#/c/16322/ it will make it possible for you to resubmit policies with 007 | 16:58 |
*** gatuus has quit IRC | 16:58 | |
ayoung | and lets face it, 007 is cooler than 006 | 16:58 |
afazekas | jaypipes: I need to leave soon, Let me know If you need any action from my side | 16:59 |
*** reed has joined #openstack-dev | 16:59 | |
dolphm | ayoung: no worries, i'm aware (and guess yours will land first) | 16:59 |
dolphm | ayoung: i'm actually looking at that review right now anyway | 16:59 |
jaypipes | afazekas: will do. thx man! | 16:59 |
ayoung | cool | 16:59 |
*** dingus9 has joined #openstack-dev | 17:00 | |
*** sacharya1 has joined #openstack-dev | 17:01 | |
*** rburon has quit IRC | 17:01 | |
afazekas | jaypipes: thx man ! | 17:01 |
*** sacharya has quit IRC | 17:01 | |
*** epim has joined #openstack-dev | 17:03 | |
*** danpb has quit IRC | 17:04 | |
*** hemna has joined #openstack-dev | 17:04 | |
*** annegentle_ has quit IRC | 17:06 | |
*** nunosantos has joined #openstack-dev | 17:07 | |
*** sgran has joined #openstack-dev | 17:08 | |
*** edygarcia has quit IRC | 17:11 | |
*** littleidea has joined #openstack-dev | 17:17 | |
*** anniec has joined #openstack-dev | 17:20 | |
*** afazekas has quit IRC | 17:20 | |
*** esp1 has quit IRC | 17:20 | |
*** brich1 has quit IRC | 17:20 | |
*** anniec has quit IRC | 17:20 | |
*** anniec has joined #openstack-dev | 17:21 | |
*** kgriffs has left #openstack-dev | 17:22 | |
*** esp1 has joined #openstack-dev | 17:22 | |
*** jcmartin has joined #openstack-dev | 17:27 | |
*** markmcclain has joined #openstack-dev | 17:28 | |
*** anniec has quit IRC | 17:31 | |
*** esp1 has quit IRC | 17:38 | |
*** esp1 has joined #openstack-dev | 17:38 | |
*** winston-d has quit IRC | 17:39 | |
*** esp1 has quit IRC | 17:39 | |
*** Mandell has joined #openstack-dev | 17:42 | |
*** ijw1 has joined #openstack-dev | 17:44 | |
*** ijw1 has quit IRC | 17:45 | |
*** ijw1 has joined #openstack-dev | 17:45 | |
dims | ttx, regarding the build flakiness (https://bugs.launchpad.net/nova/+bug/1079687). Looks like something kills all the process(es) just before the errors occur. any ideas where i can look? | 17:50 |
uvirtbot | Launchpad bug 1079687 in nova "Flaky failures of instances to reach BUILD and ACTIVE states" [Undecided,New] | 17:50 |
*** winston-d has joined #openstack-dev | 17:51 | |
*** yidclare has joined #openstack-dev | 17:57 | |
*** kaganos has joined #openstack-dev | 17:58 | |
openstackgerrit | A change was merged to openstack/nova: Compact pre-Grizzly database migrations. https://review.openstack.org/16334 | 17:59 |
openstackgerrit | A change was merged to openstack/keystone: Refix transient test failures https://review.openstack.org/16290 | 18:00 |
openstackgerrit | A change was merged to openstack/ceilometer: Fix mysql_engine option type https://review.openstack.org/16419 | 18:02 |
*** maploin has quit IRC | 18:02 | |
openstackgerrit | A change was merged to openstack/nova: Update db entry before upate the DHCP host file. https://review.openstack.org/16072 | 18:04 |
*** thingee has joined #openstack-dev | 18:04 | |
*** jcooley has joined #openstack-dev | 18:05 | |
*** eglynn has quit IRC | 18:07 | |
openstackgerrit | A change was merged to openstack/nova: Simplify libvirt volume testing code. https://review.openstack.org/16035 | 18:08 |
*** rushiagr has quit IRC | 18:12 | |
*** danpb has joined #openstack-dev | 18:13 | |
*** rushiagr has joined #openstack-dev | 18:14 | |
openstackgerrit | A change was merged to openstack/nova: Drop unused PostgreSQL sequences from Folsom. https://review.openstack.org/16443 | 18:14 |
*** rushiagr has left #openstack-dev | 18:15 | |
*** jcooley has quit IRC | 18:15 | |
*** zing has quit IRC | 18:15 | |
*** esp1 has joined #openstack-dev | 18:17 | |
*** CaptTofu has joined #openstack-dev | 18:18 | |
*** jcooley has joined #openstack-dev | 18:19 | |
*** vipul|away is now known as vipul | 18:21 | |
*** eglynn has joined #openstack-dev | 18:21 | |
*** darraghb has quit IRC | 18:22 | |
*** mnewby has joined #openstack-dev | 18:23 | |
openstackgerrit | A change was merged to openstack/quantum: fix incorrect kwarg param name for region with l3-agent https://review.openstack.org/16446 | 18:24 |
*** danpb has quit IRC | 18:24 | |
*** eglynn has quit IRC | 18:26 | |
harlowja | is it possible to have a search feature for "openstack-dev" that doesn't involve just using your email client, does one exist? | 18:29 |
harlowja | does some other email list 'aggegation' service (besides google, ha) provide this | 18:30 |
harlowja | ? | 18:30 |
harlowja | nm, answered my own question, http://www.gossamer-threads.com/lists/openstack/dev/ | 18:30 |
*** yash256 has joined #openstack-dev | 18:30 | |
*** slackguru has quit IRC | 18:31 | |
*** thimble has quit IRC | 18:31 | |
yash256 | hello, can anyone tell me more about the kiosk mobile app development? | 18:32 |
*** maoy has joined #openstack-dev | 18:37 | |
*** yash256 has quit IRC | 18:42 | |
*** otherwiseguy has quit IRC | 18:43 | |
*** jcru has joined #openstack-dev | 18:44 | |
*** jcooley has quit IRC | 18:44 | |
openstackgerrit | A change was merged to openstack/python-glanceclient: added --version as new parameter https://review.openstack.org/15962 | 18:48 |
*** vipul is now known as vipul|away | 18:48 | |
*** timjr has joined #openstack-dev | 18:48 | |
*** brich1 has joined #openstack-dev | 18:49 | |
openstackgerrit | A change was merged to openstack/nova: Use the auth_token middleware from keystoneclient https://review.openstack.org/16346 | 18:52 |
*** strife25 has quit IRC | 18:52 | |
openstackgerrit | A change was merged to openstack/python-glanceclient: Set useful boolean flag metavars https://review.openstack.org/16444 | 18:52 |
*** dubsquared has joined #openstack-dev | 18:56 | |
*** fc__ has quit IRC | 18:56 | |
openstackgerrit | A change was merged to openstack/python-glanceclient: Make image sizes more readable for humans https://review.openstack.org/15577 | 18:56 |
*** derekh has quit IRC | 19:01 | |
*** garyk has joined #openstack-dev | 19:02 | |
*** Ryan_Lane has joined #openstack-dev | 19:03 | |
ayoung | vishy, who can approve and merge https://review.openstack.org/#/c/16191/1 | 19:03 |
openstackgerrit | A change was merged to openstack/glance: Audit error logging https://review.openstack.org/16349 | 19:03 |
openstackgerrit | A change was merged to openstack/glance: Remove unused imports https://review.openstack.org/16332 | 19:04 |
*** strife25 has joined #openstack-dev | 19:04 | |
dingus9 | hey guys if I fix issues with a gerrit commit, do I need to create a new commit or amend | 19:04 |
clarkb | dingus9: amending the existing commit and repushing to gerrit is the way to update an existing change in gerrit | 19:05 |
*** sstent has joined #openstack-dev | 19:07 | |
dingus9 | clarkb: Thanks… also pep8 failed in jenkins… but it looked like it was having issues running the pep8 command | 19:07 |
*** edygarcia has joined #openstack-dev | 19:08 | |
clarkb | dingus9: do you have a link? | 19:08 |
clarkb | either to the change or the jenkins job | 19:08 |
dingus9 | https://review.openstack.org/#/c/16441/ | 19:08 |
*** almaisan-away is now known as al-maisan | 19:09 | |
clarkb | dingus9: novaclient/v1_1/shell.py:2128:1: E304 blank lines found after function decorator is the error | 19:09 |
mordred | dingus9: novaclient/v1_1/shell.py:2128:1: E304 blank lines found after function decorator | 19:09 |
mordred | gah | 19:09 |
mordred | clarkb beat me to it | 19:09 |
*** oneiroi has quit IRC | 19:10 | |
*** al-maisan is now known as almaisan-away | 19:10 | |
dingus9 | oh | 19:10 |
dingus9 | i'll run pep8 locally | 19:11 |
*** brich1 has quit IRC | 19:11 | |
*** radez is now known as radez_g0n3 | 19:11 | |
dingus9 | I must have misread the log file | 19:12 |
*** lifeless has quit IRC | 19:12 | |
*** Ryan_Lane has quit IRC | 19:13 | |
*** Ryan_Lane has joined #openstack-dev | 19:14 | |
*** arbrandes has quit IRC | 19:14 | |
*** lifeless has joined #openstack-dev | 19:15 | |
*** zing has joined #openstack-dev | 19:17 | |
*** metral has quit IRC | 19:18 | |
dingus9 | what level of pep8 does code need to meet? | 19:19 |
*** annegentle_ has joined #openstack-dev | 19:22 | |
*** jpich has quit IRC | 19:25 | |
*** anniec has joined #openstack-dev | 19:26 | |
dingus9 | could someone double check my stuff, It's a learning process to get this right. https://review.openstack.org/#/c/16441/ | 19:27 |
clarkb | dingus9: you need to pass the tox -epep8 | 19:27 |
clarkb | (the different projects have slightly different requirements as they meet pep8 to different levels) | 19:27 |
clarkb | dingus9: patchset 3 passes pep8. Jenkins hasn't reported back yet because it is running one additional test | 19:28 |
dingus9 | ok… so for python-novaclient, would I just run run_tests.sh? | 19:28 |
clarkb | `tox -epep8` is what Jenkins runs and is the preferred method to run pep8 tests | 19:29 |
dingus9 | I feel bad that I submitted such crappy code the first couple of times | 19:29 |
clarkb | tox -epy27 and tox -epy26 depending on your version of python should be run as well | 19:29 |
dingus9 | ok pip install tox | 19:29 |
*** alexpilotti has quit IRC | 19:30 | |
*** eglynn has joined #openstack-dev | 19:30 | |
*** edygarcia has quit IRC | 19:31 | |
*** otherwiseguy has joined #openstack-dev | 19:31 | |
*** Tross has joined #openstack-dev | 19:33 | |
*** arbrandes has joined #openstack-dev | 19:37 | |
*** vipul|away is now known as vipul | 19:37 | |
openstackgerrit | A change was merged to openstack/python-glanceclient: Simplify human-readable size output https://review.openstack.org/16451 | 19:39 |
*** dubsquared1 has joined #openstack-dev | 19:39 | |
openstackgerrit | A change was merged to openstack/keystone: Import auth_token middleware from keystoneclient https://review.openstack.org/16363 | 19:39 |
sgran | hi, | 19:40 |
sgran | can I ask someone to cast an eye over https://bugs.launchpad.net/glance/+bug/1080739 if they have a moment? | 19:40 |
uvirtbot | Launchpad bug 1080739 in python-glanceclient "python-glanceclient: Not region aware" [Undecided,New] | 19:40 |
sgran | it looks like fairly straight forward fix, but I don't want to waste people's time on a wild goose chase | 19:40 |
*** jcooley has joined #openstack-dev | 19:41 | |
*** dubsquared has quit IRC | 19:42 | |
*** adjohn has joined #openstack-dev | 19:42 | |
bcwaldon | sgran: I'll definitely look at it | 19:47 |
bcwaldon | sgran: gearing up to release python-glanceclient today | 19:47 |
bcwaldon | sgran: trying to blow through as much as possible before I do so | 19:47 |
sgran | awesome, thanks | 19:47 |
esp1 | grapex: so far tests alright on my instance. I do get a weird error message but I have not chased it down yet. py26 runtests: commands[1] | 19:48 |
esp1 | Traceback (most recent call last): | 19:48 |
esp1 | File "run_tests.py", line 7, in <module> | 19:48 |
esp1 | from wsgi_intercept.httplib2_intercept import install as wsgi_install | 19:48 |
esp1 | ImportError: No module named wsgi_intercept.httplib2_intercept | 19:48 |
esp1 | ERROR: InvocationError: '/mnt/opt/stack/reddwarf/.tox/py26/bin/python run_tests.py' | 19:48 |
esp1 | py27 create: /mnt/opt/stack/reddwarf/.tox/py27 | 19:48 |
esp1 | py27 installdeps: -r/mnt/opt/stack/reddwarf/tools/pip-requires, -r/mnt/opt/stack/reddwarf/tools/test-requires, setuptools_git>=0.4 | 19:48 |
esp1 | py27 sdist-inst: /mnt/opt/stack/reddwarf/.tox/dist/reddwarf-2012.1.zip | 19:48 |
esp1 | py27 runtests: commands[0] | 19:48 |
esp1 | WARNING:test command found but not installed in testenv | 19:48 |
esp1 | cmd: /bin/cat | 19:48 |
esp1 | env: /mnt/opt/stack/reddwarf/.tox/py27 | 19:48 |
esp1 | Maybe forgot to specify a dependency? | 19:48 |
bcwaldon | sgran: the bug report claims there's something attached, yet I don't see any attachments | 19:48 |
sgran | hmm, let me look | 19:48 |
*** mikal has quit IRC | 19:48 | |
sgran | it seems to have been eaten, indeed | 19:49 |
sgran | I'll attach it again | 19:49 |
esp1 | grapex: SlickNik: Ran 160 tests in 2.612s | 19:49 |
esp1 | OK (SKIP=7) | 19:49 |
esp1 | pep8 create: /mnt/opt/stack/reddwarf/.tox/pep8 | 19:49 |
esp1 | pep8 installdeps: pep8, setuptools_git>=0.4 | 19:49 |
esp1 | pep8 sdist-inst: /mnt/opt/stack/reddwarf/.tox/dist/reddwarf-2012.1.zip | 19:49 |
esp1 | pep8 runtests: commands[0] | 19:49 |
esp1 | _______________________________________________________________________ summary ________________________________________________________________________ | 19:49 |
esp1 | ERROR: py26: commands failed | 19:49 |
esp1 | py27: commands succeeded | 19:49 |
esp1 | pep8: commands succeeded | 19:49 |
*** mikal has joined #openstack-dev | 19:50 | |
*** novas0x2a|laptop has joined #openstack-dev | 19:51 | |
sgran | bcwaldon: added now | 19:51 |
bcwaldon | sgran: thanks, will look into it meow | 19:51 |
*** drewlander has quit IRC | 19:51 | |
*** edygarcia has joined #openstack-dev | 19:52 | |
sgran | great, thanks | 19:52 |
openstackgerrit | A change was merged to openstack/nova: remove old baremetal driver https://review.openstack.org/16326 | 19:53 |
mordred | devananda: ^^ woot | 19:53 |
devananda | =D | 19:55 |
*** colinmcnamara has quit IRC | 19:55 | |
zykes- | mordred: will you make libra available as a backend for quantum ? | 19:56 |
*** colinmcnamara has joined #openstack-dev | 19:56 | |
mordred | zykes-: I have nothing to do with libra | 19:56 |
mordred | LinuxJedi: ^^ ? | 19:56 |
zykes- | mordred: I thought you said you worked in LBaaS stuff ;p | 19:56 |
mordred | mordred: I run the OpenStack CI and Developer Infrastructure systems | 19:56 |
mordred | zykes-: | 19:56 |
mordred | gah | 19:56 |
zykes- | ah ok :) | 19:57 |
zykes- | nice nice | 19:57 |
mordred | zykes-: I run the OpenStack CI and Developer Infrastructure systems | 19:57 |
*** edygarcia has quit IRC | 19:57 | |
clarkb | clarkb: er I mean mordred: :P | 19:57 |
mordred | so, in some ways, I'm involved in every bloody project that's running around this joint | 19:57 |
* mordred punches clarkb in the zykes- | 19:57 | |
LinuxJedi | zykes-: not initially, but I believe most of the components can be modified to work with Quantum's LBaaS solution | 19:57 |
zykes- | mordred: :o | 19:57 |
zykes- | LinuxJedi: what does libra do exactly ? I asked before but no answer | 19:58 |
LinuxJedi | zykes-: sorry, I must have missed the question before, so: | 19:58 |
LinuxJedi | zykes-: it is currently 3 parts of an LBaaS solution | 19:58 |
zykes- | ok ? | 19:59 |
LinuxJedi | a pool manager which makes sure there is enough hot spare node | 19:59 |
*** asalkeld has quit IRC | 19:59 | |
*** strife25 has quit IRC | 19:59 | |
LinuxJedi | a worker which sits on the nodes and runs the LB (currently the only plugin for it is HAProxy) | 19:59 |
*** asalkeld has joined #openstack-dev | 19:59 | |
LinuxJedi | and a command line client | 19:59 |
LinuxJedi | the worker talks to an API server (which isn't part of libra) using gearman | 20:00 |
zykes- | so in other words it would be like a like any other things then with quantum lbaas LinuxJedi | 20:00 |
zykes- | the API being Atlas ? | 20:00 |
LinuxJedi | I don't know enough about the Quantum LBaaS solution to comment, others in my team are working with it | 20:00 |
LinuxJedi | the API is Atlas, yes | 20:01 |
zykes- | yeh, it would like replacing atlas with quantum then | 20:01 |
zykes- | 1 less api ;p | 20:01 |
*** alexpilotti has joined #openstack-dev | 20:01 | |
LinuxJedi | there are parts of it which can be used for other things. The pool manager has been made generic enough that it can be used to spin up nodes for any project | 20:02 |
LinuxJedi | just add whatever backend you want to state how many free nodes there are | 20:03 |
*** harlowja_ has joined #openstack-dev | 20:05 | |
*** timjr_ has joined #openstack-dev | 20:06 | |
zykes- | LinuxJedi: what does the worker do really ? | 20:06 |
*** anniec has quit IRC | 20:06 | |
zykes- | ehm, nvm | 20:06 |
mordred | LinuxJedi: just out of curiosity ... can your pool manager handle multiple api endpoint sources? | 20:07 |
zykes- | can't the worker talk to quantum as well ? | 20:07 |
*** timjr has quit IRC | 20:07 | |
*** timjr_ is now known as timjr | 20:07 | |
mordred | LinuxJedi: (thinking about devstack-gate's pool here) | 20:07 |
LinuxJedi | mordred: with some minor adjustments it should. That was a feature we were going to do early next year | 20:07 |
*** harlowja has quit IRC | 20:07 | |
*** harlowja_ is now known as harlowja | 20:07 | |
mordred | ok. no rush on my side - but you know I how I like to reuse things | 20:08 |
mordred | jeblair: ^^ | 20:08 |
mordred | jeblair: apparently libra has a generalized pool manager for keeping pools of nodes | 20:08 |
LinuxJedi | zykes-: not yet | 20:08 |
LinuxJedi | mordred: I believe pcrews is using it (or about to use it) to manage a local testing pool | 20:11 |
*** andrewbogott is now known as andrewbogott_afk | 20:11 | |
*** radez_g0n3 is now known as radez | 20:11 | |
mordred | LinuxJedi: once again, I register dismay that he is not doing this in #openstack-infra | 20:11 |
LinuxJedi | mordred: once someone gives the go-ahead to put the API code on gerrit he can | 20:12 |
*** AnilV4 has quit IRC | 20:12 | |
mordred | LinuxJedi: there are many things I'm dismayed about | 20:12 |
LinuxJedi | mordred: ++ | 20:13 |
LinuxJedi | mordred: I'm feeling that increasingly lately :) | 20:13 |
*** AnilV4 has joined #openstack-dev | 20:13 | |
mordred | LinuxJedi: and many people I have on my list to yell at for senslessly doing things internally rather than publically | 20:13 |
* mordred cries | 20:13 | |
*** strife25 has joined #openstack-dev | 20:14 | |
*** AnilV_ has joined #openstack-dev | 20:14 | |
LinuxJedi | mordred: you know if it was up to me we would be doing things differently :) It will get better as we move to your stuff | 20:14 |
*** jog0 has joined #openstack-dev | 20:15 | |
*** turul64 has joined #openstack-dev | 20:15 | |
zykes- | LinuxJedi: api code for what ? | 20:16 |
LinuxJedi | zykes-: the API server, it uses Atlas API, but what it does with the API calls is very different | 20:17 |
*** AnilV4 has quit IRC | 20:18 | |
LinuxJedi | zykes-: and there are complications I can't really talk about which mean we can't put it on gerrit yet. I'm torn between working to fix that, working to meet my deadlines and working to work with a bigger LBaaS project instead :) | 20:18 |
zykes- | which is a bigger one LinuxJedi ? :p | 20:19 |
sdague | annegentle_: you around? | 20:19 |
LinuxJedi | zykes-: either Mirantis or Quantum | 20:20 |
LinuxJedi | although Quantum isn't ready for us right now and Mirantis is missing features (arguably our work would fit with Mirantis quite nicely if we make Mirantis asynchronous) | 20:20 |
*** zul has quit IRC | 20:21 | |
*** zul has joined #openstack-dev | 20:21 | |
zykes- | LinuxJedi: I think mirantis is working with the quantum crew to integrate equilibrium | 20:22 |
*** martine has joined #openstack-dev | 20:26 | |
LinuxJedi | zykes-: that is what I heard too | 20:26 |
annegentle_ | sdague: here! | 20:28 |
EmilienM | koolhead17: hi :) | 20:30 |
jeblair | mordred: that's great. I don't have time to re-write devstack-gate, but I'd love for other people to contribute. | 20:30 |
*** markvoelker has quit IRC | 20:30 | |
koolhead17 | EmilienM, hello. about to go sleep sir!! | 20:30 |
EmilienM | koolhead17: no worries, we will talk tomorrow | 20:31 |
EmilienM | koolhead17: I was waiting your review about doc | 20:31 |
EmilienM | koolhead17: for days :p | 20:31 |
koolhead17 | yes please. lets talk | 20:31 |
EmilienM | https://review.openstack.org/#/c/16096/ | 20:31 |
koolhead17 | EmilienM, yeah i know sir!! | 20:31 |
EmilienM | to merge it, we need one or 2 more review | 20:31 |
EmilienM | and then, I'll be able to improve it with other people too | 20:32 |
sdague | annegentle_: ok, so I think we've got the ci job in place to land the wadl file on a change to compute-api repo. Should I suck in the common.ent and see if it all works? or is there another way you'd like to trigger that change? | 20:32 |
koolhead17 | yes i am espacilly want to test the quantum part of the guide once/twice :) | 20:32 |
EmilienM | the quantum part is going to be improved. | 20:32 |
EmilienM | koolhead17: but I need review to merge it | 20:32 |
EmilienM | koolhead17: and then, continue the work | 20:32 |
EmilienM | koolhead17: Madkiss wants to fix some stuffs to | 20:32 |
lifeless | any quantum folk around at the moment ? getting a rootwrap error and seeking guidance on whether its a config issue or a bug | 20:33 |
EmilienM | s/to/too | 20:33 |
annegentle_ | sdague: I don't know of ways to pre-test the whole job other than to patch, approve, patch the content source, approve to trigger. The CI guys might have better ideas for ya. :) | 20:33 |
lifeless | http://paste.openstack.org/show/26164/ | 20:33 |
koolhead17 | EmilienM, so i would suggest why dont you re test the quantum part and push the fix for the same sir | 20:33 |
koolhead17 | doc *patch | 20:33 |
EmilienM | lifeless: you should run a wrong version of Quantum | 20:33 |
annegentle_ | EmilienM: koolhead17 we could merge it in without the www/install/index.html change? | 20:33 |
*** littleidea has quit IRC | 20:34 | |
koolhead17 | annegentle_, go ahead do it then :) | 20:34 |
EmilienM | koolhead17: this doc is working for me and for a lot of people | 20:34 |
lifeless | EmilienM: thats trunk - from devstack | 20:34 |
sdague | annegentle_: well, it should also trigger on any other changes to that tree, so if there is a safer one you want to try, we could do that too :) | 20:34 |
EmilienM | koolhead17: you can imagine I have not enough time to rebuild it | 20:34 |
koolhead17 | EmilienM, but i wanted to retest it | 20:34 |
EmilienM | lifeless: ouch | 20:34 |
*** vipul is now known as vipul|away | 20:34 | |
*** vipul|away is now known as vipul | 20:34 | |
annegentle_ | sdague: I've even inserted spaces to trigger, it's okay with me | 20:34 |
koolhead17 | EmilienM, as annegentle_ suggested we can do that !! | 20:34 |
zykes- | EmilienM: ! | 20:34 |
EmilienM | koolhead17: so you don't want to +1 it because you can't run Quantum ? | 20:34 |
annegentle_ | sdague: as long as I'm aware of what you're doing | 20:34 |
koolhead17 | EmilienM, i want to test that piece before doing anything!! | 20:35 |
koolhead17 | :) | 20:35 |
EmilienM | lifeless: if you meet a bug with devstack / trunk, you need to file a bug | 20:35 |
EmilienM | koolhead17: ok it's up to you | 20:36 |
koolhead17 | if you will allow me i can do that tomorrow as 1st thing. sounds good? | 20:36 |
EmilienM | koolhead17: but I won't change it before merging. As I told you, with some people we are ready to improve it, but we need something online and visible | 20:36 |
koolhead17 | EmilienM, also i wanted to keep the nova-network configuration as well along with quantum in the doc. You think we can do that? :) | 20:36 |
sdague | annegentle_: ok, let me throw in a simple space change then to give it a shot | 20:36 |
*** andrewbogott_afk is now known as andrewbogott | 20:36 | |
EmilienM | no. I wrote this doc with the goal to use quantum | 20:36 |
EmilienM | and it's working | 20:37 |
annegentle_ | sdague: cool, ready fire, trigger? :) | 20:37 |
EmilienM | zykes-: isn't it ? :) | 20:37 |
koolhead17 | EmilienM, i said as option not default!! :) | 20:37 |
zykes- | EmilienM: what ? | 20:37 |
koolhead17 | since nova-network is still supported we can keep both | 20:37 |
koolhead17 | zykes-, oHai sir | 20:38 |
EmilienM | zykes-: Quantum is working (basic features) with my guide, isn't it ? | 20:38 |
zykes- | EmilienM: yeh it is | 20:38 |
EmilienM | so please, we don't loose time : | 20:38 |
EmilienM | we merge it | 20:38 |
EmilienM | and continue the work then | 20:38 |
EmilienM | I've released this doc 2 months and a half ago | 20:38 |
annegentle_ | yeah I like the idea of merging before linking | 20:39 |
EmilienM | I don't want to waste time | 20:39 |
koolhead17 | EmilienM, +1 | 20:39 |
*** pabelanger has quit IRC | 20:39 | |
koolhead17 | :) | 20:39 |
annegentle_ | EmilienM: and that is a good point, it has been released, but we have thousands of visitors a day, do you know web stats on your guide so far? | 20:39 |
EmilienM | G-1 is coming and we don't have a first guide for Folsom | 20:39 |
EmilienM | I've on average 1 or 2 mails per day | 20:39 |
EmilienM | with feedbacks | 20:40 |
*** littleidea has joined #openstack-dev | 20:40 | |
annegentle_ | koolhead17: I'm okay with merging it, even linking it, if we're ready for it | 20:40 |
openstackgerrit | A change was merged to openstack/nova: Remove useless function quota_usage_create https://review.openstack.org/16449 | 20:40 |
koolhead17 | annegentle_, lets merge it and once EmilienM done with fix which he is planning to do we can link it | 20:40 |
koolhead17 | sounds good EmilienM ? | 20:40 |
EmilienM | that's fine | 20:41 |
sdague | annegentle_: https://review.openstack.org/16460 there you go | 20:41 |
koolhead17 | EmilienM, +1 from me then :D | 20:41 |
EmilienM | koolhead17: cool :) | 20:42 |
annegentle_ | sdague: ok, pushed it | 20:42 |
EmilienM | koolhead17: keep in mind this doc is not a production-ready doc. That's a basic install, for a first approach of Folsom. | 20:42 |
annegentle_ | sdague: a nova-core also can approve those (if that's not true for you let's fix that) | 20:43 |
EmilienM | koolhead17: if you need something production ready, you need to read other parts of doc, for each project I mean | 20:43 |
koolhead17 | EmilienM, well i would just expect you to push the changes soon so we can link it | 20:43 |
EmilienM | koolhead17: it's up to you | 20:43 |
koolhead17 | EmilienM, a novice should be ready to go with OS setup with the doc | 20:43 |
EmilienM | koolhead17: I pushed it last week because I had time but I'm not sure about next two weeks. I'll see | 20:44 |
koolhead17 | that is what expected from the guide | 20:44 |
sdague | annegentle_: oh, I didn't even bother to try, still not used to those new super powers :) | 20:44 |
annegentle_ | sdague: hee | 20:44 |
sdague | hmmm.... well, it didn't seem to do what I thought it would | 20:44 |
koolhead17 | EmilienM, does that mean after pushing your doc for 2 weeks you wont have time to fix doc bug if any reported :( | 20:44 |
annegentle_ | koolhead17: the whole point of putting the doc on openstack-manuals is to manage the process without waiting on a single person | 20:45 |
koolhead17 | Madkiss, zykes- am banking on you folks 4 the quantum part because EmilienM is way to busy :) | 20:45 |
koolhead17 | annegentle_, point noted!! | 20:45 |
EmilienM | koolhead17: i'll find some time | 20:45 |
koolhead17 | EmilienM, awesome | 20:46 |
EmilienM | koolhead17: but more you wait for review | 20:46 |
EmilienM | less I'll have time | 20:46 |
annegentle_ | sdague: do you have the link handy for the openstack-ci-puppet review? | 20:46 |
koolhead17 | EmilienM, doing it right away!! | 20:46 |
annegentle_ | sdague: not that I'm great at debugging those but I could try | 20:46 |
EmilienM | koolhead17: fantastic | 20:47 |
sdague | annegentle_: https://review.openstack.org/#/c/16337/ | 20:47 |
lifeless | EmilienM: https://bugs.launchpad.net/quantum/+bug/1080846 | 20:47 |
uvirtbot | Launchpad bug 1080846 in quantum "rootwrap error in devstack w/quantum from quantum-dhcp" [Undecided,New] | 20:47 |
*** markwash has quit IRC | 20:47 | |
annegentle_ | EmilienM: oo. one thought. I don't know if we have an openstack-ci-puppet job to build the Basic Install yet. | 20:47 |
* annegentle_ thinks | 20:47 | |
EmilienM | lifeless: did you try to fix it by changing dhcp rootwrap.conf ? | 20:48 |
annegentle_ | sdague: yeah I don't see a wadl/ directory created on the docs FTP site. Hm. | 20:48 |
lifeless | EmilienM: there is a line in the rootwrap for it already, in the openvswitch.filters file | 20:48 |
EmilienM | annegentle_: oh, what can I do more ? | 20:48 |
*** jcooley has quit IRC | 20:49 | |
EmilienM | lifeless: in your dhcp conf file, change rootwrap to "sudo" | 20:49 |
EmilienM | lifeless: and try again | 20:49 |
EmilienM | lifeless: if it's working, your bug is serious | 20:49 |
*** vipul is now known as vipul|away | 20:49 | |
annegentle_ | EmilienM: so your doc job needs to build on Jenkins… it's just a patch to openstack-ci-puppet to add it to modules/openstack_project/files/jenkins_job_builder/config/manuals.yaml | 20:49 |
koolhead17 | Daviey, that rootwrap bug fix is still not pushed to cloud-repo :( | 20:49 |
annegentle_ | EmilienM: you're so darn helpful I can't stand it! I can work on it in a minute | 20:49 |
EmilienM | annegentle_: I do it right now | 20:50 |
koolhead17 | EmilienM, cool sir!! | 20:50 |
lifeless | EmilienM: root_helper = sudo in /etc/quantum/dhcp_agent.ini ? testing now | 20:50 |
annegentle_ | sdague: so I'm pretty useless but here's the log https://jenkins.openstack.org/job/openstack-compute-api-v20-wadl/1/consoleText | 20:50 |
EmilienM | lifeless: yes, change to "sudo" | 20:50 |
*** sthakkar has joined #openstack-dev | 20:50 | |
annegentle_ | sdague: gawd applicaiton is throughout that wadl. Sheesh. | 20:51 |
lifeless | EmilienM: so that stops the error | 20:51 |
EmilienM | lifeless: good news, your bug is valid ! | 20:51 |
EmilienM | :p | 20:51 |
lifeless | EmilienM: heh, thanks. | 20:52 |
andrewbogott | oslo lurkers: Is there anything in oslo to support writing REST clients like python-novaclient? Or does each client still contain its own http code? | 20:52 |
bcwaldon | sgran: https://review.openstack.org/#/c/16461/ | 20:52 |
sdague | oh, you know what, there is a redirection issue, so the file never actually generated on disk. Ok, that's useful, I can fix that. | 20:52 |
*** dedis has quit IRC | 20:52 | |
EmilienM | lifeless: you're welcome | 20:53 |
lifeless | EmilienM: I've noted that, and some odd permissions on the filter file, in the bug | 20:53 |
*** jcooley has joined #openstack-dev | 20:53 | |
*** strife25 has quit IRC | 20:53 | |
*** pabelanger has joined #openstack-dev | 20:54 | |
*** pixelbeat has quit IRC | 20:54 | |
*** annegentle_ has quit IRC | 20:55 | |
*** boris-42 has joined #openstack-dev | 20:55 | |
*** strife25 has joined #openstack-dev | 20:56 | |
*** turul64 has quit IRC | 20:56 | |
*** nati_ueno has joined #openstack-dev | 20:57 | |
*** nati_uen_ has joined #openstack-dev | 20:57 | |
*** dingus9 has quit IRC | 20:57 | |
*** dolphm has quit IRC | 20:58 | |
danwent | where's kyle and mark? | 20:58 |
*** perfTest has quit IRC | 20:58 | |
*** gongysh has joined #openstack-dev | 21:00 | |
*** salv-orlando has joined #openstack-dev | 21:00 | |
*** nati_ueno has quit IRC | 21:01 | |
andrewbogott | dtroyer or dhellman: I'm starting on a client for Moniker. I know how to use openstackclient for the cli part… can one of you give me a two-minute lesson on how to build a REST client from openstackclient base classes? | 21:02 |
*** koolhead17 has quit IRC | 21:02 | |
*** mikal has quit IRC | 21:02 | |
andrewbogott | And/or tell me that I shouldn't do it that way? | 21:02 |
*** alexxu has joined #openstack-dev | 21:02 | |
*** dolphm has joined #openstack-dev | 21:02 | |
*** mikal has joined #openstack-dev | 21:05 | |
*** nati_uen_ is now known as nati_ueno | 21:06 | |
*** zing has quit IRC | 21:06 | |
zykes- | andrewbogott: aren't there existing classes already for that ? | 21:07 |
andrewbogott | zykes-: You mean, existing in moniker? | 21:07 |
zykes- | andrewbogott: other projects | 21:08 |
*** adjohn has quit IRC | 21:08 | |
*** markvoelker has joined #openstack-dev | 21:08 | |
*** annegentle_ has joined #openstack-dev | 21:09 | |
*** dolphm has quit IRC | 21:09 | |
andrewbogott | zykes-: That's kind of my question. Back in the day we'd discussed having just the cli in python-openstackclient and making use of the existing REST code in e.g. python-novaclient. But now in openstackclient I see bits and pieces of a shared REST client class. | 21:09 |
*** alof has quit IRC | 21:09 | |
andrewbogott | But I'm not clear exactly what the plan is and/or where the boundary should be between common code and project-specific code. | 21:09 |
zykes- | :p | 21:09 |
*** markwash has joined #openstack-dev | 21:10 | |
andrewbogott | for example, it looks like the new nova client code is /in/ the python-openstackclient repo. But it seems weird to build the moniker one there... | 21:10 |
andrewbogott | So I don't lack examples, I just want to make sure I do it the new/right way. | 21:10 |
dtroyer_zz | andrewbogott: neither of the client libs currently used in osc are what you really want to use. I've been playing with an alternate client lib design that simplifies the structure of the library layer and like what I''ve gotten so far. | 21:11 |
andrewbogott | dtroyer_zz: Is it worth my trying to build on your work, or should I just duplicate python-novaclient for now and plan on a big rewrite later? | 21:11 |
andrewbogott | (I don't much object to the latter, it would get me something working right away.) | 21:12 |
*** timjr has quit IRC | 21:12 | |
dtroyer_zz | andrewbogott: please don't duplicate anything that novaclient does, that's the messiest one of the bunch | 21:13 |
zykes- | dtroyer_zz: is there any work out there then ? | 21:13 |
andrewbogott | dtroyer_zz: OK :) Can you suggest what I should start with in that case? | 21:13 |
*** ayoung has quit IRC | 21:13 | |
*** dingus9 has joined #openstack-dev | 21:14 | |
*** timjr has joined #openstack-dev | 21:14 | |
dtroyer_zz | andrewbogott: I'm in the midst of fighting SSL connectivity for all of them and had hoped to have that done by now. Every time I turn around I want to chuck it all and start over. That's what I'm working on in my spare time (ha!) and need to get the base code released before I can push up the osc branch that uses it. | 21:15 |
andrewbogott | dtroyer_zz: OK, so your advice is that I do nothing until you make some progress? | 21:16 |
andrewbogott | (that may be acceptable, not sure.) | 21:16 |
dtroyer_zz | andrewbogott: that's a crappy answer, and the world isn't going to wait for me…if you need to copy anything I'd study glanceclient first, it really is the cleanest. it uses httplib directly rather than httplib2 | 21:17 |
andrewbogott | dtroyer_zz: OK, that's all perfectly useful. Thank you! (And, please ping me when you have something usable in openstackclient :) ) | 21:18 |
*** thingee_zz has joined #openstack-dev | 21:19 | |
*** thingee has quit IRC | 21:19 | |
dtroyer_zz | andrewbogott: and look at heckj's recent work on breaking the auth bits in keystone client. We'll be using that pattern, auth first, then pas an auth object to the API call, pretty much everywhere going forward. | 21:20 |
dtroyer_zz | s/breaking/breaking out/ | 21:20 |
andrewbogott | ok | 21:20 |
*** dprince has quit IRC | 21:22 | |
*** mmcloud has quit IRC | 21:22 | |
*** alobbs has quit IRC | 21:24 | |
*** sandywalsh has quit IRC | 21:25 | |
*** salv-orlando_ has joined #openstack-dev | 21:30 | |
*** vipul|away is now known as vipul | 21:32 | |
*** salv-orlando has quit IRC | 21:33 | |
*** salv-orlando_ is now known as salv-orlando | 21:33 | |
*** pabelanger_ has joined #openstack-dev | 21:34 | |
*** pabelanger_ has quit IRC | 21:35 | |
*** pabelanger_ has joined #openstack-dev | 21:35 | |
*** pabelanger has quit IRC | 21:35 | |
*** pabelanger_ is now known as pabelanger | 21:35 | |
*** oNeToWn has quit IRC | 21:35 | |
*** pabelanger_ has joined #openstack-dev | 21:36 | |
*** dolphm has joined #openstack-dev | 21:39 | |
*** eharney has quit IRC | 21:42 | |
*** sthakkar has quit IRC | 21:44 | |
*** markvoelker has quit IRC | 21:44 | |
*** e1mer has joined #openstack-dev | 21:46 | |
*** japage has quit IRC | 21:50 | |
*** ayoung has joined #openstack-dev | 21:53 | |
*** slackguru has joined #openstack-dev | 21:55 | |
sgran | bcwaldon: awesome, thanks :) That looks like a cleaner version of what I did to get it working here :) | 21:59 |
*** huats has quit IRC | 22:00 | |
*** huats has joined #openstack-dev | 22:01 | |
*** huats has joined #openstack-dev | 22:01 | |
openstackgerrit | A change was merged to openstack/nova: Fix typo: hpervisor=> hypervisor https://review.openstack.org/16467 | 22:02 |
*** dolphm has quit IRC | 22:03 | |
*** alexxu has quit IRC | 22:04 | |
alexpilotti | russellb vishy: Hi guys! Can I ask you some help for a small review? :-) https://review.openstack.org/#/c/16313/ | 22:06 |
*** cdub has quit IRC | 22:07 | |
russellb | alexpilotti: dansmith reviewed, looks like you haven't responded to his latest comments | 22:07 |
*** cdub has joined #openstack-dev | 22:07 | |
russellb | he's nova-core | 22:07 |
*** martine has quit IRC | 22:07 | |
russellb | i saw this review but didn't touch it since someone else was already providing feedback | 22:07 |
*** boden has quit IRC | 22:07 | |
alexpilotti | russellb: darn just saw it tx! | 22:08 |
alexpilotti | russellb: is there a way to get an email when someone leaves a comment? | 22:08 |
russellb | if you posted the review, you should get emails when it's updated ... | 22:08 |
russellb | you can also subscribe to more ... check the settings | 22:09 |
alexpilotti | russellb: settings are fine… going to check on infra if someone has ideas, tx! | 22:09 |
*** almaisan-away is now known as al-maisan | 22:09 | |
*** al-maisan is now known as almaisan-away | 22:10 | |
nati_ueno | arosen: Hi Are you around? | 22:10 |
*** adjohn has joined #openstack-dev | 22:12 | |
*** mlavalle has joined #openstack-dev | 22:13 | |
zykes- | dtroyer_zz: any reason not to use requests ? | 22:16 |
openstackgerrit | A change was merged to openstack/nova: Add the beginnings of the nova-conductor service https://review.openstack.org/16135 | 22:17 |
dtroyer_zz | zykes-: mindreader… that's one of the long-term changes we're working on | 22:18 |
*** thingee_zz is now known as thingee | 22:18 | |
alexpilotti | dansmith: hi! | 22:18 |
*** strife25 has quit IRC | 22:18 | |
zykes- | dtroyer_zz: mindreader what not sorry ? | 22:18 |
dansmith | alexpilotti: hiya | 22:19 |
alexpilotti | dansmith: I just saw your comment and left a reply. Going to bug somebody on infra to understand why I don't get emails for the comments! | 22:19 |
arosen | hi nati_ueno | 22:20 |
nati_ueno | hi arosen | 22:20 |
*** sacharya1 has quit IRC | 22:20 | |
nati_ueno | So security group binding should be automatically deleted when we delete port or network? | 22:21 |
openstackgerrit | A change was merged to openstack/nova: Yield in between hash runs for the image cache manager. https://review.openstack.org/15607 | 22:22 |
arosen | nati_ueno: right now there is a function that deletes it but we probably should make that done via CASADE delete when the port is deleted. | 22:24 |
nati_ueno | arosen: I agree. Should I fix it in iptables patch or another bug patch ? | 22:24 |
arosen | nati_ueno: I'd prefer if you did it in another patch if you don't mind. | 22:25 |
nati_ueno | arosen: I got it | 22:25 |
alexpilotti | dansmith: tx for the review! :-) | 22:25 |
dansmith | alexpilotti: yup | 22:25 |
arosen | nati_ueno: btw good work on the linux_bridge implementation. | 22:25 |
nati_ueno | arosen: Thanks | 22:26 |
*** sacharya has joined #openstack-dev | 22:26 | |
*** arosen has left #openstack-dev | 22:26 | |
nati_ueno | arosen: I filed that bug https://bugs.launchpad.net/quantum/+bug/1080887 | 22:26 |
uvirtbot | Launchpad bug 1080887 in quantum "Security group port binding should be automatically deleted when delete_port" [Undecided,New] | 22:26 |
alexpilotti | dansmith: can't wait to get rid of the old code that remained (pre Essex stuff) | 22:26 |
*** annegentle_ has quit IRC | 22:29 | |
*** ijw1 has quit IRC | 22:30 | |
*** boris-42 has quit IRC | 22:34 | |
*** mtreinish has quit IRC | 22:40 | |
*** arbrandes has quit IRC | 22:41 | |
*** thingee_zz has joined #openstack-dev | 22:41 | |
*** nunosantos has quit IRC | 22:42 | |
*** thingee has quit IRC | 22:43 | |
*** thingee_zz is now known as thingee | 22:43 | |
*** saper has joined #openstack-dev | 22:48 | |
openstackgerrit | A change was merged to openstack/nova: Fixes an error reporting bug on Hyper-V https://review.openstack.org/16313 | 22:51 |
*** saper has left #openstack-dev | 22:51 | |
lifeless | sdague: still around? I have a few devstack patches needing review | 22:55 |
lifeless | sdague: and I see you're in devstack-core ;) | 22:55 |
*** EmilienM has left #openstack-dev | 22:55 | |
*** ijw1 has joined #openstack-dev | 22:56 | |
*** dolphm has joined #openstack-dev | 22:57 | |
sdague | lifeless: about to head out for the day, can you get some of the folks that have been slinging quantum patches in devstack to +1 it. I'll look tomorrow. | 22:57 |
*** winston-d has quit IRC | 22:57 | |
lifeless | sdague: so dan / gary ? | 22:58 |
sdague | yeh, sure, either would be fine | 22:58 |
lifeless | danwent: ^ garyk: | 22:58 |
sdague | with the quantum things I'd just like to know they are chill with it | 22:59 |
lifeless | https://review.openstack.org/#/c/16410/ and https://review.openstack.org/#/c/16411/ and https://review.openstack.org/#/c/16485/ | 22:59 |
lifeless | sure thing | 22:59 |
*** sacharya has quit IRC | 22:59 | |
*** dubsquared1 has quit IRC | 23:01 | |
*** kaganos has quit IRC | 23:01 | |
*** alunduil has quit IRC | 23:05 | |
*** ijw1 has quit IRC | 23:05 | |
*** ijw1 has joined #openstack-dev | 23:05 | |
*** rnirmal has quit IRC | 23:05 | |
*** slackguru has quit IRC | 23:06 | |
*** salv-orlando has quit IRC | 23:06 | |
*** salv-orlando has joined #openstack-dev | 23:07 | |
*** tmishler has quit IRC | 23:07 | |
*** brich1 has joined #openstack-dev | 23:08 | |
*** datsun180b has quit IRC | 23:09 | |
*** nati_ueno has quit IRC | 23:12 | |
*** nati_ueno has joined #openstack-dev | 23:12 | |
*** dubsquared has joined #openstack-dev | 23:13 | |
openstackgerrit | A change was merged to openstack/nova: Fix reversed args to call to _reschedule https://review.openstack.org/16487 | 23:14 |
*** annegentle_ has joined #openstack-dev | 23:15 | |
alexpilotti | dansmith, can I ask you a question related to list_instances / get_info? | 23:16 |
alexpilotti | dansmith: on the expected driver behavior | 23:17 |
dansmith | alexpilotti: you can *ask* anything :) | 23:17 |
alexpilotti | dansmith: fair enough ;-) | 23:18 |
alexpilotti | dansmith: when a host reboots ad reconnects, stopped VMs appear as active in the nova DB | 23:18 |
openstackgerrit | A change was merged to openstack/nova: Fix calls to private method in linux_net https://review.openstack.org/16450 | 23:19 |
alexpilotti | dansmith: all the status related methods are respecting their semantic AFAIK | 23:20 |
alexpilotti | dansmith: so I wonder where the catch is :-) | 23:20 |
dansmith | alexpilotti: okay, I'm not sure what you're asking exactly... | 23:20 |
*** rpedde is now known as rpedde_away | 23:21 | |
zaitcev | Oh my god. Bufunfa. | 23:21 |
alexpilotti | dansmith: ok, here's the list of events: | 23:21 |
alexpilotti | dansmith: 1) spawn a VM (nova boot ...) | 23:21 |
alexpilotti | dansmith: 2) wait for the vm to become active | 23:21 |
*** brich1 has quit IRC | 23:22 | |
alexpilotti | dansmith: 3) reboot the compute node where the instance is running | 23:22 |
alexpilotti | dansmith: 4) the VM doesn't start | 23:22 |
*** EmilienM has joined #openstack-dev | 23:22 | |
alexpilotti | dansmith: 5) "nova list" still reports the VM as "ACTIVE" | 23:22 |
alexpilotti | dansmith: I wonder if I'm missing somentjing on the compute driver side | 23:23 |
dansmith | alexpilotti: for a while, right? the sync_power_states periodic task should reconcile the states | 23:23 |
*** pabelanger has quit IRC | 23:23 | |
alexpilotti | dansmith: "a while" as in I waited a few minutes :-) | 23:23 |
alexpilotti | dansmith: do you know which compute driver methods is sync_power_states using? | 23:24 |
dansmith | https://github.com/openstack/nova/blob/master/nova/compute/manager.py#L2945 | 23:24 |
dansmith | looks to me like it calls get_info() for each instance | 23:24 |
*** dubsquared has quit IRC | 23:25 | |
alexpilotti | dansmith: yep, that's what I'd expect | 23:25 |
dansmith | L3007: if vm_power_state != db_power_state: | 23:26 |
dansmith | (sync the db power state from the hypervisor's notion) | 23:26 |
*** markwash has quit IRC | 23:27 | |
alexpilotti | dansmith: yep, from what I see even in case of exceptions on get_info() I should get a NOSTATE | 23:27 |
*** vipul is now known as vipul|away | 23:27 | |
dansmith | L3026, if the db state is ACTIVE and the hypervisor state is NOSTATE, SHUTDOWN, or CRASHED, | 23:28 |
dansmith | then it calls stop() via the API | 23:28 |
*** echiu has joined #openstack-dev | 23:28 | |
alexpilotti | dansmith: I see | 23:28 |
dansmith | so, it looks like the compute manager is doing what I'd expect to reconcile things | 23:28 |
dansmith | you might sprinkle some debugs through there and see what's really going on in your specific case | 23:29 |
alexpilotti | dansmith: I have to check how the tasks are scheduled | 23:29 |
alexpilotti | dansmith: I'll start from the decorator | 23:29 |
*** rnirmal has joined #openstack-dev | 23:30 | |
dansmith | alexpilotti: you mean to see how often that runs? | 23:30 |
*** Gordonz has quit IRC | 23:31 | |
alexpilotti | dansmith: also how it runs, to see if there are some WIndows specific issues | 23:31 |
alexpilotti | dansmith: a suggestion related to the status of the VMs in case of host reboots | 23:31 |
*** dubsquared has joined #openstack-dev | 23:31 | |
dansmith | alexpilotti: well, I don't know the details, but I think it's eventlet-driven and not as simple as "run every three seconds" | 23:32 |
alexpilotti | dansmith: should the VMs that were running be restarted automatically or not? | 23:32 |
dansmith | alexpilotti: I don't think they are on any of the other hypervisors, but I'm not positive | 23:32 |
*** danwent has quit IRC | 23:33 | |
dansmith | alexpilotti: I'd expect that the best thing is to not restart them, | 23:33 |
dansmith | as a user or app should have noticed the outage, and already re-deployed before the machine has even had a chance to reboot | 23:33 |
alexpilotti | dansmith: yep, that's also what we decided to do for Folsom (conservatively) | 23:33 |
*** danwent has joined #openstack-dev | 23:33 | |
*** ijw1 has quit IRC | 23:33 | |
alexpilotti | dansmith: tx for your help! I'm going to hunt some more eventlet dragons :-) | 23:34 |
*** danwent has quit IRC | 23:34 | |
dansmith | alexpilotti: good luck with that :) | 23:34 |
*** nati_ueno has quit IRC | 23:36 | |
*** gongysh has quit IRC | 23:37 | |
*** nati_ueno has joined #openstack-dev | 23:37 | |
*** rnirmal has quit IRC | 23:37 | |
*** dolphm has quit IRC | 23:39 | |
*** henrynash has quit IRC | 23:39 | |
*** jaypipes has quit IRC | 23:40 | |
*** annegentle_ has quit IRC | 23:41 | |
*** rafaduran has left #openstack-dev | 23:44 | |
*** sacharya has joined #openstack-dev | 23:51 | |
*** jdorothy has quit IRC | 23:54 | |
*** vipul|away is now known as vipul | 23:54 | |
*** edygarcia has joined #openstack-dev | 23:54 | |
*** dhellmann is now known as dhellmann-afk | 23:56 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!