*** krow has quit IRC | 00:07 | |
*** matsuhashi has joined #openstack-dns | 00:22 | |
*** ctracey has quit IRC | 01:00 | |
*** ctracey has joined #openstack-dns | 01:01 | |
*** ctracey has quit IRC | 01:02 | |
*** ctracey has joined #openstack-dns | 01:03 | |
*** ctracey has quit IRC | 01:16 | |
*** ctracey has joined #openstack-dns | 01:29 | |
*** vipul has quit IRC | 02:38 | |
*** vipul has joined #openstack-dns | 02:39 | |
*** krow has joined #openstack-dns | 02:40 | |
*** adrian_otto has joined #openstack-dns | 02:41 | |
*** krow has quit IRC | 02:56 | |
*** adrian_otto has quit IRC | 03:53 | |
*** matsuhashi has quit IRC | 03:59 | |
*** matsuhashi has joined #openstack-dns | 04:02 | |
*** vipul is now known as vipul-away | 04:14 | |
*** krow has joined #openstack-dns | 04:52 | |
*** matsuhashi has quit IRC | 06:47 | |
*** matsuhashi has joined #openstack-dns | 07:06 | |
*** briancline has quit IRC | 08:10 | |
*** briancline has joined #openstack-dns | 08:17 | |
*** cflmarques has joined #openstack-dns | 08:17 | |
*** krow has quit IRC | 09:20 | |
*** krow has joined #openstack-dns | 09:35 | |
cflmarques | Hi Guys | 09:36 |
---|---|---|
cflmarques | I 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 IRC | 09:42 | |
kiall_ | cflmarques: hiya | 09: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.json | 09:43 |
kiall_ | adding NAPTR to the list here: https://github.com/stackforge/designate/blob/master/designate/storage/impl_sqlalchemy/models.py#L35 | 09: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.py | 09:44 |
kiall_ | That should be it! | 09:44 |
cflmarques | Thank you so much Kiall. | 09:48 |
mugsie | cflmarques: if you are looking to push this as open source, it might be a good idea to register a blueprint here: https://launchpad.net/designate | 09:48 |
kiall_ | Yea - What ^ said! We're (trying) to start following that process :) | 09:49 |
cflmarques | Do 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 |
cflmarques | okay 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 3401 | 10:04 |
kiall_ | Ah .. rfc2915 and rfc3403 are what define the spec for NAPTR :) | 10:04 |
cflmarques | Okay, I will do it straight away. | 10:07 |
cflmarques | Thank you for your precious help :) | 10:09 |
kiall_ | No problem | 10:26 |
cflmarques | Kiall: Do you think the blueprint is well described? : https://blueprints.launchpad.net/designate/+spec/naptr-record | 10:39 |
kiall_ | Yep - That'll do :) | 10:39 |
*** ppenjoy has joined #openstack-dns | 10:40 | |
cflmarques | Kiall: Okay, I didn't assign no one do the blueprint, but I will work on that. | 10:42 |
dmakogon | hi, guys. i've got an issue on deployment of designate ResourceNotFound: Could not find the requested resource: resources/schemas/v1/domain.json | 11:32 |
dmakogon | what should i do ? | 11:32 |
kiall_ | dmakogon: heya | 11:35 |
kiall_ | how did you deploy designate? It shouldn't have an issue finding those :/ | 11:36 |
*** kiall_ is now known as Kiall | 11:52 | |
*** ekarlso has quit IRC | 12:20 | |
*** matsuhashi has quit IRC | 12:34 | |
*** betsy has joined #openstack-dns | 12:39 | |
*** eankutse has joined #openstack-dns | 13:20 | |
*** matsuhashi has joined #openstack-dns | 13:43 | |
*** cflmarques has quit IRC | 13:46 | |
*** cflmarques has joined #openstack-dns | 13:51 | |
*** eankutse1 has joined #openstack-dns | 13:52 | |
*** eankutse has quit IRC | 13:52 | |
*** matsuhashi has quit IRC | 14:13 | |
ppenjoy | problem with the instance with the dhclient: http://paste.openstack.org/show/47541/ , I can do everything but the dhcpclient is looping | 14:33 |
*** betsy has quit IRC | 14:41 | |
cflmarques | Kiall : 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 |
cflmarques | When you said copying this migration you mean add the NAPTR record_type and then synchronize the database again? | 14:55 |
eankutse1 | Kiall: 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 IRC | 15:03 | |
cflmarques | . | 15:04 |
cflmarques | Kiall : 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 |
cflmarques | When you said copying this migration you mean add the NAPTR record_type and then synchronize the database again? | 15:05 |
*** zane has joined #openstack-dns | 15:05 | |
*** eankutse has joined #openstack-dns | 15:10 | |
*** eankutse has quit IRC | 15:11 | |
*** eankutse has joined #openstack-dns | 15:16 | |
mugsie | cflmarques: yup, and then adding them to the models as well | 15:29 |
mugsie | around here | 15:29 |
mugsie | https://github.com/stackforge/designate/blob/master/designate/storage/impl_sqlalchemy/models.py#L35 | 15:29 |
mugsie | and then the validation in the frontend API, which looks like it could be quite difficult | 15:30 |
mugsie | (regexing a regex) | 15:30 |
* mugsie shudders | 15:30 | |
*** betsy has joined #openstack-dns | 15:34 | |
cflmarques | mugsie: I appreciate your help. Is there any known problems with validation regarding NAPTR records? | 15:40 |
*** artom has quit IRC | 15:43 | |
*** artom has joined #openstack-dns | 15:44 | |
mugsie | not that I know of, its just the thought of trying to vaidate a regex with another regex | 15:44 |
Kiall | eankutse: ping | 15:44 |
cflmarques | Yea, you'r right.. I will try to workaround that issue. | 15:47 |
Kiall | eankutse: 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 |
openstackgerrit | Graham Hayes proposed a change to stackforge/designate: Add status fields for domains and records https://review.openstack.org/44730 | 15:52 |
mugsie | cflmarques: I assigned that blueprint to you... seen as you are doing the work on at at the moment | 15:59 |
openstackgerrit | Graham Hayes proposed a change to stackforge/designate: Add status fields for domains and records https://review.openstack.org/44730 | 16:04 |
cflmarques | mugsie: Okay, I am going to do my best :) | 16:05 |
*** ppenjoy has quit IRC | 16:08 | |
*** adrian_otto has joined #openstack-dns | 16:12 | |
artom | Domain import/export would go into API v2, da? | 16:13 |
Kiall | artom: yea, it would | 16:21 |
artom | Any objections to me starting work on it? | 16:22 |
Kiall | Not at all :) | 16:22 |
artom | Woot. | 16:22 |
*** yidclare has quit IRC | 16:28 | |
openstackgerrit | Kiall Mac Innes proposed a change to stackforge/designate: Add rudimentary migration testing https://review.openstack.org/48487 | 16:30 |
openstackgerrit | Kiall Mac Innes proposed a change to stackforge/designate: Add rudimentary migration testing https://review.openstack.org/48487 | 16:33 |
*** eankutse has quit IRC | 16:40 | |
openstackgerrit | A change was merged to stackforge/designate: Add rudimentary migration testing https://review.openstack.org/48487 | 16:51 |
*** tsimmons has joined #openstack-dns | 16:55 | |
*** cflmarques has quit IRC | 17:00 | |
*** vipul-away is now known as vipul | 17:03 | |
*** yidclare has joined #openstack-dns | 17:10 | |
*** vipul is now known as vipul-away | 17:29 | |
*** vipul-away is now known as vipul | 17:29 | |
*** jmcbride has joined #openstack-dns | 18:36 | |
*** eankutse has joined #openstack-dns | 18:51 | |
*** vipul is now known as vipul-away | 18:52 | |
*** zane1 has joined #openstack-dns | 19:00 | |
*** zane has quit IRC | 19:00 | |
*** jmcbride has quit IRC | 19:04 | |
*** jmcbride has joined #openstack-dns | 19:11 | |
*** tsimmons has quit IRC | 19:21 | |
*** tsimmons has joined #openstack-dns | 19:21 | |
*** tsimmons has quit IRC | 19:26 | |
*** tsimmons has joined #openstack-dns | 19:26 | |
*** tsimmons has quit IRC | 19:27 | |
*** tsimmons has joined #openstack-dns | 19:28 | |
*** tsimmons has left #openstack-dns | 19:28 | |
*** vipul-away is now known as vipul | 19:34 | |
*** vinodmr has joined #openstack-dns | 19:36 | |
*** krow has joined #openstack-dns | 19:44 | |
*** jmcbride has quit IRC | 19:55 | |
*** krow has quit IRC | 20:02 | |
*** jmcbride has joined #openstack-dns | 20:02 | |
*** jmcbride has quit IRC | 20:02 | |
*** jmcbride has joined #openstack-dns | 20:02 | |
*** vinodmr has quit IRC | 20:05 | |
*** zane1 has quit IRC | 20:05 | |
*** ekarlso has joined #openstack-dns | 20:13 | |
*** zane1 has joined #openstack-dns | 20:24 | |
*** jmcbride1 has joined #openstack-dns | 20:32 | |
*** jmcbride has quit IRC | 20:34 | |
*** krow has joined #openstack-dns | 20:43 | |
*** krow has quit IRC | 20:48 | |
*** jmcbride1 has quit IRC | 20:53 | |
*** krow has joined #openstack-dns | 20:56 | |
eankutse | Kiall: I'll get review submitted soonest :-) | 21:12 |
*** krow has quit IRC | 21:13 | |
*** jmcbride has joined #openstack-dns | 21:14 | |
*** krow has joined #openstack-dns | 21:14 | |
*** eankutse1 has joined #openstack-dns | 21:19 | |
*** eankutse has quit IRC | 21:23 | |
*** eankutse1 has quit IRC | 21:23 | |
*** jmcbride has quit IRC | 21:33 | |
openstackgerrit | A change was merged to stackforge/designate: BIND9 Plugin Cleanup https://review.openstack.org/45745 | 21:40 |
*** jmcbride has joined #openstack-dns | 22:02 | |
*** vipul is now known as vipul-away | 22:16 | |
*** krow has quit IRC | 22:17 | |
*** krow has joined #openstack-dns | 22:18 | |
*** vipul-away is now known as vipul | 22:21 | |
*** betsy has quit IRC | 22:28 | |
*** krow has quit IRC | 22:36 | |
*** krow has joined #openstack-dns | 22:42 | |
*** adrian_otto has quit IRC | 22:45 | |
*** jmcbride has quit IRC | 22:58 | |
*** yidclare has quit IRC | 23:22 | |
*** zane1 has quit IRC | 23:27 | |
*** krow has quit IRC | 23:32 | |
*** krow has joined #openstack-dns | 23:33 | |
*** yidclare has joined #openstack-dns | 23:39 | |
*** krow has quit IRC | 23:55 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!