Thursday, 2013-09-26

*** krow has quit IRC00:07
*** matsuhashi has joined #openstack-dns00:22
*** ctracey has quit IRC01:00
*** ctracey has joined #openstack-dns01:01
*** ctracey has quit IRC01:02
*** ctracey has joined #openstack-dns01:03
*** ctracey has quit IRC01:16
*** ctracey has joined #openstack-dns01:29
*** vipul has quit IRC02:38
*** vipul has joined #openstack-dns02:39
*** krow has joined #openstack-dns02:40
*** adrian_otto has joined #openstack-dns02:41
*** krow has quit IRC02:56
*** adrian_otto has quit IRC03:53
*** matsuhashi has quit IRC03:59
*** matsuhashi has joined #openstack-dns04:02
*** vipul is now known as vipul-away04:14
*** krow has joined #openstack-dns04:52
*** matsuhashi has quit IRC06:47
*** matsuhashi has joined #openstack-dns07:06
*** briancline has quit IRC08:10
*** briancline has joined #openstack-dns08:17
*** cflmarques has joined #openstack-dns08:17
*** krow has quit IRC09:20
*** krow has joined #openstack-dns09:35
cflmarquesHi Guys09:36
cflmarquesI am trying to extend the designate API in order to deal with NAPTR records, but I cant find the class from the code that enables the API to listen POST, GET, PUT, ... methods. Can any one point me an direction?09:36
*** krow has quit IRC09:42
kiall_cflmarques: hiya09:42
kiall_So, adding NAPTR should be:09:42
kiall_adding the rules here: https://github.com/stackforge/designate/blob/master/designate/resources/schemas/v1/record.json09:43
kiall_adding NAPTR to the list here: https://github.com/stackforge/designate/blob/master/designate/storage/impl_sqlalchemy/models.py#L3509:43
kiall_and, update the database ENUM to include NAPTR, essentially copying this migration: https://github.com/stackforge/designate/blob/master/designate/storage/impl_sqlalchemy/migrate_repo/versions/011_support_sshfp_records.py09:44
kiall_That should be it!09:44
cflmarquesThank you so much Kiall.09:48
mugsiecflmarques: if you are looking to push this as open source, it might be a good idea to register a blueprint here: https://launchpad.net/designate09:48
kiall_Yea - What ^ said! We're (trying) to start following that process :)09:49
cflmarquesDo you want me to register a blueprint?09:50
kiall_If you're planning on pushing the changes up, yea.. We're trying to get all new features to have blueprints :)09:52
kiall_A simple one just pointing to the RFC that defines them, 2915 and 3403 I think would be enough :)09:52
cflmarquesokay Kiall and Mugsie, I will register a new blueprint, although I had never register one, so I don't understand what means the 2915 and 340110:04
kiall_Ah ..  rfc2915 and rfc3403 are what define the spec for NAPTR :)10:04
cflmarquesOkay, I will do it straight away.10:07
cflmarquesThank you for your precious help :)10:09
kiall_No problem10:26
cflmarquesKiall: Do you think the blueprint is well described? : https://blueprints.launchpad.net/designate/+spec/naptr-record10:39
kiall_Yep - That'll do :)10:39
*** ppenjoy has joined #openstack-dns10:40
cflmarquesKiall: Okay, I didn't assign no one do the blueprint, but I will work on that.10:42
dmakogonhi, guys. i've got an issue on deployment of designate ResourceNotFound: Could not find the requested resource: resources/schemas/v1/domain.json11:32
dmakogonwhat should i do ?11:32
kiall_dmakogon: heya11:35
kiall_how did you deploy designate? It shouldn't have an issue finding those :/11:36
*** kiall_ is now known as Kiall11:52
*** ekarlso has quit IRC12:20
*** matsuhashi has quit IRC12:34
*** betsy has joined #openstack-dns12:39
*** eankutse has joined #openstack-dns13:20
*** matsuhashi has joined #openstack-dns13:43
*** cflmarques has quit IRC13:46
*** cflmarques has joined #openstack-dns13:51
*** eankutse1 has joined #openstack-dns13:52
*** eankutse has quit IRC13:52
*** matsuhashi has quit IRC14:13
ppenjoyproblem with the instance with the dhclient:  http://paste.openstack.org/show/47541/   , I can do everything but the dhcpclient is looping14:33
*** betsy has quit IRC14:41
cflmarquesKiall : What do you mean when you said "update the database ENUM to include NAPTR, essentially copying this migration: https://github.com/stackforge/designate/blob/master/designate/storage/impl_sqlalchemy/migrate_repo/versions/011_support_sshfp_records.py "14:53
cflmarquesWhen you said copying this migration you mean add the NAPTR record_type and then synchronize the database again?14:55
eankutse1Kiall: for the serial number updates in the backend (PowerDNS), if we take the approach of deleting the SOA records and recreating them, would it be ok to assume that we can read the values for the timing fields of the SOA records (ttl, expiry, etc) from the corresponding domain in Central? And if so, how would that fit into the bulk update queries that we have in order to keep things efficient?14:55
*** eankutse1 has quit IRC15:03
cflmarques.15:04
cflmarquesKiall : What do you mean when you said "update the database ENUM to include NAPTR, essentially copying this migration: https://github.com/stackforge/designate/blob/master/designate/storage/impl_sqlalchemy/migrate_repo/versions/011_support_sshfp_records.py "15:04
cflmarquesWhen you said copying this migration you mean add the NAPTR record_type and then synchronize the database again?15:05
*** zane has joined #openstack-dns15:05
*** eankutse has joined #openstack-dns15:10
*** eankutse has quit IRC15:11
*** eankutse has joined #openstack-dns15:16
mugsiecflmarques: yup, and then adding them to the models as well15:29
mugsiearound here15:29
mugsiehttps://github.com/stackforge/designate/blob/master/designate/storage/impl_sqlalchemy/models.py#L3515:29
mugsieand then the validation in the frontend API, which looks like it could be quite difficult15:30
mugsie(regexing a regex)15:30
* mugsie shudders15:30
*** betsy has joined #openstack-dns15:34
cflmarquesmugsie: I appreciate your help. Is there any known problems with validation regarding NAPTR records?15:40
*** artom has quit IRC15:43
*** artom has joined #openstack-dns15:44
mugsienot that I know of, its just the thought of trying to vaidate a regex with another regex15:44
Kialleankutse: ping15:44
cflmarquesYea, you'r right.. I will try to workaround that issue.15:47
Kialleankutse: so, I've been thinking about the SOA serial thing .. I think we go ahead and merge without that, the review still leaves us in a better position than before.. We'll have to work out something more complex to manage the serial part :/15:49
openstackgerritGraham Hayes proposed a change to stackforge/designate: Add status fields for domains and records  https://review.openstack.org/4473015:52
mugsiecflmarques: I assigned that blueprint to you... seen as you are doing the work on at at the moment15:59
openstackgerritGraham Hayes proposed a change to stackforge/designate: Add status fields for domains and records  https://review.openstack.org/4473016:04
cflmarquesmugsie: Okay, I am going to do my best :)16:05
*** ppenjoy has quit IRC16:08
*** adrian_otto has joined #openstack-dns16:12
artomDomain import/export would go into API v2, da?16:13
Kiallartom: yea, it would16:21
artomAny objections to me starting work on it?16:22
KiallNot at all :)16:22
artomWoot.16:22
*** yidclare has quit IRC16:28
openstackgerritKiall Mac Innes proposed a change to stackforge/designate: Add rudimentary migration testing  https://review.openstack.org/4848716:30
openstackgerritKiall Mac Innes proposed a change to stackforge/designate: Add rudimentary migration testing  https://review.openstack.org/4848716:33
*** eankutse has quit IRC16:40
openstackgerritA change was merged to stackforge/designate: Add rudimentary migration testing  https://review.openstack.org/4848716:51
*** tsimmons has joined #openstack-dns16:55
*** cflmarques has quit IRC17:00
*** vipul-away is now known as vipul17:03
*** yidclare has joined #openstack-dns17:10
*** vipul is now known as vipul-away17:29
*** vipul-away is now known as vipul17:29
*** jmcbride has joined #openstack-dns18:36
*** eankutse has joined #openstack-dns18:51
*** vipul is now known as vipul-away18:52
*** zane1 has joined #openstack-dns19:00
*** zane has quit IRC19:00
*** jmcbride has quit IRC19:04
*** jmcbride has joined #openstack-dns19:11
*** tsimmons has quit IRC19:21
*** tsimmons has joined #openstack-dns19:21
*** tsimmons has quit IRC19:26
*** tsimmons has joined #openstack-dns19:26
*** tsimmons has quit IRC19:27
*** tsimmons has joined #openstack-dns19:28
*** tsimmons has left #openstack-dns19:28
*** vipul-away is now known as vipul19:34
*** vinodmr has joined #openstack-dns19:36
*** krow has joined #openstack-dns19:44
*** jmcbride has quit IRC19:55
*** krow has quit IRC20:02
*** jmcbride has joined #openstack-dns20:02
*** jmcbride has quit IRC20:02
*** jmcbride has joined #openstack-dns20:02
*** vinodmr has quit IRC20:05
*** zane1 has quit IRC20:05
*** ekarlso has joined #openstack-dns20:13
*** zane1 has joined #openstack-dns20:24
*** jmcbride1 has joined #openstack-dns20:32
*** jmcbride has quit IRC20:34
*** krow has joined #openstack-dns20:43
*** krow has quit IRC20:48
*** jmcbride1 has quit IRC20:53
*** krow has joined #openstack-dns20:56
eankutseKiall: I'll get review submitted soonest :-)21:12
*** krow has quit IRC21:13
*** jmcbride has joined #openstack-dns21:14
*** krow has joined #openstack-dns21:14
*** eankutse1 has joined #openstack-dns21:19
*** eankutse has quit IRC21:23
*** eankutse1 has quit IRC21:23
*** jmcbride has quit IRC21:33
openstackgerritA change was merged to stackforge/designate: BIND9 Plugin Cleanup  https://review.openstack.org/4574521:40
*** jmcbride has joined #openstack-dns22:02
*** vipul is now known as vipul-away22:16
*** krow has quit IRC22:17
*** krow has joined #openstack-dns22:18
*** vipul-away is now known as vipul22:21
*** betsy has quit IRC22:28
*** krow has quit IRC22:36
*** krow has joined #openstack-dns22:42
*** adrian_otto has quit IRC22:45
*** jmcbride has quit IRC22:58
*** yidclare has quit IRC23:22
*** zane1 has quit IRC23:27
*** krow has quit IRC23:32
*** krow has joined #openstack-dns23:33
*** yidclare has joined #openstack-dns23:39
*** krow has quit IRC23:55

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