Monday, 2015-06-29

*** chlong has joined #openstack-dns00:04
openstackgerritPradeep Kumar Singh proposed openstack/designate: Add py3 compatibility related changes  https://review.openstack.org/19648400:36
openstackgerritPradeep Kumar Singh proposed openstack/designate: Replace dict.iteritems() with six.iteritems(dict)  https://review.openstack.org/19648801:27
*** stanzgy has joined #openstack-dns01:35
*** ducttape_ has joined #openstack-dns02:26
*** ducttape_ has quit IRC02:36
*** mwagner_afk has joined #openstack-dns02:43
openstackgerritPradeep Kumar Singh proposed openstack/designate: Use six.iterkeys(x) instead of x.keys()  https://review.openstack.org/19650102:46
*** nihilifer has joined #openstack-dns04:45
*** pksingh has joined #openstack-dns07:11
pksinghtimsim: ping07:12
pksinghmugsie: ping07:12
*** hetii has joined #openstack-dns07:23
*** pksingh has quit IRC07:32
*** pksingh has joined #openstack-dns07:44
*** l6unchpad has joined #openstack-dns07:57
openstackgerritEndre Karlson proposed openstack/designate: Add Zone Manager service shim  https://review.openstack.org/19365108:01
*** chlong has quit IRC08:03
*** jordanP has joined #openstack-dns08:20
*** dguerri` is now known as dguerri08:23
*** kbyrne has quit IRC08:47
*** kbyrne has joined #openstack-dns08:53
openstackgerritEndre Karlson proposed openstack/designate: Add shard and domain_shard to tables  https://review.openstack.org/19365209:11
*** tg90nor has quit IRC09:15
*** l6unchpad has quit IRC09:15
*** tg90nor has joined #openstack-dns09:17
*** l6unchpad has joined #openstack-dns09:18
openstackgerritEndre Karlson proposed openstack/designate: Add Zone Manager service shim  https://review.openstack.org/19365109:20
nagyzKiall, right, it appears to be working now09:20
nagyzI should probably write a blog post tho, as this is very confusing09:21
nagyzand it was certainly not an easy migration from icehouse to kilo... :)09:21
*** fawadkhaliq has joined #openstack-dns09:30
*** openstackgerrit has quit IRC09:53
*** openstackgerrit has joined #openstack-dns09:53
*** ChanServ sets mode: +v openstackgerrit09:53
openstackgerritEndre Karlson proposed openstack/designate: Add shard and domain_shard to tables  https://review.openstack.org/19365210:00
*** uschreiber_ has joined #openstack-dns10:03
*** uschreiber_ has quit IRC10:05
openstackgerritEndre Karlson proposed openstack/designate: Add base for coordination as a mixin / tooz  https://review.openstack.org/19390910:31
openstackgerritEndre Karlson proposed openstack/designate: Add Zone Manager service shim  https://review.openstack.org/19365110:31
openstackgerritEndre Karlson proposed openstack/designate: Add shard and domain_shard to tables  https://review.openstack.org/19365210:31
*** pksingh has quit IRC10:34
*** ducttape_ has joined #openstack-dns10:36
*** lkoranda_ has joined #openstack-dns10:49
*** stanzgy has quit IRC10:52
*** lkoranda has quit IRC10:52
*** fawadkhaliq has quit IRC10:53
*** lkoranda_ has quit IRC10:55
*** ducttape_ has quit IRC10:59
*** lkoranda has joined #openstack-dns10:59
openstackgerritKiall Mac Innes proposed openstack/designate: Remove leftover print statement in tests  https://review.openstack.org/19565911:05
openstackgerritKiall Mac Innes proposed openstack/designate: Add a couple of new hacking checks  https://review.openstack.org/19565811:05
*** dguerri is now known as dguerri`11:28
openstackgerritKiall Mac Innes proposed openstack/designate: Install dnspython3 on py3  https://review.openstack.org/18564111:32
*** Kiall has quit IRC11:35
*** Kiall has joined #openstack-dns11:35
Kiallnagyz: yea, it likely wasn't :( Sorry about that!11:35
*** fawadkhaliq has joined #openstack-dns11:36
openstackgerritKiall Mac Innes proposed openstack/designate: Install dnspython3 on py3  https://review.openstack.org/18564111:37
openstackgerritKiall Mac Innes proposed openstack/designate: Install dnspython3 on py3  https://review.openstack.org/18564111:42
Kiallgah - none of those working -_-11:42
* Kiall goes and reads the docs11:42
*** fawadkhaliq has quit IRC11:46
*** dguerri` is now known as dguerri11:48
openstackgerritMerged openstack/designate: Add base for coordination as a mixin / tooz  https://review.openstack.org/19390911:55
*** ricky1 has joined #openstack-dns11:57
openstackgerritKiall Mac Innes proposed openstack/designate: Install dnspython3 on py3  https://review.openstack.org/18564111:57
ricky1hey folks11:58
ricky1i just updated the python designate client11:58
KiallSounds like you found an issue?11:58
ricky1and i can't seem to see domains/records/servers objects hanging from Client11:58
ricky1anything changed on that front?11:59
ricky1http://paste.openstack.org/show/324571/12:00
ricky1i remember being able to access those from client object12:00
KiallHumm - Usually, when the command plugins fails to load, it's due to an incompatible requirement version12:02
KiallAnd - It would look like that when your using the bindings12:02
ricky1k, let me get rid of my venv12:02
Kiallricky1: before you do12:02
ricky1yes?12:02
Kiallcan you do a `pip freeze` in the env? Hoepfully we can figure out which requirement, so we can update our min requirement12:02
ricky1http://paste.openstack.org/show/324572/12:03
KiallThanks, that'll be all I need - assuming my guess is correct12:04
ricky1recreated venv, same problem :(12:14
ricky1how can i help you from my side Kiall ?12:14
ricky1if tehre's a requirements dep issue, is there some way to increase logging on the designate client to spit out useful info?12:15
ricky1it doesn't error out ,yet no.12:15
ricky1 records or domains object are there12:15
Kiallwithin the designateclient setup.cfg file, you'll see the various stuff listed out like this:12:16
Kialldesignateclient.v1.controllers =12:16
Kiall    domains = designateclient.v1.domains:DomainsController12:16
Kiallwhat you can do, is startup a python shell in the venv, then12:16
Kiallimport designateclient.v1.domains12:17
Kialland it'll show any import time failures, which 99.9% of time will catch that kind of stuff12:17
ricky1k, let me poke12:17
ricky1dang12:17
ricky1ImportError: No module named functools3212:17
ricky1i will prep  a patch12:18
ricky1thx12:18
KiallHuh?  I don't even know what that one is!12:19
*** kei_yama has quit IRC12:19
*** dguerri is now known as dguerri`12:28
*** km has quit IRC12:28
*** dguerri` is now known as dguerri12:32
*** csoukup has joined #openstack-dns12:34
*** ducttape_ has joined #openstack-dns12:35
openstackgerritEndre Karlson proposed openstack/designate: Add shard and domain_shard to tables  https://review.openstack.org/19365212:35
*** pksingh has joined #openstack-dns12:39
pksinghKiall: Hi, can you please look into my comment on bug https://bugs.launchpad.net/designate/+bug/139432812:40
openstackLaunchpad bug 1394328 in Designate "listening on ipv6 fails" [Medium,Triaged] - Assigned to pradeep kumar singh (pradeep-singh-u)12:40
*** jbratton has quit IRC12:41
Kiallpksingh: lookinh12:42
Kialllooking*12:42
pksinghkiall: ok thanks12:42
Kiallpksingh: Oh, nice.. it was fixed already! Always a bonus12:42
*** nihilifer has quit IRC12:43
pksinghkiall: for testing this bug, i have just started the api on host "::1", is it enough ?12:44
KiallYes, I just quickly tried it with a real V6 address, there does seem to be another bug once you bind though, but it's in eventlet rather than designate12:46
KiallINFO eventlet.wsgi [-] (21793) wsgi starting up on http://2001:770:1be:4:2413:770:aaaa:8791:9001/12:46
KiallURL is wrong, and should have been http://[2001:770:1be:4:2413:770:aaaa:8791]:9001/12:46
ducttape_Kiall - was there anything needed from me for https://review.openstack.org/#/c/193800/  (the testing for the dashboard stuff)?  Once there is a consistent testing framework, I can start to add more tests (begrudgingly)12:46
KiallBut... That's in eventlet.wsgi12:46
*** chlong has joined #openstack-dns12:46
Kiallducttape_: no, just need timsim or vinod1 to hit the +A button on it!12:47
*** fawadkhaliq has joined #openstack-dns12:47
Kiall(hint hint guys)12:47
Kiallelarson: also, sorry :( https://review.openstack.org/#/c/192267/ has hit a merge conflict on something12:47
Kiallcan you rebase and we'll reapprove?12:47
pksinghkiall: yes you are right, when i send request with http://[::1]:9001/ then it is processed, not when http://::1:9001/12:51
pksinghkiall: thanks for your time12:51
KiallYep, it's "cosmetic" tho, and a different issue in a different project.. So, nothing for us to do on this one12:51
*** fawadkhaliq has quit IRC12:51
pksinghkiall: can you please close the bug :)12:52
KiallDone :)12:52
pksinghThanks a lot :)12:52
KiallMarked as fixed in L2 .. But I think it was earlier than that when it actually got fixed, but can't target bugs to old releases.. Oh well!12:52
pksinghkiall: do i need to fix it in juno?12:53
KiallIf the issue is eventlet, we can't update the requirement there :( eventlet>=0.15.1,<=0.15.2 is what juno needs12:55
openstackgerritEndre Karlson proposed openstack/designate: Add shard and domain_shard to tables  https://review.openstack.org/19365212:58
openstackgerritEndre Karlson proposed openstack/designate: Add Zone Manager service shim  https://review.openstack.org/19365112:58
openstackgerritEndre Karlson proposed openstack/designate: Add shard and domain_shard to tables  https://review.openstack.org/19365212:58
ekarlsothere ^ Kiall12:58
ekarlsorebased :P12:58
Kialllol - why rebase the approved one?13:10
*** hetii has quit IRC13:13
*** richm has joined #openstack-dns13:27
openstackgerritMerged openstack/designate: Updated from global requirements  https://review.openstack.org/19626113:30
openstackgerritMerged openstack/designate: Add py3 compatibility related changes  https://review.openstack.org/19648413:31
openstackgerritEric Larson proposed openstack/designate: Allow logging hookpoint intialization  https://review.openstack.org/19226713:42
*** l6unchpad has quit IRC13:49
*** l6unchpad has joined #openstack-dns13:54
*** pksingh has quit IRC13:56
*** vinod1 has joined #openstack-dns13:58
*** boris-42 has joined #openstack-dns13:59
Kiallthanks elarson :)14:01
openstackgerritMerged openstack/designate: Add Zone Manager service shim  https://review.openstack.org/19365114:02
*** fawadkhaliq has joined #openstack-dns14:03
Kiallducttape_: and, tim just approved the testing change :) Time to get some gates added14:04
ducttape_I guess that's good news???   ;)14:05
KiallYep, kinda ;)14:05
*** pglass has joined #openstack-dns14:07
*** fawadkhaliq has quit IRC14:08
*** nkinder has joined #openstack-dns14:09
KiallSumitted the change to infra to add the new gate jobs.. hopefully don't break anything before they turn on ;')14:11
KiallSubmitted*14:12
KiallGrr - The bind9+kernel bug seems to be hitting more often recently :(14:14
*** busterswt has joined #openstack-dns14:16
timsimI've literally never run into that myself.14:17
timsimOnly in the gate14:18
*** jmcbride has joined #openstack-dns14:23
*** jmcbride has quit IRC14:24
*** jmcbride has joined #openstack-dns14:25
openstackgerritMerged openstack/designate-dashboard: Conform to Consistent Testing Interface  https://review.openstack.org/19380014:25
Kialltimsim: yea, I think it's due to the gate VMs having a bunch of iptables rules configured, from memory ISC believe the bug is in the netfilter kernel module..14:27
*** ducttape_ has quit IRC14:27
KiallI wonder if we can just unload that :/14:27
Kiallooo - actually, elarson's change which failed on bind9 didn't hit that bug this time14:28
KiallMaybe we have a new one?14:28
openstackgerritMerged openstack/designate: Add a couple of new hacking checks  https://review.openstack.org/19565814:40
openstackgerritMerged openstack/designate: Remove leftover print statement in tests  https://review.openstack.org/19565914:40
*** nihilifer has joined #openstack-dns14:42
*** fawadkhaliq has joined #openstack-dns14:49
*** EricGonczer_ has joined #openstack-dns14:51
openstackgerritMimi Lee proposed openstack/designate: Add zone filter for TTL, description, & status  https://review.openstack.org/19669414:56
*** fawadk has joined #openstack-dns14:57
*** nyechiel has joined #openstack-dns15:00
*** fawadkhaliq has quit IRC15:00
*** ducttape_ has joined #openstack-dns15:06
*** vinod1 has quit IRC15:17
*** jmcbride has quit IRC15:18
*** jmcbride has joined #openstack-dns15:24
richmhello - It's been a while - I'm going to start working on making ipa work again with Designate - what's the best way to convert an old backend to something that works with the new Designate architecture?15:36
KiallHey richm!15:36
KiallWe've been debating it quite a bit recently, but don't have any 100% going to work answers yet.15:37
richmKiall: hello15:37
KiallInfoBlox have a deployment model similar to IPA, where it can't slave the zone..15:38
richmyeah, ipa can't currently receive [A|I]XFR15:38
richmok - so take a look at the infoblox code?15:39
KiallAh - No.. They support both models, and implement the AXFR model to start with.15:40
KiallSorry - Typing  a long ish response out.. 1 sec  ;)15:41
richmno worries15:41
KiallThe current thinking is to implement a check+compare+update using the replacement agent, keeping the general model of core-designate avoiding trying to track concurrent changes in any reliable way, and insead having the agent sit in on or near the IPA server, have it [I|A]XFR from mDNS, and leave it to the partocular plugin to choose the best method to identifying and writing the changes to IPA.. That way, whatever is best can be done for non15:44
Kiall-AXFR backends, while allowing AXFR backends to stay simple.. The big cost here is the fact that - especially until we implment IXFR - you have to do a compare against the entire zone, which for moderate->big zones will become a pain point.15:44
KiallAt the summit we talked about doing a POC of ^, to attempt to actually understand where/if it falls over..15:46
richmso 1) transfer all of ipa to designate 2) setup agent on ipa node 3) every time an update comes into designate it does an AXFR to the agent 4) the agent does a "diff" to figure out which changes it needs to apply to ipa15:47
KiallYea, 2+ sounds about right.. Not entirely sure what #1 means?15:48
*** nyechiel has quit IRC15:48
richmI guess 1) is only needed if you want designate to support querying existing information in ipa15:49
Kialland - to be clear -  we're not 100% convinced this will work well enough15:49
richmactually, 1) will be needed if you want to support doing things like record updates immediately15:49
richmthat is, designate needs to know what information is already in ipa15:49
richmI wrote the ipaextractor.py to do that15:50
richmwhich probably needs some work15:50
richmunless designate can get an AXFR from ipa?15:50
Kiallwell - I'm still a firm believer that allowing changes through the backend directly, and through designate itself will lead to all sorts of issues..15:51
Kiallwe do have some initial support for slaving from other servers, and farming that content out to our backends15:51
*** ducttape_ has quit IRC15:53
openstackgerritMimi Lee proposed openstack/designate: Add zone filter for TTL, description, & status  https://review.openstack.org/19669415:55
richmso how does the Infoblox support work?15:55
KiallThey were going to try do a proof of concept of ^ for the IB deployment model that can't do AXFR, but the've gone quite since the summit!15:58
*** fawadk has quit IRC16:01
richmhmm - was there anyone in this irc channel who was working on that?16:06
*** busterswt has quit IRC16:08
*** busterswt has joined #openstack-dns16:11
*** l6unchpad has quit IRC16:16
*** robert4man has joined #openstack-dns16:20
*** mlavalle has joined #openstack-dns16:21
*** jordanP has quit IRC16:22
*** busterswt has quit IRC16:24
*** fawadkhaliq has joined #openstack-dns16:27
*** ducttape_ has joined #openstack-dns16:32
Kiallrichm: sorry, AFK for meeting16:34
Kiallit was JohnB - can't remember the exact IRC handle16:35
timsimjohnbelamaric I think?16:37
Kiallthat's the one!16:39
KiallI kept getting the second half of that way to wrong to send :)16:39
*** dguerri is now known as dguerri`16:40
richmok - thanks16:45
*** csoukup has quit IRC16:47
*** ducttape_ has quit IRC16:54
*** ducttape_ has joined #openstack-dns16:56
*** ducttape_ has quit IRC16:57
*** eandersson has joined #openstack-dns16:57
*** ducttape_ has joined #openstack-dns16:58
*** jmcbride has quit IRC16:59
*** pglass has quit IRC17:03
*** jmcbride has joined #openstack-dns17:04
*** mwagner_afk has quit IRC17:06
*** l6unchpad has joined #openstack-dns17:23
*** dontalton has joined #openstack-dns17:32
*** chlong has quit IRC17:43
*** csoukup has joined #openstack-dns17:57
*** eandersson has quit IRC18:01
*** mwagner_afk has joined #openstack-dns18:02
*** c_soukup has joined #openstack-dns18:03
*** jmcbride has quit IRC18:04
*** csoukup has quit IRC18:07
*** jmcbride has joined #openstack-dns18:09
*** pglass has joined #openstack-dns18:13
*** crc32 has joined #openstack-dns18:15
*** l6unchpad has quit IRC18:19
*** openstackgerrit has quit IRC18:30
*** openstackgerrit has joined #openstack-dns18:30
*** ChanServ sets mode: +v openstackgerrit18:30
*** fawadkhaliq has quit IRC18:44
*** nihilifer has quit IRC18:46
*** ducttape_ has quit IRC18:56
*** busterswt has joined #openstack-dns19:03
*** ducttape_ has joined #openstack-dns19:07
*** ducttape_ has quit IRC19:11
*** boris-42 has quit IRC19:12
*** fawadkhaliq has joined #openstack-dns19:17
*** dguerri` is now known as dguerri19:18
*** dguerri is now known as dguerri`19:20
*** ducttape_ has joined #openstack-dns19:25
*** fawadk has joined #openstack-dns19:26
*** fawadkhaliq has quit IRC19:27
*** ducttape_ has quit IRC19:28
*** jmcbride has quit IRC19:33
*** l6unchpad has joined #openstack-dns19:33
*** l6unchpad has quit IRC19:34
*** busterswt has quit IRC19:35
*** bustersw_ has joined #openstack-dns19:35
*** ducttape_ has joined #openstack-dns19:37
*** mwagner_afk has quit IRC19:39
*** fawadk has quit IRC19:46
*** dguerri` is now known as dguerri19:47
*** ducttape_ has quit IRC19:52
*** bustersw_ has quit IRC19:58
*** ducttape_ has joined #openstack-dns20:20
*** nihilifer has joined #openstack-dns20:20
*** dontalton has quit IRC20:26
*** robert4man has quit IRC20:30
*** boris-42 has joined #openstack-dns20:31
*** echoingumesh has joined #openstack-dns20:49
*** jmcbride has joined #openstack-dns20:58
openstackgerritMerged openstack/designate: Allow logging hookpoint intialization  https://review.openstack.org/19226721:01
*** nihilifer has quit IRC21:02
*** EricGonczer_ has quit IRC21:22
*** ducttape_ has quit IRC21:25
*** mwagner_lap has joined #openstack-dns21:26
*** crc32 has quit IRC21:42
*** vinod1 has joined #openstack-dns21:44
*** vinod2 has joined #openstack-dns21:51
*** vinod2 has quit IRC21:54
*** vinod2 has joined #openstack-dns21:54
*** vinod1 has quit IRC21:54
*** pglass has quit IRC22:03
*** vinod2 has quit IRC22:18
*** jmcbride has quit IRC22:32
*** mwagner_lap has quit IRC22:32
*** km has joined #openstack-dns23:04
*** mlavalle has quit IRC23:05
*** dguerri is now known as dguerri`23:17
*** echoingumesh has quit IRC23:22
*** echoingumesh has joined #openstack-dns23:22
*** kei_yama has joined #openstack-dns23:23
*** echoingumesh has quit IRC23:27
*** EricGonczer_ has joined #openstack-dns23:28
*** boris-42 has quit IRC23:32
*** dtx00ff has joined #openstack-dns23:34
*** EricGonczer_ has quit IRC23:45

Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!