*** devoid has quit IRC | 00:03 | |
*** agntdrake has joined #openstack-dev | 00:06 | |
*** markwash has quit IRC | 00:09 | |
*** egallen has quit IRC | 00:10 | |
*** hemna_ is now known as hemnafk | 00:11 | |
*** colinmcnamara has quit IRC | 00:14 | |
*** novas0x2a|laptop has quit IRC | 00:14 | |
*** angdraug has quit IRC | 00:19 | |
*** danwent has quit IRC | 00:20 | |
*** melwitt has quit IRC | 00:22 | |
ayoung | morganfainberg, welcome to the end of the release cycle. Now you know why we did Keystone Feature freeze back in H2 | 00:26 |
---|---|---|
*** READ10 has quit IRC | 00:28 | |
*** blamar has quit IRC | 00:28 | |
*** READ10 has joined #openstack-dev | 00:32 | |
bknudson | we should have had a bug freeze. No new bugs. | 00:32 |
*** READ10 has quit IRC | 00:33 | |
*** MaxV has joined #openstack-dev | 00:34 | |
*** alop has quit IRC | 00:37 | |
bknudson | 48553 started gate at 12:55, and just got restarted as I was watching it. | 00:37 |
*** READ10 has joined #openstack-dev | 00:38 | |
morganfainberg | ayoung, hehe | 00:38 |
*** dubsquared has quit IRC | 00:39 | |
bknudson | if it helps anything, I assume we can backport a fix like https://review.openstack.org/#/c/48553/ . | 00:40 |
*** bhuvan has quit IRC | 00:40 | |
*** CaptTofu has joined #openstack-dev | 00:42 | |
bknudson | looks like the front of the gate is going to fail, so it's going to get reset | 00:46 |
morganfainberg | bknudson, yep | 00:47 |
*** CaptTofu has quit IRC | 00:47 | |
*** reed has quit IRC | 00:47 | |
*** MaxV has quit IRC | 00:48 | |
bknudson | seems like it'd be easier to kill gating until the fix is ready to be put at the front. | 00:50 |
*** bdpayne has quit IRC | 00:51 | |
morganfainberg | bknudson, it might be. | 00:52 |
ayoung | morganfainberg, wanna see something cool | 00:52 |
morganfainberg | ayoung, always | 00:52 |
ayoung | https://github.com/admiyo/keystone/tree/cookies-basic-auth | 00:52 |
morganfainberg | ayoung, that is pretty cool | 00:53 |
ayoung | morganfainberg, yep. I have it hard coded to the admin project right now because v3 doesn't pull in the default-project-id, and I wanted to the token to be able to read the users list. It was based on a devtack setup. | 00:55 |
morganfainberg | ayoung, would be even more awesome if basic auth supported extra fields. | 00:55 |
ayoung | morganfainberg, well, we can always go from an unscoped token to a scoped one | 00:56 |
ayoung | that can be done with forms | 00:56 |
morganfainberg | ayoung, aye | 00:56 |
*** CaptTofu has joined #openstack-dev | 00:56 | |
morganfainberg | bknudson, it's kind of interesting watching the recheckwatchbot in #openstack-qa report the failures | 00:57 |
*** agntdrake has quit IRC | 01:03 | |
*** zhiyan has joined #openstack-dev | 01:04 | |
*** dims has quit IRC | 01:08 | |
*** freedomhui has joined #openstack-dev | 01:09 | |
*** nati_ueno has quit IRC | 01:10 | |
*** RajeshMohan has quit IRC | 01:11 | |
*** RajeshMohan has joined #openstack-dev | 01:11 | |
*** freedomhui has quit IRC | 01:11 | |
*** rcleere has joined #openstack-dev | 01:12 | |
ayoung | morganfainberg, the convolutions I had to go through to create a token from the middleware, though, show that the mechanism is way too complicated | 01:13 |
morganfainberg | ayoung, you mean the issue token mechanism? | 01:14 |
ayoung | https://github.com/admiyo/keystone/blob/cookies-basic-auth/keystone/contrib/html/middleware.py#L81 which calls the function above it | 01:14 |
ayoung | morganfainberg, yeah...and the fact that the code is basically embedded in the controller that has all of the business logic | 01:15 |
morganfainberg | ayoung, yeah, i can see that the expected data structure is not… exactly friendly | 01:15 |
ayoung | the deeply nested JSON format is annoying | 01:15 |
*** rcleere has quit IRC | 01:15 | |
ayoung | and makes it hard to get right. | 01:16 |
morganfainberg | ayoung, i could see it being flattened out or constructing the expected values from something similar to headers (just a flat-Key-value system) | 01:16 |
morganfainberg | especially if we're doing the html thing you talked about in icehouse. | 01:16 |
ayoung | morganfainberg, that, or having a set of DTO classes that we reuse on the client and server side for these things | 01:16 |
ayoung | instead of json/dicts | 01:16 |
*** senk has joined #openstack-dev | 01:16 | |
ayoung | morganfainberg, html is in that patch set...two commits up | 01:17 |
morganfainberg | ayoung, hrm. i think you're going to run into other pitfalls (just a gut feeling) with DTO classes | 01:17 |
ayoung | https://github.com/admiyo/keystone/commits/cookies-basic-auth | 01:17 |
ayoung | morganfainberg, that may well be. | 01:18 |
*** spzala has joined #openstack-dev | 01:18 | |
ayoung | but at least it would be self documenting | 01:18 |
morganfainberg | ayoung, especially if you're developing against keystone APIs without the client (since we don't have java, c#, etc clients) | 01:18 |
ayoung | I had to figure out this structure from reading the controller code | 01:18 |
morganfainberg | ayoung, i very much agree with you, as I have had to do that a couple times as well. | 01:18 |
ayoung | DTOs for Those can be autogenerated if we had a decent representation | 01:18 |
ayoung | which I am going to need for forms as well | 01:19 |
morganfainberg | ayoung, fair enough. | 01:19 |
ayoung | I need to figure out how to represent the equivalent of forms in JSON and XML | 01:19 |
ayoung | We had something in FreeIPA, but it was really clunky and a one-off... | 01:19 |
*** faramir has joined #openstack-dev | 01:20 | |
morganfainberg | hmm. | 01:20 |
morganfainberg | past life me never tried to support both. it was either or (application specifc though) | 01:21 |
ayoung | http://admiyo.fedorapeople.org/ipa/demo/ui/test/data/json_metadata.json | 01:21 |
ayoung | listed the methods and properties for each object | 01:22 |
*** ericw has quit IRC | 01:22 | |
ayoung | but in IPA we converted JSON to html. I' | 01:22 |
ayoung | m trying to avoid that here | 01:22 |
*** freedomhui has joined #openstack-dev | 01:22 | |
*** ericw has joined #openstack-dev | 01:22 | |
morganfainberg | ayoung, that is a lot of data, but… it makes sense though (at first glance) so at least that is something for it. | 01:22 |
*** dims has joined #openstack-dev | 01:23 | |
ayoung | morganfainberg, yeah. The idea is that there must be some standard for describing the data to create or update an object that can be translated to XML, JSON, and HTML. We know that HTML is represented as Form. | 01:23 |
ayoung | FOr XML it is probably Schema docs | 01:23 |
ayoung | and for JSON...JSON schema I think | 01:24 |
morganfainberg | ayoung, you know, i wonder, would using something akin to protobufs as a DTO for the client work? there is auto-gen + many language support we could offer easily. And, as a bonus we could test against it / ensure data is not growing in silly ways w/o explicit thought | 01:24 |
ayoung | http://json-schema.org/ well looky here | 01:24 |
morganfainberg | ayoung, though i don't know how much extra overhead that would be tbh. | 01:24 |
morganfainberg | oh. hay, look at that. | 01:24 |
ayoung | morganfainberg, I think I like Python as the canonical format. We go to and from Python classes.... | 01:25 |
*** armax has left #openstack-dev | 01:25 | |
ayoung | You just have to pick one language and go with it. | 01:26 |
morganfainberg | ayoung, true enough. i would like to see a nice transport that could work to other languages though | 01:26 |
morganfainberg | it would be a nice feature add for working with keystone (and the other clients even, in the long run) | 01:27 |
morganfainberg | s/clients/services | 01:27 |
ayoung | https://github.com/Julian/jsonschema | 01:27 |
*** dolphm has quit IRC | 01:27 | |
morganfainberg | ayoung, json schema , that looks nice | 01:27 |
ayoung | morganfainberg, yeah... | 01:28 |
morganfainberg | i think that will be useful regardless of the other changes. i'd like to start using that at least in tests for the output (e.g. token format…ugh lets not `acquire` more data in it for no reason than we jsut happened to stick it there) | 01:29 |
ayoung | I was looking at Django-piston, but it doesn't have an emitter for HTML. | 01:29 |
morganfainberg | ayoung, though in theory XML should be sufficient to craft html from…. | 01:30 |
ayoung | hah...token should have nothing in it. ... I had to load all of the historic baggage into the PKI tokens in order to make them a drop in replacement due to all of the stuff we expose in the token validation API. | 01:30 |
ayoung | morganfainberg, JSON -> XML to HTML? | 01:30 |
ayoung | I really can't stand XML | 01:31 |
morganfainberg | ayoung, doable... | 01:31 |
ayoung | I don't need it | 01:31 |
morganfainberg | ayoung, i know, lets use XSLT for everything! | 01:31 |
ayoung | We have Python...we just need to use it properly | 01:31 |
morganfainberg | throw back to previous job there. sorry,. | 01:31 |
ayoung | the other thing is that all of the HTML tools do templating, which is not right for marshalling objects | 01:31 |
ayoung | I'm going to look into the JSON schema thing....it might be the missing link | 01:32 |
morganfainberg | ayoung, or at least an idea of what else to look for? | 01:32 |
*** erkules_ has joined #openstack-dev | 01:34 | |
ayoung | morganfainberg, anyway, if you get the time, pull that branch of mine and try out the code from a browser. | 01:34 |
morganfainberg | ayoung, totally will (probably this weekend) | 01:34 |
ayoung | I'm firmly convinced that the more visually aceesable we make Keystone, the better it will be | 01:34 |
ayoung | I want to follow the idea of progressive enhancement, so from the main tree, we do aboslutely the minimal to make it visible. | 01:34 |
ayoung | All UX is done by later on Javascript...by someone else, no use | 01:35 |
ayoung | not us | 01:35 |
morganfainberg | ayoung, that is totally reasonable | 01:35 |
ayoung | We will need to fill in the missing links. | 01:35 |
ayoung | literally, links from / to /v3 to /vw/users | 01:35 |
ayoung | /v3/users | 01:35 |
ayoung | we need a standard for how to find the form for a given enitity. | 01:36 |
ayoung | I've had two ideas on that: either something like | 01:36 |
*** erkules has quit IRC | 01:36 | |
ayoung | http://hostname:port/v3/users/format or http://hostname:port/v3/users?format=true | 01:37 |
ayoung | both have drawbacks | 01:37 |
morganfainberg | strictly speaking, the latter seems more my style (personal pref) | 01:37 |
*** markwash has joined #openstack-dev | 01:38 | |
ayoung | morganfainberg, the former is more mine: | 01:39 |
*** ericw has quit IRC | 01:39 | |
ayoung | but it does clash with the identifiers | 01:39 |
ayoung | basically we are reserving a keyword...something I'd rather not do | 01:40 |
morganfainberg | ayoung, hence my inclination to the latter | 01:40 |
morganfainberg | but it's not something i'd get on a soapbox about either direction | 01:40 |
ayoung | and why I came up with it...still, it should be a link from the users list. | 01:40 |
ayoung | you need to be able to navigate down to it. You could put all of the forms in a different suburl and have them link back to /users | 01:41 |
ayoung | so /forms/user for a new/update user form | 01:41 |
ayoung | but | 01:41 |
ayoung | I prefer | 01:41 |
*** briancurtin has joined #openstack-dev | 01:41 | |
ayoung | to update a user /users/<userid>?form | 01:41 |
ayoung | gets you the form view | 01:41 |
ayoung | of course...there is no reason that we couldn't make all of the entities return as forms. In IPA, we did just that. We had attribute level premissions, so if a user couldn't modify a value, it was static text, other wise it was the appropriate HTML input type | 01:43 |
ayoung | for example http://admiyo.fedorapeople.org/ipa/demo/ui/#identity=user&navigation=identity&user-facet=default&user-pkey=acarlson | 01:44 |
morganfainberg | ayoung, that is actually quite straight forward | 01:46 |
ayoung | morganfainberg, Ok, I've primed the pump. | 01:46 |
ayoung | yeah | 01:46 |
ayoung | We worked hard to make it so | 01:46 |
morganfainberg | ayoung, success. | 01:46 |
*** xjiujiu has joined #openstack-dev | 01:47 | |
*** senk has quit IRC | 01:48 | |
*** jasdeepH has quit IRC | 01:49 | |
*** davidhadas_ has quit IRC | 01:49 | |
*** nermina has joined #openstack-dev | 01:49 | |
*** davidhadas_ has joined #openstack-dev | 01:50 | |
*** briancurtin has quit IRC | 01:52 | |
ayoung | morganfainberg, anyway, I wanted to get people thinking about this, and it seemed a decent effort to take back up while waiting for gate jobs. I think having a useable UI for Keystone will help out in Management, as well as making it east for people to reproduce bugs. OK, gnightbug | 01:53 |
ayoung | heh | 01:53 |
ayoung | gnight | 01:53 |
*** ayoung is now known as ayoung-zZzZzZz | 01:53 | |
*** henrynash_ has joined #openstack-dev | 01:54 | |
*** toanster_ has quit IRC | 01:54 | |
*** henrynash has quit IRC | 01:55 | |
*** henrynash_ is now known as henrynash | 01:55 | |
*** schwicht has quit IRC | 01:57 | |
*** toanster_ has joined #openstack-dev | 01:57 | |
*** faramir has quit IRC | 01:57 | |
*** lifeless_ has joined #openstack-dev | 02:00 | |
*** lifeless has quit IRC | 02:00 | |
*** faramir has joined #openstack-dev | 02:04 | |
*** lifeless has joined #openstack-dev | 02:06 | |
*** lifeless_ has quit IRC | 02:07 | |
*** edmund has quit IRC | 02:10 | |
*** edmund has joined #openstack-dev | 02:10 | |
*** nermina has left #openstack-dev | 02:11 | |
*** notmyname_ has joined #openstack-dev | 02:15 | |
*** cyeoh_ has joined #openstack-dev | 02:16 | |
*** briancurtin has joined #openstack-dev | 02:17 | |
*** notmyname has quit IRC | 02:17 | |
*** cyeoh has quit IRC | 02:17 | |
*** HenryG has quit IRC | 02:17 | |
*** notmyname_ is now known as notmyname | 02:17 | |
*** anniec has quit IRC | 02:21 | |
*** briancurtin has quit IRC | 02:27 | |
*** twoputt has quit IRC | 02:29 | |
*** kashyap has quit IRC | 02:33 | |
*** pixelb has quit IRC | 02:33 | |
*** kashyap has joined #openstack-dev | 02:34 | |
*** dstanek has joined #openstack-dev | 02:34 | |
*** dstanek has left #openstack-dev | 02:35 | |
*** kashyap` has joined #openstack-dev | 02:37 | |
*** shinylasers has joined #openstack-dev | 02:38 | |
*** kashyap has quit IRC | 02:40 | |
*** dstanek has joined #openstack-dev | 02:43 | |
*** briancurtin has joined #openstack-dev | 02:45 | |
*** freedomhui has quit IRC | 02:47 | |
*** kashyap` has quit IRC | 02:48 | |
*** alunduil has quit IRC | 02:49 | |
*** gimps__ has joined #openstack-dev | 02:53 | |
*** kashyap has joined #openstack-dev | 02:57 | |
*** markmcclain1 has quit IRC | 02:59 | |
*** markwash has quit IRC | 03:05 | |
*** mrodden1 has joined #openstack-dev | 03:14 | |
*** shinylasers has quit IRC | 03:15 | |
*** mestery_ has joined #openstack-dev | 03:15 | |
*** rkukura has quit IRC | 03:15 | |
*** mrodden has quit IRC | 03:16 | |
*** mestery has quit IRC | 03:16 | |
*** jayg|g0n3 has quit IRC | 03:16 | |
*** jayg|g0n3 has joined #openstack-dev | 03:16 | |
*** spzala has quit IRC | 03:16 | |
*** faramir has quit IRC | 03:21 | |
*** CaptTofu has quit IRC | 03:24 | |
*** twoputt has joined #openstack-dev | 03:27 | |
*** jasdeepH has joined #openstack-dev | 03:27 | |
*** briancurtin has quit IRC | 03:30 | |
*** ericw has joined #openstack-dev | 03:34 | |
*** rcleere has joined #openstack-dev | 03:34 | |
*** adjohn has joined #openstack-dev | 03:40 | |
*** agntdrake has joined #openstack-dev | 03:42 | |
*** pabelanger has quit IRC | 03:44 | |
*** llu has quit IRC | 03:44 | |
*** llu has joined #openstack-dev | 03:45 | |
*** yonglihe_ has joined #openstack-dev | 03:45 | |
*** jab416171 has quit IRC | 03:45 | |
*** yongli has quit IRC | 03:45 | |
*** zhiyan has quit IRC | 03:46 | |
*** pabelanger has joined #openstack-dev | 03:49 | |
*** briancurtin has joined #openstack-dev | 03:55 | |
*** freedomhui has joined #openstack-dev | 04:01 | |
*** agntdrake has quit IRC | 04:03 | |
*** jasdeepH has quit IRC | 04:04 | |
*** shinylasers has joined #openstack-dev | 04:06 | |
*** briancurtin has quit IRC | 04:08 | |
*** jasdeepH has joined #openstack-dev | 04:17 | |
*** nati_ueno has joined #openstack-dev | 04:22 | |
*** rcleere has quit IRC | 04:23 | |
*** Mandell has quit IRC | 04:24 | |
*** ericw has quit IRC | 04:30 | |
*** shinylasers has quit IRC | 04:30 | |
*** ArcTanSusan has joined #openstack-dev | 04:39 | |
*** sarob has joined #openstack-dev | 04:49 | |
*** otherwiseguy has joined #openstack-dev | 04:50 | |
*** ArcTanSusan has quit IRC | 04:51 | |
*** Shaan7 has quit IRC | 04:55 | |
bigmstone | I know this isn't where to ask for support, but I wan't to confirm this isn't a bug. | 04:57 |
bigmstone | I'm receiving this output on all non-master nodes in a xen pool. Everything joins correctly to the aggregate, but the non-master nova-compute instances fail after joining the pool. http://pastebin.com/tpdePLvZ | 04:57 |
*** imsurit has joined #openstack-dev | 04:57 | |
*** radez is now known as radez_g0n3 | 04:57 | |
*** Ryan_Lane has quit IRC | 05:00 | |
*** Shaan7 has joined #openstack-dev | 05:02 | |
*** dstanek has quit IRC | 05:05 | |
*** HenryG has joined #openstack-dev | 05:09 | |
*** AlexF has joined #openstack-dev | 05:15 | |
*** edmund has quit IRC | 05:19 | |
*** vartom11 has joined #openstack-dev | 05:24 | |
*** otherwiseguy has quit IRC | 05:27 | |
*** Ryan_Lane has joined #openstack-dev | 05:31 | |
*** freedomhui has quit IRC | 05:32 | |
*** dstanek has joined #openstack-dev | 05:32 | |
*** sarob has quit IRC | 05:34 | |
*** sarob has joined #openstack-dev | 05:34 | |
*** Ryan_Lane has quit IRC | 05:39 | |
*** sarob has quit IRC | 05:39 | |
*** jasdeepH has quit IRC | 05:40 | |
*** dstanek has quit IRC | 05:41 | |
*** vartom11 has quit IRC | 05:41 | |
*** zaitcev has quit IRC | 05:42 | |
*** imsurit has quit IRC | 05:44 | |
*** AlexF has quit IRC | 05:44 | |
*** imsurit has joined #openstack-dev | 05:47 | |
*** imsurit is now known as Guest96149 | 05:48 | |
*** nplanel has quit IRC | 05:51 | |
*** nil1511 has joined #openstack-dev | 05:53 | |
*** Guest96149 is now known as imsurit_ | 06:00 | |
*** nil1511 has quit IRC | 06:00 | |
*** HenryG has quit IRC | 06:02 | |
*** ArcTanSusan has joined #openstack-dev | 06:03 | |
*** Ryan_Lane has joined #openstack-dev | 06:07 | |
*** Ryan_Lane has quit IRC | 06:11 | |
*** garyk has quit IRC | 06:16 | |
*** SergeyLukjanov has joined #openstack-dev | 06:16 | |
*** jab416171 has joined #openstack-dev | 06:17 | |
*** xjiujiu has quit IRC | 06:18 | |
*** xjiujiu has joined #openstack-dev | 06:18 | |
*** sushils has joined #openstack-dev | 06:25 | |
*** freedomhui has joined #openstack-dev | 06:30 | |
*** Ryan_Lane has joined #openstack-dev | 06:37 | |
*** jasdeepH has joined #openstack-dev | 06:38 | |
*** Ryan_Lane has quit IRC | 06:41 | |
*** adjohn has joined #openstack-dev | 06:42 | |
*** changlp_ is now known as changlp | 06:42 | |
*** fbo is now known as fbo_away | 06:45 | |
*** sarob has joined #openstack-dev | 06:45 | |
*** adjohn has quit IRC | 06:46 | |
*** kushal has joined #openstack-dev | 06:48 | |
*** sarob has quit IRC | 06:50 | |
*** shinylasers has joined #openstack-dev | 06:50 | |
*** dmakogon_ has joined #openstack-dev | 06:54 | |
*** egallen has joined #openstack-dev | 06:58 | |
*** nil1511 has joined #openstack-dev | 07:00 | |
*** Ryan_Lane has joined #openstack-dev | 07:07 | |
*** SpamapS has quit IRC | 07:08 | |
*** Abhilash has joined #openstack-dev | 07:08 | |
*** Ryan_Lane has quit IRC | 07:11 | |
*** freedomhui has quit IRC | 07:13 | |
*** garyk has joined #openstack-dev | 07:24 | |
*** o_petit has joined #openstack-dev | 07:25 | |
*** sushils has quit IRC | 07:25 | |
*** twoputt has quit IRC | 07:25 | |
*** sushils has joined #openstack-dev | 07:26 | |
*** o_petit has quit IRC | 07:27 | |
*** MaxV has joined #openstack-dev | 07:28 | |
*** fbo_away is now known as fbo | 07:30 | |
*** SergeyLukjanov has quit IRC | 07:31 | |
*** alexpilotti has joined #openstack-dev | 07:34 | |
*** imsurit_ has quit IRC | 07:37 | |
*** Ryan_Lane has joined #openstack-dev | 07:38 | |
*** nati_ueno has quit IRC | 07:38 | |
*** elfelvin has joined #openstack-dev | 07:39 | |
*** freedomhui has joined #openstack-dev | 07:42 | |
*** Ryan_Lane has quit IRC | 07:43 | |
*** nati_ueno has joined #openstack-dev | 07:51 | |
*** kushal has quit IRC | 07:52 | |
*** nil1511_ has joined #openstack-dev | 07:52 | |
*** alexpilotti has quit IRC | 07:52 | |
*** nil1511 has quit IRC | 07:53 | |
*** nil1511_ has quit IRC | 08:04 | |
*** kushal has joined #openstack-dev | 08:05 | |
*** Ryan_Lane has joined #openstack-dev | 08:09 | |
*** xga has joined #openstack-dev | 08:11 | |
*** dguitarbite has joined #openstack-dev | 08:11 | |
*** Ryan_Lane has quit IRC | 08:13 | |
*** nati_ueno has quit IRC | 08:18 | |
*** MaxV has quit IRC | 08:20 | |
*** ArcTanSusan has quit IRC | 08:29 | |
*** jsgotangco has joined #openstack-dev | 08:36 | |
*** o_petit has joined #openstack-dev | 08:37 | |
*** halfie has joined #openstack-dev | 08:39 | |
*** Ryan_Lane has joined #openstack-dev | 08:39 | |
*** o_petit has quit IRC | 08:42 | |
*** Ryan_Lane has quit IRC | 08:43 | |
*** faramir has joined #openstack-dev | 08:45 | |
*** henrynash has quit IRC | 08:49 | |
*** henrynash has joined #openstack-dev | 08:51 | |
*** danwent has joined #openstack-dev | 08:52 | |
*** Abhilash has quit IRC | 08:53 | |
*** eglynn has joined #openstack-dev | 08:54 | |
*** faramir has quit IRC | 08:55 | |
*** xjiujiu has quit IRC | 09:10 | |
*** Ryan_Lane has joined #openstack-dev | 09:10 | |
*** eglynn has quit IRC | 09:10 | |
*** xjiujiu has joined #openstack-dev | 09:12 | |
*** henrynash has quit IRC | 09:13 | |
*** Ryan_Lane has quit IRC | 09:14 | |
*** jsgotangco has quit IRC | 09:20 | |
*** AlexF has joined #openstack-dev | 09:27 | |
*** topshare has joined #openstack-dev | 09:29 | |
*** tvb has joined #openstack-dev | 09:32 | |
*** shinylasers has quit IRC | 09:34 | |
*** nil1511 has joined #openstack-dev | 09:38 | |
*** Ryan_Lane has joined #openstack-dev | 09:40 | |
*** Ryan_Lane has quit IRC | 09:44 | |
*** AlexF has quit IRC | 09:45 | |
*** o_petit has joined #openstack-dev | 09:52 | |
*** o_petit has quit IRC | 09:55 | |
*** rossella_s has joined #openstack-dev | 09:58 | |
*** dguitarbite has quit IRC | 09:58 | |
*** anniec has joined #openstack-dev | 09:59 | |
*** boris-42 has joined #openstack-dev | 09:59 | |
*** eglynn has joined #openstack-dev | 10:00 | |
*** danwent has quit IRC | 10:01 | |
*** anniec_ has joined #openstack-dev | 10:02 | |
*** dmakogon_ has quit IRC | 10:03 | |
*** xjiujiu has quit IRC | 10:03 | |
*** anniec has quit IRC | 10:03 | |
*** anniec_ is now known as anniec | 10:03 | |
*** xjiujiu has joined #openstack-dev | 10:05 | |
*** xga has quit IRC | 10:08 | |
*** nil1511 has quit IRC | 10:10 | |
*** Ryan_Lane has joined #openstack-dev | 10:11 | |
*** bvandenh has joined #openstack-dev | 10:11 | |
*** eglynn has quit IRC | 10:12 | |
*** giulivo has joined #openstack-dev | 10:12 | |
*** Ryan_Lane has quit IRC | 10:15 | |
*** bvandenh has quit IRC | 10:16 | |
*** xjiujiu_ has joined #openstack-dev | 10:16 | |
*** xjiujiu has quit IRC | 10:18 | |
*** topshare has quit IRC | 10:19 | |
*** SpamapS has joined #openstack-dev | 10:25 | |
*** romcheg has joined #openstack-dev | 10:34 | |
*** xjiujiu has joined #openstack-dev | 10:39 | |
*** xjiujiu_ has quit IRC | 10:40 | |
*** Ryan_Lane has joined #openstack-dev | 10:41 | |
*** romcheg has left #openstack-dev | 10:43 | |
*** rossella_s has quit IRC | 10:47 | |
*** romcheg has joined #openstack-dev | 10:47 | |
*** romcheg has left #openstack-dev | 10:47 | |
*** xjiujiu has quit IRC | 10:47 | |
*** tvb has quit IRC | 10:48 | |
*** Ryan_Lane has quit IRC | 10:50 | |
*** rossella_s has joined #openstack-dev | 10:52 | |
*** rossella_s has quit IRC | 10:53 | |
*** tvb has joined #openstack-dev | 10:56 | |
*** nil1511 has joined #openstack-dev | 11:01 | |
*** nil1511 has quit IRC | 11:02 | |
*** CaptTofu has joined #openstack-dev | 11:06 | |
*** sushils has quit IRC | 11:13 | |
*** Ryan_Lane has joined #openstack-dev | 11:16 | |
*** Ryan_Lane has quit IRC | 11:20 | |
*** kushal has quit IRC | 11:25 | |
*** vegarl has joined #openstack-dev | 11:26 | |
*** eglynn has joined #openstack-dev | 11:37 | |
*** michchap has quit IRC | 11:40 | |
*** michchap_ has joined #openstack-dev | 11:41 | |
*** michchap has joined #openstack-dev | 11:41 | |
*** michchap_ has quit IRC | 11:45 | |
*** Ryan_Lane has joined #openstack-dev | 11:47 | |
*** nil1511 has joined #openstack-dev | 11:50 | |
*** Ryan_Lane has quit IRC | 11:51 | |
*** CaptTofu has quit IRC | 11:51 | |
*** jhesketh has quit IRC | 11:55 | |
*** nil1511 has quit IRC | 11:59 | |
*** nil1511 has joined #openstack-dev | 11:59 | |
*** schwicht has joined #openstack-dev | 12:03 | |
*** CaptTofu has joined #openstack-dev | 12:12 | |
*** giulivo has quit IRC | 12:13 | |
*** eglynn has quit IRC | 12:15 | |
*** Ryan_Lane has joined #openstack-dev | 12:17 | |
*** edmund1 has joined #openstack-dev | 12:19 | |
*** rossella_s has joined #openstack-dev | 12:21 | |
*** Ryan_Lane has quit IRC | 12:21 | |
*** edmund1 has quit IRC | 12:31 | |
*** nil1511 has quit IRC | 12:34 | |
*** nil1511 has joined #openstack-dev | 12:36 | |
*** xga has joined #openstack-dev | 12:41 | |
*** CaptTofu has quit IRC | 12:42 | |
*** Ryan_Lane has joined #openstack-dev | 12:48 | |
*** Ryan_Lane has quit IRC | 12:52 | |
*** Ruetobas has quit IRC | 12:55 | |
*** Ruetobas has joined #openstack-dev | 12:56 | |
*** tvb|afk has joined #openstack-dev | 12:57 | |
*** henrynash has joined #openstack-dev | 12:58 | |
*** henrynash has quit IRC | 12:58 | |
*** tvb has quit IRC | 12:59 | |
*** henrynash has joined #openstack-dev | 12:59 | |
*** eglynn has joined #openstack-dev | 13:00 | |
*** nil1511 has quit IRC | 13:01 | |
*** dstanek has joined #openstack-dev | 13:03 | |
*** jasondotstar has joined #openstack-dev | 13:07 | |
*** gongysh has quit IRC | 13:08 | |
*** Ruetobas has quit IRC | 13:10 | |
*** Ruetobas has joined #openstack-dev | 13:11 | |
*** Ryan_Lane has joined #openstack-dev | 13:18 | |
*** Ryan_Lane has quit IRC | 13:23 | |
*** Ruetobas has quit IRC | 13:31 | |
*** giroro_ has joined #openstack-dev | 13:31 | |
*** SergeyLukjanov has joined #openstack-dev | 13:32 | |
*** giroro_ has quit IRC | 13:35 | |
*** Ruetobas has joined #openstack-dev | 13:39 | |
*** dstanek has quit IRC | 13:39 | |
*** dstanek has joined #openstack-dev | 13:40 | |
*** kenperkins has joined #openstack-dev | 13:40 | |
*** enikanorov has joined #openstack-dev | 13:41 | |
*** xqueralt-afk has quit IRC | 13:42 | |
*** xqueraltl has joined #openstack-dev | 13:42 | |
*** enikanorov_ has quit IRC | 13:42 | |
*** erkules_ is now known as erkules | 13:43 | |
*** michchap has quit IRC | 13:45 | |
*** michchap has joined #openstack-dev | 13:45 | |
*** Ryan_Lane has joined #openstack-dev | 13:49 | |
*** adalbas has quit IRC | 13:49 | |
*** michchap_ has joined #openstack-dev | 13:50 | |
*** eglynn has quit IRC | 13:52 | |
*** mestery has joined #openstack-dev | 13:53 | |
*** topshare has joined #openstack-dev | 13:53 | |
*** Ryan_Lane has quit IRC | 13:53 | |
*** michchap has quit IRC | 13:54 | |
*** mestery_ has quit IRC | 13:54 | |
*** dstanek has quit IRC | 13:56 | |
*** dmakogon_ has joined #openstack-dev | 13:58 | |
*** Ruetobas has quit IRC | 13:59 | |
*** adalbas has joined #openstack-dev | 14:01 | |
*** networkstatic has quit IRC | 14:01 | |
*** networkstatic has joined #openstack-dev | 14:02 | |
*** dmakogon_ has quit IRC | 14:02 | |
*** jasondotstar has quit IRC | 14:03 | |
*** dguitarbite has joined #openstack-dev | 14:04 | |
spn | On havana ubuntu repo based openstack if I run " nova --no-cache secgroup-add-rule default icmp -1 -1 0.0.0.0/0 " I hit this error http://paste.openstack.org/show/47664/ | 14:06 |
spn | can anyone guide me on what could be going wrong | 14:07 |
*** taziden has left #openstack-dev | 14:09 | |
*** adalbas has quit IRC | 14:13 | |
*** adalbas has joined #openstack-dev | 14:13 | |
*** Ruetobas has joined #openstack-dev | 14:13 | |
*** Ruetobas has quit IRC | 14:14 | |
*** Ruetobas has joined #openstack-dev | 14:15 | |
*** Ryan_Lane has joined #openstack-dev | 14:19 | |
*** Ruetobas has quit IRC | 14:19 | |
*** jasondotstar has joined #openstack-dev | 14:23 | |
*** Ryan_Lane has quit IRC | 14:23 | |
*** imsurit has joined #openstack-dev | 14:27 | |
*** Ruetobas has joined #openstack-dev | 14:28 | |
*** Ruetobas has quit IRC | 14:37 | |
*** Ruetobas has joined #openstack-dev | 14:41 | |
*** dubsquared has joined #openstack-dev | 14:45 | |
*** rossella_s has quit IRC | 14:45 | |
*** Ruetobas has quit IRC | 14:47 | |
*** pmathews has joined #openstack-dev | 14:47 | |
*** alunduil has joined #openstack-dev | 14:48 | |
*** Ryan_Lane has joined #openstack-dev | 14:49 | |
*** Ruetobas has joined #openstack-dev | 14:52 | |
*** anniec has quit IRC | 14:53 | |
*** dguitarbite has quit IRC | 14:53 | |
*** Ryan_Lane has quit IRC | 14:54 | |
*** Ruetobas has quit IRC | 14:56 | |
*** dubsquared has quit IRC | 15:01 | |
*** AlexF has joined #openstack-dev | 15:02 | |
*** Ruetobas has joined #openstack-dev | 15:03 | |
*** tvb|afk has quit IRC | 15:05 | |
*** HenryG has joined #openstack-dev | 15:05 | |
*** egallen has quit IRC | 15:08 | |
*** Ruetobas has quit IRC | 15:08 | |
*** alexpilotti has joined #openstack-dev | 15:09 | |
*** sushils has joined #openstack-dev | 15:10 | |
*** fbo is now known as fbo_away | 15:10 | |
*** ysc has joined #openstack-dev | 15:19 | |
*** egallen has joined #openstack-dev | 15:20 | |
*** Ryan_Lane has joined #openstack-dev | 15:20 | |
*** imsurit has quit IRC | 15:24 | |
*** Ryan_Lane has quit IRC | 15:24 | |
*** Ruetobas has joined #openstack-dev | 15:26 | |
*** sushils has quit IRC | 15:31 | |
*** SergeyLukjanov has quit IRC | 15:36 | |
*** jasondotstar has quit IRC | 15:44 | |
*** Ryan_Lane has joined #openstack-dev | 15:50 | |
*** adjohn has joined #openstack-dev | 15:53 | |
*** topshare has quit IRC | 15:53 | |
*** Ryan_Lane has quit IRC | 15:55 | |
*** jasdeepH has joined #openstack-dev | 15:56 | |
*** Ruetobas has quit IRC | 16:01 | |
*** kushal has joined #openstack-dev | 16:01 | |
*** kushal has joined #openstack-dev | 16:01 | |
*** adjohn has quit IRC | 16:02 | |
*** sushils has joined #openstack-dev | 16:05 | |
*** giroro_ has joined #openstack-dev | 16:06 | |
*** MaxV has joined #openstack-dev | 16:08 | |
*** giroro_ has quit IRC | 16:12 | |
*** xga has quit IRC | 16:13 | |
*** MaxV has quit IRC | 16:13 | |
*** Ruetobas has joined #openstack-dev | 16:13 | |
*** thomasm has joined #openstack-dev | 16:15 | |
*** comay has quit IRC | 16:15 | |
*** tvb has joined #openstack-dev | 16:16 | |
*** tvb has quit IRC | 16:16 | |
*** tvb has joined #openstack-dev | 16:16 | |
*** xga has joined #openstack-dev | 16:16 | |
*** changbl has quit IRC | 16:16 | |
*** colinmcnamara has joined #openstack-dev | 16:16 | |
*** tvb has quit IRC | 16:20 | |
*** colinmcnamara has quit IRC | 16:21 | |
*** Ryan_Lane has joined #openstack-dev | 16:21 | |
*** Ryan_Lane has quit IRC | 16:21 | |
*** Ryan_Lane has joined #openstack-dev | 16:21 | |
*** AlexF has quit IRC | 16:24 | |
*** Ryan_Lane has quit IRC | 16:25 | |
*** pmathews has quit IRC | 16:31 | |
*** AnilV4 has joined #openstack-dev | 16:33 | |
*** eglynn has joined #openstack-dev | 16:34 | |
*** SnowDust has joined #openstack-dev | 16:35 | |
SnowDust | can anyone reply to this heat problem ? http://paste.openstack.org/show/47666/ | 16:35 |
*** xga has quit IRC | 16:38 | |
*** xga has joined #openstack-dev | 16:40 | |
*** ericw has joined #openstack-dev | 16:41 | |
*** salv-orlando_ has joined #openstack-dev | 16:46 | |
*** ericw has quit IRC | 16:46 | |
*** ericw has joined #openstack-dev | 16:47 | |
*** matiu has joined #openstack-dev | 16:48 | |
*** salv-orlando has quit IRC | 16:49 | |
*** salv-orlando_ is now known as salv-orlando | 16:49 | |
*** kushal has quit IRC | 16:50 | |
*** Ruetobas has quit IRC | 16:51 | |
*** Ryan_Lane has joined #openstack-dev | 16:52 | |
*** Ryan_Lane has quit IRC | 16:56 | |
*** Ruetobas has joined #openstack-dev | 16:56 | |
*** ericw has quit IRC | 16:57 | |
*** dstanek has joined #openstack-dev | 17:00 | |
*** AnilV4 has quit IRC | 17:07 | |
*** dguitarbite has joined #openstack-dev | 17:17 | |
*** alexpilotti has quit IRC | 17:24 | |
*** thomasm has quit IRC | 17:24 | |
*** xga has quit IRC | 17:24 | |
*** o_petit has joined #openstack-dev | 17:27 | |
*** xga has joined #openstack-dev | 17:31 | |
*** dstanek has quit IRC | 17:34 | |
*** alexb_ has joined #openstack-dev | 17:35 | |
*** xga has quit IRC | 17:35 | |
*** thomasm has joined #openstack-dev | 17:36 | |
*** alexb_ has quit IRC | 17:36 | |
*** o_petit has quit IRC | 17:36 | |
*** dguitarbite has quit IRC | 17:37 | |
*** otherwiseguy has joined #openstack-dev | 17:39 | |
*** otherwiseguy has quit IRC | 17:44 | |
*** rdopieralski has joined #openstack-dev | 17:46 | |
*** DennyZhang has joined #openstack-dev | 17:46 | |
*** enikanorov has quit IRC | 17:48 | |
*** enikanorov has joined #openstack-dev | 17:49 | |
*** freedomhui has quit IRC | 17:51 | |
*** sushils has quit IRC | 17:54 | |
*** sushils has joined #openstack-dev | 17:58 | |
*** salv-orlando has quit IRC | 18:06 | |
*** AnilV4 has joined #openstack-dev | 18:06 | |
*** DennyZhang has quit IRC | 18:11 | |
*** dims has quit IRC | 18:12 | |
*** rdopieralski has quit IRC | 18:15 | |
*** edmund has joined #openstack-dev | 18:15 | |
*** stevemar has joined #openstack-dev | 18:18 | |
*** schwicht has quit IRC | 18:22 | |
*** AnilV4 has quit IRC | 18:26 | |
*** jasondotstar has joined #openstack-dev | 18:26 | |
*** sarob has joined #openstack-dev | 18:28 | |
*** adalbas has quit IRC | 18:29 | |
*** Ryan_Lane has joined #openstack-dev | 18:30 | |
*** sushils has quit IRC | 18:31 | |
*** sarob has quit IRC | 18:35 | |
*** sarob has joined #openstack-dev | 18:35 | |
*** tvb has joined #openstack-dev | 18:38 | |
*** tvb has quit IRC | 18:38 | |
*** tvb has joined #openstack-dev | 18:38 | |
*** jb__ has quit IRC | 18:39 | |
*** egallen has quit IRC | 18:39 | |
*** adjohn has joined #openstack-dev | 18:39 | |
*** sarob has quit IRC | 18:40 | |
*** mangelajo has joined #openstack-dev | 18:48 | |
*** mangelajo has quit IRC | 18:59 | |
*** ArcTanSusan has joined #openstack-dev | 19:03 | |
*** shinylasers has joined #openstack-dev | 19:08 | |
*** RajeshMohan has quit IRC | 19:13 | |
*** framp has joined #openstack-dev | 19:14 | |
*** SnowDust has quit IRC | 19:15 | |
*** RajeshMohan has joined #openstack-dev | 19:15 | |
*** neelashah has joined #openstack-dev | 19:17 | |
*** adjohn has quit IRC | 19:22 | |
*** jasondotstar has quit IRC | 19:26 | |
*** adjohn has joined #openstack-dev | 19:27 | |
*** Ryan_Lane has quit IRC | 19:28 | |
*** stevemar has quit IRC | 19:29 | |
*** neelashah has quit IRC | 19:34 | |
*** otherwiseguy has joined #openstack-dev | 19:36 | |
*** adjohn has quit IRC | 19:38 | |
*** adjohn has joined #openstack-dev | 19:38 | |
*** adjohn has quit IRC | 19:40 | |
*** romcheg has joined #openstack-dev | 19:40 | |
*** sarob has joined #openstack-dev | 19:46 | |
*** edmund has quit IRC | 19:47 | |
*** sarob has quit IRC | 19:51 | |
*** otherwiseguy has quit IRC | 19:51 | |
*** zbitter has joined #openstack-dev | 19:56 | |
*** bvandenh has joined #openstack-dev | 19:58 | |
*** zaneb has quit IRC | 20:00 | |
*** salv-orlando has joined #openstack-dev | 20:03 | |
*** AlexF has joined #openstack-dev | 20:14 | |
*** MaxV has joined #openstack-dev | 20:15 | |
*** novas0x2a|laptop has joined #openstack-dev | 20:17 | |
*** stevemar has joined #openstack-dev | 20:18 | |
*** rickerc has quit IRC | 20:18 | |
*** DennyZhang has joined #openstack-dev | 20:22 | |
*** bvandenh has quit IRC | 20:37 | |
*** jhesketh_ has quit IRC | 20:39 | |
*** rickerc has joined #openstack-dev | 20:40 | |
*** adjohn has joined #openstack-dev | 20:40 | |
*** MaxV has quit IRC | 20:41 | |
*** thomasm has quit IRC | 20:45 | |
*** MaxV has joined #openstack-dev | 20:47 | |
*** adjohn has quit IRC | 20:48 | |
*** otherwiseguy has joined #openstack-dev | 20:49 | |
framp | I use OpenStack in production and just installed devstack to get more insights. I miss the logs in /var/log/ for further PD because I cannot deploy a cirros in this environment. Is there any developer tips&tricks page which describes how to redirect all the screen outputs into logs for detailed analysis? | 20:49 |
clarkb | framp: you can set SCREEN_LOGDIR in your localrc which will log screen output to files in that directory | 20:50 |
*** changbl has joined #openstack-dev | 20:50 | |
clarkb | or you can set SYSLOG=True if you want to use syslog but that tends to be clunkier with large stacktraces and the like | 20:50 |
*** tvb has quit IRC | 20:55 | |
framp | clarkb: Sounds good. Just added SCREEN_LOGDIR to localrc and started rejoin-stack.sh - but there is no output to the log dir | 21:08 |
*** AlexF has quit IRC | 21:09 | |
clarkb | you may need to actually rerun stack.sh I am not sure | 21:11 |
*** SergeyLukjanov has joined #openstack-dev | 21:12 | |
framp | Will try. Anyhow I'm looking for some links which help me to get on speed with devstack environment and best practices. I don't want to ask all the questions vereybody new to devstack asks. | 21:13 |
*** davidhadas_ has quit IRC | 21:14 | |
framp | clarkb: I now get logs. THx | 21:21 |
*** SergeyLukjanov has quit IRC | 21:25 | |
*** tvb has joined #openstack-dev | 21:26 | |
*** SergeyLukjanov has joined #openstack-dev | 21:26 | |
*** novas0x2a|laptop has quit IRC | 21:27 | |
*** bswartz has quit IRC | 21:30 | |
*** bswartz has joined #openstack-dev | 21:32 | |
*** ArcTanSusan has quit IRC | 21:33 | |
*** tvb has quit IRC | 21:34 | |
*** ArcTanSusan has joined #openstack-dev | 21:35 | |
*** adjohn has joined #openstack-dev | 21:37 | |
*** rhsu has joined #openstack-dev | 21:43 | |
*** SergeyLukjanov has quit IRC | 21:44 | |
*** ArcTanSusan has quit IRC | 21:50 | |
*** jasondot_ has joined #openstack-dev | 21:52 | |
*** ArcTanSusan has joined #openstack-dev | 21:57 | |
*** adjohn has quit IRC | 21:57 | |
*** MaxV has quit IRC | 22:01 | |
*** tvb has joined #openstack-dev | 22:01 | |
*** MaxV has joined #openstack-dev | 22:03 | |
*** framp has quit IRC | 22:06 | |
*** enikanorov has quit IRC | 22:07 | |
*** enikanorov has joined #openstack-dev | 22:08 | |
*** adjohn has joined #openstack-dev | 22:12 | |
*** MaxV has quit IRC | 22:25 | |
*** ysc has quit IRC | 22:25 | |
*** DennyZhang has quit IRC | 22:31 | |
*** adjohn has quit IRC | 22:33 | |
*** adjohn has joined #openstack-dev | 22:38 | |
*** shinylasers has joined #openstack-dev | 22:44 | |
*** jasondot_ has quit IRC | 22:47 | |
*** alexpilotti has joined #openstack-dev | 22:51 | |
*** stevemar has quit IRC | 22:54 | |
*** adjohn has quit IRC | 22:59 | |
*** otherwiseguy has quit IRC | 23:02 | |
*** adjohn has joined #openstack-dev | 23:07 | |
*** networkstatic has quit IRC | 23:08 | |
*** networkstatic has joined #openstack-dev | 23:08 | |
*** rhsu has left #openstack-dev | 23:11 | |
*** adjohn has quit IRC | 23:21 | |
*** elfelvin has quit IRC | 23:29 | |
*** networkstatic has quit IRC | 23:36 | |
*** MaxV has joined #openstack-dev | 23:36 | |
*** nati_ueno has joined #openstack-dev | 23:37 | |
*** networkstatic has joined #openstack-dev | 23:38 | |
*** ericw has joined #openstack-dev | 23:39 | |
*** reed has joined #openstack-dev | 23:40 | |
*** eglynn has quit IRC | 23:40 | |
*** hashfail_ has joined #openstack-dev | 23:40 | |
*** nati_ueno has quit IRC | 23:41 | |
*** gimps_ has quit IRC | 23:42 | |
*** gongysh has joined #openstack-dev | 23:45 | |
*** READ10 has quit IRC | 23:53 | |
*** reed has quit IRC | 23:54 | |
*** jamielennox|away has quit IRC | 23:57 | |
*** ianw has quit IRC | 23:58 | |
*** ericw has quit IRC | 23:59 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!