Friday, 2015-06-05

openstackgerritMerged openstack/barbican: Adding a new script  to generate mkek and hmac  https://review.openstack.org/18680000:07
*** jaosorior has quit IRC00:22
*** nkinder_ has quit IRC00:33
*** zz_dimtruck is now known as dimtruck00:39
*** nelsnelson has joined #openstack-barbican00:40
*** woodster_ has quit IRC00:50
*** chlong has quit IRC00:52
*** alee has quit IRC00:52
*** chlong has joined #openstack-barbican00:54
*** alee has joined #openstack-barbican01:05
*** woodster_ has joined #openstack-barbican01:10
woodster_I'm getting an odd error with tox -e py27:01:34
woodster_https://www.irccloud.com/pastebin/zND0rfNq/01:34
openstackgerritJohn Wood proposed openstack/barbican: Add retry server and functional tests to DevStack  https://review.openstack.org/17089601:48
*** SheenaG1 has quit IRC02:04
*** SheenaG has joined #openstack-barbican02:25
openstackgerritJohn Wood proposed openstack/barbican: Add retry server and functional tests to DevStack  https://review.openstack.org/17089602:26
*** SheenaG has quit IRC03:02
*** dave-mccowan has joined #openstack-barbican03:30
*** nelsnelson has quit IRC03:43
*** nkinder_ has joined #openstack-barbican03:47
*** dimtruck is now known as zz_dimtruck03:52
*** dave-mccowan has quit IRC04:06
*** jamielennox is now known as jamielennox|away04:32
*** nelsnelson has joined #openstack-barbican05:49
*** jaosorior has joined #openstack-barbican05:54
*** nelsnelson has quit IRC06:03
*** tkelsey has joined #openstack-barbican06:14
*** tkelsey has quit IRC06:29
*** tkelsey has joined #openstack-barbican06:57
*** everjeje has quit IRC07:07
*** woodster_ has quit IRC07:10
*** tkelsey has quit IRC07:17
*** everjeje has joined #openstack-barbican07:24
*** nickrmc83 has joined #openstack-barbican07:59
*** chlong has quit IRC08:34
*** nickrmc83 has quit IRC09:34
*** nickrmc83 has joined #openstack-barbican09:58
*** tkelsey has joined #openstack-barbican10:51
*** tkelsey has quit IRC10:59
*** nelsnelson has joined #openstack-barbican11:45
*** darrenmoffat has quit IRC11:50
*** darrenmoffat has joined #openstack-barbican11:51
*** nelsnelson has quit IRC11:55
*** nickrmc83 has quit IRC12:02
*** dave-mccowan has joined #openstack-barbican12:03
dave-mccowanjaosorior ping12:04
jaosoriordave-moccowan: pong12:04
jaosoriorwhat's up?12:07
*** dave-mccowan has quit IRC12:09
*** dave-mccowan has joined #openstack-barbican12:15
*** woodster_ has joined #openstack-barbican12:27
dave-mccowanalee ping12:29
jaosoriordave-mccowan: you were pinging me before?12:31
dave-mccowanjaosorior hi ozz.   i have a pecan question, if you have a minute.  how can i make a controller to take '/project-quotas/' (with the dash) in pecan 0.8.0?  (it looks like pecan.route wasn't added until 0.9.0)12:32
jaosorioradding project_quotas should be easy enough without pecan.route . But if you specifically need the dash then I need to investigate12:33
dave-mccowanjaosorior  can you think of any examples in barbican (or openstack) that use either one?   the spec, written last cycle, had the dash, so i went with that one.12:36
jaosoriorwait up12:38
jaosoriordave-mccowan: I think it should be possible to use the dash12:39
jaosoriorusing an approach similar to what alee used in the cas.py controller12:40
jaosoriordave-mccowan: https://github.com/openstack/barbican/blob/master/barbican/api/controllers/cas.py#L5412:40
aleedave-mccowan, yes , you have to use the apprach Iused for cas12:42
aleeapproach12:42
jaosoriorto add a controller such as project_quotas it's just a matter of writing a variable with such a name in the root controller (or the desired parent controller)12:43
jaosorioralee: Haven't done much about the dogtag issue since yesterday, but now it doesn't finish the installation. I think I'll revert it to using two directories (alias and alias-ca) and just adding the extra debugging logs12:44
dave-mccowanjaosorior alee  that works for subtrees undered /cas/.  what if it was '/c-as/'?12:45
jaosoriordave-mccowan: the same approach would need to be used, but in the root controller12:45
jaosoriorwhich at the moment is in barbican.api.app12:45
jaosorior(but it will change)12:46
jaosorioras per this commit: https://review.openstack.org/#/c/178601/12:46
aleejaosorior, ok - sorry - need to run a few errands this morning, but yeah - will need to see the output of the logs to diagnose whats going on12:46
dave-mccowanjaosorior  ah!  got it.  thanks.12:46
openstackgerritJuan Antonio Osorio Robles proposed openstack/barbican: service_enabled instead of environment variable for dogtag  https://review.openstack.org/18518112:51
*** dave-mccowan has quit IRC12:59
*** kfarr_ has joined #openstack-barbican13:02
*** rellerreller has joined #openstack-barbican13:05
ryanpetrellojaosorior, alee, dave-mccowan: https://github.com/openstack/barbican/blob/master/barbican/api/controllers/cas.py#L54 is pretty similar to what `pecan.route` does in 0.9.0 anyways (a setattr)13:17
ryanpetrelloso that's a perfectly acceptable way of solving this13:17
*** tkelsey has joined #openstack-barbican13:21
jaosoriorryanpetrello: Thanks for the confirmation, now we know we are not just hacking around :D13:22
ryanpetrelloyep13:22
ryanpetrelloI've also seen people handle it with a `def _lookup`13:22
ryanpetrellobut I like the __setattr__ fallback better13:22
ryanpetrelloin the above example, if you wanted to only route to some-path (and not some_path)13:22
ryanpetrelloyou could avoid decorating self.some_path with expose until the setattr13:23
ryanpetrelloe.g.,13:23
ryanpetrelloif name in route_table:13:23
ryanpetrello    return pecan.expose(route_table[name])13:23
ryanpetrellomay not be worth the complexity, though13:24
jaosorioryeah, I think the current approach is sufficient13:24
jaosoriorpecan 0.9.0 is not yet in global requirements?13:24
ryanpetrelloI don't believe so13:25
ryanpetrelloI haven't submitted13:25
ryanpetrello(it)13:25
jaosoriorfair enough13:25
ryanpetrellofwiw, I'm currently working on a lean upgrade to 1.0.0 and am going to start using semantic versioning13:25
ryanpetrellopecan is plenty stable and we've been doing this 0.x nonsense for too long13:25
jaosoriorBy the way, people: can anybody review this CR? https://review.openstack.org/#/c/178601/ this basically enables keystone discovery for the barbican server13:26
jaosoriorWould make life slightly easier for the barbicanclient :D13:26
jaosorioralee: By the way, there are results for the dogtag stuff, let me know when you're around13:28
jaosorioralee: http://logs.openstack.org/81/185181/17/experimental/gate-barbican-dogtag-devstack-dsvm-f21/1184f6a/console.html#_2015-06-05_13_15_01_66113:29
*** SheenaG has joined #openstack-barbican13:34
*** tkelsey has quit IRC13:36
*** stanzi has joined #openstack-barbican14:01
*** stanzi has quit IRC14:16
*** stanzi has joined #openstack-barbican14:16
*** silos has joined #openstack-barbican14:17
*** pglass has joined #openstack-barbican14:19
*** zz_dimtruck is now known as dimtruck14:19
*** stanzi has quit IRC14:29
*** kfarr_ has quit IRC14:31
*** xaeth_afk is now known as xaeth14:38
*** stanzi has joined #openstack-barbican14:40
openstackgerritMerged openstack/barbican: Updated from global requirements  https://review.openstack.org/18847014:49
*** nkinder_ has quit IRC14:51
*** kebray has joined #openstack-barbican15:06
*** rellerreller has quit IRC15:15
openstackgerritChelsea Winfree proposed openstack/barbican: Documentation for PKCS11 Key Generation script  https://review.openstack.org/18736715:26
openstackgerritMerged openstack/python-barbicanclient: Updated from global requirements  https://review.openstack.org/18848815:32
*** gyee_ has joined #openstack-barbican15:38
*** stanzi has quit IRC15:42
*** david-lyle has quit IRC15:46
*** david-lyle has joined #openstack-barbican15:46
*** crc32 has joined #openstack-barbican15:52
*** stanzi has joined #openstack-barbican15:57
*** pglass has quit IRC15:57
*** pglass has joined #openstack-barbican15:59
*** kebray has quit IRC16:02
*** kebray has joined #openstack-barbican16:03
*** chadlung has joined #openstack-barbican16:07
*** stanzi has quit IRC16:08
*** stanzi has joined #openstack-barbican16:11
*** crc32 has quit IRC16:18
*** stanzi has quit IRC16:19
*** stanzi has joined #openstack-barbican16:38
*** stanzi has quit IRC16:56
*** SheenaG has quit IRC16:58
*** rellerreller has joined #openstack-barbican17:01
*** SheenaG has joined #openstack-barbican17:06
*** stanzi has joined #openstack-barbican17:13
*** dimtruck is now known as zz_dimtruck17:19
*** SheenaG has quit IRC17:20
*** stanzi has quit IRC17:23
*** SheenaG has joined #openstack-barbican17:24
*** SheenaG has quit IRC17:29
*** SheenaG has joined #openstack-barbican17:31
elmikoredrobot: hey, i added a bug for the runner script and just assigned to myself. hope thats cool =)17:36
elmikoworking on a poc currently, *maybe* i'll have something for the meeting on monday17:37
elmikoalee ^^17:37
*** kfarr has joined #openstack-barbican17:39
redrobotelmiko fine by me17:53
elmikocool17:54
*** stanzi_ has joined #openstack-barbican17:54
*** stanzi has joined #openstack-barbican18:00
aleeelmiko, great!18:01
*** stanzi_ has quit IRC18:03
woodster_any mysql experts out there?18:03
openstackgerritJohn Wood proposed openstack/barbican: Add retry server and functional tests to DevStack  https://review.openstack.org/17089618:30
arunkantalee, redrobot : can you please look into ACL rename change. https://review.openstack.org//#/c/188208/18:38
*** stanzi has quit IRC18:39
redrobotarunkant I'm really sorry, I've been pretty busy with some deployment stories, and haven't had a chance to review much this week.18:39
redrobotarunkant will definitely review today or over the weekend.18:39
*** stanzi has joined #openstack-barbican18:41
arunkantredrobot : thanks. Will you be taking care of ACL backport to Kilo . Is this change also going to be backported to Kilo?18:42
redrobotarunkant yes, I'll be doing the backport patch... I tried to yesterday, but I think there may be a merge conflict because I couldn't do it through the UI18:43
*** gyee_ has quit IRC18:47
*** stanzi has quit IRC18:51
*** jraim has quit IRC18:54
*** briancurtin has quit IRC18:54
*** codekobe has quit IRC18:54
*** zz_dimtruck is now known as dimtruck19:11
*** jaosorior has quit IRC19:12
openstackgerritNathan Reller proposed openstack/barbican: Added pkcs1_only Configuration to KMIP  https://review.openstack.org/18246119:12
*** silos has left #openstack-barbican19:23
*** SheenaG has quit IRC19:39
*** rellerreller has quit IRC19:39
*** everjeje has quit IRC20:02
*** erw has quit IRC20:02
*** lisaclark_ has quit IRC20:02
*** lisaclark has quit IRC20:02
*** Sheena_ has quit IRC20:02
*** stanzi has joined #openstack-barbican20:26
*** stanzi has quit IRC20:35
*** xaeth is now known as xaeth_afk20:36
*** stanzi_ has joined #openstack-barbican20:37
*** jraim has joined #openstack-barbican20:38
*** everjeje has joined #openstack-barbican20:46
*** codekobe has joined #openstack-barbican20:49
*** erw has joined #openstack-barbican20:51
*** stanzi_ has quit IRC20:54
*** dave-mccowan has joined #openstack-barbican20:56
*** rellerreller has joined #openstack-barbican20:57
openstackgerritJohn Wood proposed openstack/barbican: Add retry server and functional tests to DevStack  https://review.openstack.org/17089620:58
*** briancurtin has joined #openstack-barbican21:05
woodster_alee: ^^^ this tests the wait-for-CA use case finally21:05
*** kfarr has quit IRC21:11
*** kfarr2 has joined #openstack-barbican21:13
aleewoodster_, ok21:16
aleewoodster_, arunkant - I will review monday (if I'm not out) or Tuesday morning.21:17
*** dave-mccowan has quit IRC21:21
*** jorge_munoz has quit IRC21:27
*** jorge_munoz has joined #openstack-barbican21:29
*** lisaclark_ has joined #openstack-barbican21:32
*** lisaclark has joined #openstack-barbican21:32
*** kebray has quit IRC21:34
*** alee is now known as alee_out21:35
elmikoredrobot: you still around?21:36
*** Sheena_ has joined #openstack-barbican21:38
*** openstack has joined #openstack-barbican21:41
-cameron.freenode.net- [freenode-info] why register and identify? your IRC nick is how people know you. http://freenode.net/faq.shtml#nicksetup21:41
*** chadlung has quit IRC21:41
*** rellerreller has quit IRC21:52
*** chadlung has joined #openstack-barbican21:53
*** chadlung has quit IRC21:54
*** chadlung has joined #openstack-barbican21:54
*** chadlung has quit IRC21:57
*** kfarr2 has left #openstack-barbican22:16
*** nkinder has joined #openstack-barbican22:22
*** chadlung has joined #openstack-barbican22:23
*** pglass has quit IRC22:31
*** openstackgerrit has quit IRC22:37
*** openstackgerrit has joined #openstack-barbican22:37
*** chadlung has quit IRC22:44
redrobotelmiko o/22:56
*** kebray has joined #openstack-barbican22:56
*** everjeje has quit IRC23:03
*** chadlung has joined #openstack-barbican23:45
*** chadlung has quit IRC23:50
*** chadlung has joined #openstack-barbican23:53

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