Friday, 2013-10-04

*** sarob has quit IRC00:00
*** cjellick has quit IRC00:01
*** colinmcnamara has quit IRC00:01
*** mrodden has quit IRC00:02
*** FatDarrel has quit IRC00:03
*** cjellick has joined #openstack-dev00:03
*** pmathews has quit IRC00:04
*** otherwiseguy has quit IRC00:04
dtroyerok, so I totally thought I was looking at the keystone-in-apache review and, well, I was confused.00:05
dtroyerI see the problem, the scheme  in the keystone api check URL is blank00:05
jamielennoxah, sorry - that's all passed in00:06
jamielennoxright00:06
jamielennoxbut it seems to be something to do with how grenade pulls in the various devstack changes00:07
*** spzala has joined #openstack-dev00:07
*** cjellick has quit IRC00:07
jamielennoxi *think* that grenade is pulling in the devstack functions from master, not from the change00:07
dtroyerthe devstack tree is totally pre-set up by devstack-gate00:08
dtroyerboth of them…zuul is responsible for getting the right bits into position00:08
jamielennoxso looking at the change to lib/keystone it's not that complex, and if grenade is sourcing that file then it should be getting KEYSTONE_AUTH_PROTOCOL set up correctly00:10
jamielennoxhttps://review.openstack.org/#/c/47076/8/lib/keystone00:10
*** jcoufal has quit IRC00:11
jamielennoxo damn, that's right00:12
jamielennox/opt/stack/new/devstack/lib/keystone: line 79: is_ssl_enabled_service: command not found00:12
dtroyeryeah…also, grenade sources its own copy of functions, not devstack's, but it sources lib/keystone so that function is not there00:13
jamielennoxsorry, i've done a bit of a context shift since i did this00:13
*** michchap_ has quit IRC00:13
jamielennoxok, and we can't simple source lib/tls in grenade as upgrade_keystone should be able to run independantly right?00:13
dtroyerwhat I'm not sure about (yet) is why KEYSTONE_AUTH_PROTOCOL is empty then rather than containing the default set above00:14
*** CaptTofu has quit IRC00:14
dtroyeradding lib/tls to upgrade-keystone is fine if it is required00:14
*** CaptTofu has joined #openstack-dev00:15
*** vuil has quit IRC00:15
jamielennoxyea, i'm just hoping that once the first one is passed we can do the same thing for the other services, i guess we just need to source lib/tls in each00:15
*** michchap has joined #openstack-dev00:16
*** jd__ has quit IRC00:16
dtroyerwhat is in lib/tls that you need?00:16
jamielennoxthe things that i added to it: https://review.openstack.org/#/c/47076/7/lib/tls00:17
jamielennoxis_ssl_enabled_service and ensure_certificates00:17
dtroyerright, I just saw that ;)00:17
jamielennoxalthough i'm not sure if ensure_certificates is required for grenade...00:18
dtroyerprobably not…is_ssl_enabled_service() is in functions in the current patch set00:18
jamielennoxensure_certificates is only called in configure_keystone - am i right that grenade doesn't call that00:19
dtroyerif you moved it back ti lib/tls we could include that in the upgrade-* scripts as requried and all should be good00:19
dtroyergrenade doesn't currently call configure_* functions, but it once did.00:20
jamielennoxoh, so i must have moved it there so that grenade would source it correctly00:20
jamielennoxbut if is_ssl_enabled is in functions why doesn't grenade find it ?00:20
*** CaptTofu has quit IRC00:20
dtroyerbecause grande has its own copy of functions, it doesn't use devstacks00:20
jamielennoxah00:21
*** CaptTofu has joined #openstack-dev00:21
dtroyerit needs to be somewhat stable, but it is just a copy00:21
jamielennoxso is it better to source lib/tls in every upgrade_ script - or should i just copy is_ssl_enabled into grenade's functions?00:21
dtroyerwe put is_apache_enabled_service() into lib/apache so there is precendent for that, I'm fine with it, especially if you're going to want lib/tls for each service as you enable this.00:22
*** galstrom_zzz is now known as galstrom00:24
*** jasdeepH has quit IRC00:24
*** alop has quit IRC00:24
*** jasdeepH has joined #openstack-dev00:25
jamielennoxi see no reference to apache in grenade but00:25
*** jasdeepH has quit IRC00:25
jamielennoxso i take it that if we configured keystone to use httpd in devstack and then ran a grenade update it would fail00:25
dtroyerno, just that a is_xxx_enabled function doesn't _have_ to go into functions00:25
jamielennoxoh, right - yea i only moved it there as i was trying to get grenade to pick it up00:26
dtroyerif we change the default for keystone to use apache then yes, grenade would fail and need updating, otherwise it should be fine00:26
jamielennoxok so i'll move is_ssl_enabled_service back into lib/tls00:27
*** jd__ has joined #openstack-dev00:28
jamielennoxbut we will require a change in grenade - either a copy of is_ssl_enabled_service in grenade/functions or a source devstack/lib/tls in each of the upgrade_service scripts00:28
*** matsuhashi has joined #openstack-dev00:28
*** rudrarugge has quit IRC00:29
jamielennoxi'm voting for a copy of is_ssl_enabled_service - but i realize that there isn't much weight to that00:29
dtroyersourcing $TARGET_DEVSTACK_DIR/lib/tls is my preference00:29
jamielennoxok, np00:30
dtroyerthat should be able to go into grenade now without issue00:30
jamielennoxi'll put up a patch for grenade soon00:30
dtroyerok...ahead if lib/keystone00:31
*** rkukura has joined #openstack-dev00:31
*** salv-orlando has quit IRC00:32
jamielennoxyep - ok to do the other services preemptively?00:32
dtroyerare there existing plans to do the SSL for them?00:32
*** salv-orlando has joined #openstack-dev00:33
jamielennoxthere is the plan that once this is in for keystone that it should be about 3 lines for each of the other services - that being said i don't know how to configure SSL for most other services  so it might not be soon00:34
jamielennoxi think i can do swift fairly easily00:34
jamielennoxthe others will require some research00:35
dtroyerI'd rather not get too far ahead and have stuff in the scripts that isn't needed, swift and keystone for now?00:35
*** Ruetobas has quit IRC00:35
*** jimfehlig has joined #openstack-dev00:36
jamielennoxin which case i'll just do keystone for now - now i know what the problem is i can always fix up grenade as i have things ready00:36
dtroyerFWIW, I finished looking at the review, nothing jumps out at me right now but I haven't tried to run it yet00:38
*** galstrom is now known as galstrom_zzz00:38
jamielennoxyea, it takes a bit of effort to actually test it as you need to have prebuilt certificates you can use00:39
*** bdpayne has quit IRC00:40
*** Dr_Who has joined #openstack-dev00:40
jamielennoxthe intention is later that if you don't have certificates but you want SSL they will be generated for you - but various people want certificates generated in different ways so i haven't got more than POC of that00:40
jamielennoxdtroyer: thanks for your help00:42
dtroyerFWIW, the CA that lib/tls builds is meant to mimic the kinds of server certs that are in the wild, with intermediate CAs and extension options not usually found in the 'snakeoil'-type self-signed certs.  But yeah, if someone has real certs they want to use, let them...00:43
jamielennoxdtroyer: that was the thought if you have real certs go ahead and use them, fallback to generated00:44
jamielennoxi just added you to the draft review: https://review.openstack.org/#/c/47526/00:44
*** freedomhui has joined #openstack-dev00:44
jamielennoxshows that generating the certs using what's already in lib/tls is pretty easy i'm just not trying to push it through yet00:45
*** nosnos has joined #openstack-dev00:45
dtroyerok, cool00:45
*** terriyu has quit IRC00:46
*** litong has quit IRC00:51
*** dtyarnell has joined #openstack-dev00:52
*** anteaya has quit IRC00:55
*** Tross has quit IRC01:05
*** angdraug has quit IRC01:06
*** SumitNaiksatam has quit IRC01:07
*** mrodden has joined #openstack-dev01:07
*** gyee has quit IRC01:07
*** CaptTofu has quit IRC01:10
*** CaptTofu has joined #openstack-dev01:10
*** Tross has joined #openstack-dev01:14
*** CaptTofu has quit IRC01:15
*** yeylon_ has quit IRC01:16
*** eharney has quit IRC01:17
*** briancurtin has joined #openstack-dev01:22
*** nermina has joined #openstack-dev01:22
*** dperaza has quit IRC01:23
*** dropped has quit IRC01:24
*** yjiang5 has quit IRC01:27
*** erkules has quit IRC01:27
*** comay has quit IRC01:29
*** MaxV has quit IRC01:29
*** MaxV has joined #openstack-dev01:29
*** fandikurnia01 has joined #openstack-dev01:31
*** lbragstad has joined #openstack-dev01:33
*** SumitNaiksatam has joined #openstack-dev01:34
*** MaxV has quit IRC01:34
*** rfolco has quit IRC01:37
*** jhesketh__ has joined #openstack-dev01:39
*** xqueralt has joined #openstack-dev01:40
*** nati_uen_ has joined #openstack-dev01:40
*** jasondot_ has joined #openstack-dev01:40
*** nati_ueno has quit IRC01:42
*** bauzas has quit IRC01:44
*** nati_uen_ has quit IRC01:44
*** erkules has joined #openstack-dev01:45
*** alexpilotti has quit IRC01:48
*** alexpilotti has joined #openstack-dev01:49
*** Tross has quit IRC01:49
*** yaguang has quit IRC01:56
*** alexpilotti has quit IRC01:56
*** xqueralt has quit IRC01:56
*** henrynash has joined #openstack-dev01:57
*** alexpilotti has joined #openstack-dev01:58
*** Mandell has quit IRC02:00
*** jasondot_ has quit IRC02:00
*** colinmcnamara has joined #openstack-dev02:04
*** Dr_Who has quit IRC02:09
*** sandywalsh has quit IRC02:10
*** novas0x2a|laptop has quit IRC02:10
*** jhesketh has quit IRC02:11
*** jhesketh has joined #openstack-dev02:11
*** mrda has quit IRC02:17
*** Ryan_Lane has quit IRC02:18
*** freedomhui has quit IRC02:18
*** edmund has joined #openstack-dev02:24
*** fandikurnia01 has quit IRC02:24
*** melwitt has quit IRC02:30
*** markwash has joined #openstack-dev02:31
*** freedomhui has joined #openstack-dev02:31
*** henrynash has quit IRC02:40
*** giulivo has quit IRC02:44
*** jamielennox is now known as jamielennox|away02:45
*** vipul has quit IRC02:45
*** vipul has joined #openstack-dev02:46
*** sushils has joined #openstack-dev02:48
*** pmathews has joined #openstack-dev02:48
*** Ryan_Lane has joined #openstack-dev02:48
*** Ryan_Lane has quit IRC02:55
*** yaguang has joined #openstack-dev02:56
*** ArcTanSusan has joined #openstack-dev02:58
*** lbragstad has quit IRC02:59
*** Tross has joined #openstack-dev03:06
*** Ruetobas has joined #openstack-dev03:13
*** ArcTanSusan has quit IRC03:14
*** paragan has joined #openstack-dev03:14
*** paragan has joined #openstack-dev03:14
*** CaptTofu has joined #openstack-dev03:15
*** giroro_ has joined #openstack-dev03:16
*** rcleere has joined #openstack-dev03:17
*** Ruetobas has quit IRC03:18
*** fandikurnia01 has joined #openstack-dev03:18
*** ericw has joined #openstack-dev03:18
*** jimfehlig has quit IRC03:22
*** fandikurnia01 has quit IRC03:27
*** nermina has quit IRC03:31
*** ericw has quit IRC03:33
*** sarob has joined #openstack-dev03:35
*** sarob_ has joined #openstack-dev03:36
*** prekarat has joined #openstack-dev03:36
*** ericw has joined #openstack-dev03:37
*** sarob_ has quit IRC03:38
*** sarob_ has joined #openstack-dev03:39
*** sarob has quit IRC03:39
*** prekarat has quit IRC03:41
*** dkranz has joined #openstack-dev03:43
*** Ryan_Lane has joined #openstack-dev03:49
*** danwent has joined #openstack-dev03:50
*** sdake_ has quit IRC03:51
*** ysc has joined #openstack-dev03:51
*** spzala has quit IRC03:52
*** Tross has quit IRC03:53
*** matiu has quit IRC03:53
*** otherwiseguy has joined #openstack-dev03:53
*** achandra has joined #openstack-dev03:54
*** Ryan_Lane has quit IRC03:54
*** prekarat has joined #openstack-dev03:54
achandraHoping someone can provide some assistance here. I just installed devstack and have an issue with the horizon dash board not producing output for  download for the ec2 api credentials.03:55
achandrathe page errors out03:55
achandraany clue if that has been fixed or if im on the right channel to ask?03:56
yscI'm a new contributor, working on my first fix related to the Swift container replicator.  Can somebody help me to understand why we're replicating *and* merge the container db when the row difference is > 50%? I figure just rsync should be sufficient. Thanks!03:57
*** erfanian has quit IRC04:02
*** sridevi has joined #openstack-dev04:05
*** CaptTofu has quit IRC04:06
*** CaptTofu has joined #openstack-dev04:06
*** jhesketh has quit IRC04:09
*** jhesketh__ has quit IRC04:09
*** vuil has joined #openstack-dev04:16
*** briancurtin has quit IRC04:18
*** ArcTanSusan has joined #openstack-dev04:18
*** jhesketh__ has joined #openstack-dev04:22
*** jhesketh has joined #openstack-dev04:22
*** aditirav has joined #openstack-dev04:23
*** colinmcnamara has quit IRC04:23
*** colinmcnamara has joined #openstack-dev04:23
*** colinmcnamara has quit IRC04:28
*** bashok has joined #openstack-dev04:29
*** bashok is now known as djoreilly04:30
*** djoreilly has quit IRC04:30
*** ArcTanSusan has quit IRC04:30
*** kushal has joined #openstack-dev04:31
*** rudra has joined #openstack-dev04:32
*** Tross has joined #openstack-dev04:35
*** aditirav has quit IRC04:36
*** aditirav has joined #openstack-dev04:36
*** aeperezt has quit IRC04:38
*** aditirav has quit IRC04:40
*** aditirav has joined #openstack-dev04:41
*** bashok has joined #openstack-dev04:41
*** sdake_ has joined #openstack-dev04:44
*** sdake_ has quit IRC04:44
*** sdake_ has joined #openstack-dev04:44
*** Mandell has joined #openstack-dev04:44
*** faramir1 has joined #openstack-dev04:47
*** AlexF has joined #openstack-dev04:48
*** Ryan_Lane has joined #openstack-dev04:49
*** ArcTanSusan has joined #openstack-dev04:50
*** ysc has left #openstack-dev04:52
*** sumanthns has joined #openstack-dev04:53
*** Ryan_Lane has quit IRC04:53
*** DennyZhang has joined #openstack-dev04:53
*** aditirav_ has joined #openstack-dev04:55
*** freedomhui has quit IRC04:56
*** aditirav has quit IRC04:57
*** aditirav_ is now known as aditirav04:57
*** Mandell has quit IRC04:59
*** dstufft has quit IRC05:02
*** dstufft has joined #openstack-dev05:03
*** afazekas has joined #openstack-dev05:06
*** Mandell has joined #openstack-dev05:06
*** turul_ has joined #openstack-dev05:06
*** AlexF has quit IRC05:07
*** sarob_ has quit IRC05:08
*** markmc has joined #openstack-dev05:09
*** sarob has joined #openstack-dev05:10
*** yaguang has quit IRC05:11
*** aditirav has quit IRC05:18
*** aditirav has joined #openstack-dev05:18
*** Ryan_Lane has joined #openstack-dev05:20
*** sridevi has quit IRC05:20
*** mdenny has quit IRC05:21
*** rudra has quit IRC05:22
*** Ryan_Lane has quit IRC05:24
*** sridevi has joined #openstack-dev05:25
*** turul_ has quit IRC05:26
*** afazekas has quit IRC05:26
*** afazekas has joined #openstack-dev05:26
*** dstufft has quit IRC05:27
*** stevemar has quit IRC05:28
*** dstufft has joined #openstack-dev05:30
*** DennyZhang has quit IRC05:32
*** yaguang has joined #openstack-dev05:32
*** colinmcnamara has joined #openstack-dev05:34
*** mrunge has joined #openstack-dev05:37
*** mrunge has quit IRC05:37
*** mrunge has joined #openstack-dev05:37
*** colinmcnamara has quit IRC05:39
*** SergeyLukjanov has joined #openstack-dev05:40
*** sridevi has quit IRC05:42
*** nshaikh has joined #openstack-dev05:46
*** vartom19 has joined #openstack-dev05:48
*** yaguang has quit IRC05:49
*** danwent has quit IRC05:50
*** Ryan_Lane has joined #openstack-dev05:50
*** tvb has joined #openstack-dev05:53
*** SergeyLukjanov has quit IRC05:54
*** Ryan_Lane has quit IRC05:55
*** matsuhashi has quit IRC06:01
*** sridevi has joined #openstack-dev06:02
*** matiu has joined #openstack-dev06:03
*** yolanda has joined #openstack-dev06:07
*** eglynn has joined #openstack-dev06:07
*** nosnos has quit IRC06:08
*** metral has quit IRC06:08
*** vartom110 has joined #openstack-dev06:10
*** pmathews has quit IRC06:10
*** vartom19 has quit IRC06:11
*** pmathews has joined #openstack-dev06:11
*** HenryG has quit IRC06:12
*** HenryG has joined #openstack-dev06:12
*** rohitk has quit IRC06:14
*** zaneb has joined #openstack-dev06:16
*** sarob has quit IRC06:17
*** zbitter has quit IRC06:18
*** Ryan_Lane has joined #openstack-dev06:21
*** rushiagr has joined #openstack-dev06:21
*** otherwiseguy has quit IRC06:24
*** matsuhashi has joined #openstack-dev06:24
*** Ryan_Lane has quit IRC06:25
*** rohitk has joined #openstack-dev06:27
*** jcoufal has joined #openstack-dev06:29
*** sushils has quit IRC06:29
*** henrynash has joined #openstack-dev06:30
*** sushils has joined #openstack-dev06:31
*** sarob has joined #openstack-dev06:34
*** mosulica has joined #openstack-dev06:35
*** dcmorton has quit IRC06:35
*** eglynn has quit IRC06:36
*** cfriesen has quit IRC06:36
*** henrynash has quit IRC06:39
*** davidhadas has joined #openstack-dev06:45
*** yeylon_ has joined #openstack-dev06:48
*** mrunge has quit IRC06:49
*** Shaan7 has quit IRC06:49
*** garyk has joined #openstack-dev06:50
*** Ryan_Lane has joined #openstack-dev06:51
*** ifarkas has joined #openstack-dev06:53
*** nosnos has joined #openstack-dev06:54
*** eglynn has joined #openstack-dev06:54
*** mrunge has joined #openstack-dev06:55
*** Ryan_Lane has quit IRC06:55
*** jprovazn has joined #openstack-dev06:56
*** faramir1 has quit IRC06:58
*** Shaan7 has joined #openstack-dev06:58
*** shardy_afk is now known as shardy06:59
*** odyssey4me has joined #openstack-dev07:03
*** amerine has quit IRC07:11
*** AlexF has joined #openstack-dev07:17
*** rushiagr has quit IRC07:18
*** dcmorton has joined #openstack-dev07:19
*** fbo_away is now known as fbo07:19
*** Ryan_Lane has joined #openstack-dev07:22
*** MaxV has joined #openstack-dev07:24
*** metral has joined #openstack-dev07:25
*** AlexF has quit IRC07:26
*** Ryan_Lane has quit IRC07:27
*** markmc has quit IRC07:27
*** jistr has joined #openstack-dev07:28
*** rushiagr has joined #openstack-dev07:29
*** vuil has quit IRC07:33
*** mmagr has joined #openstack-dev07:33
*** jtomasek has joined #openstack-dev07:34
*** pmathews has quit IRC07:36
*** rushiagr has quit IRC07:39
*** vartom110 has quit IRC07:48
*** vartom110 has joined #openstack-dev07:51
*** o_petit has joined #openstack-dev07:52
*** Ryan_Lane has joined #openstack-dev07:52
*** JordanP has joined #openstack-dev07:54
*** xga has joined #openstack-dev07:55
*** markwash has quit IRC07:56
*** egallen has joined #openstack-dev07:56
*** Ryan_Lane has quit IRC07:57
*** flaper87|afk is now known as flaper8707:58
*** sushils has quit IRC07:59
*** rushiagr has joined #openstack-dev08:02
*** boden has joined #openstack-dev08:03
*** rohitk has quit IRC08:03
*** jpich has joined #openstack-dev08:06
*** kevinconway has quit IRC08:07
*** kevinconway has joined #openstack-dev08:07
*** kevinconway has quit IRC08:08
*** giulivo has joined #openstack-dev08:09
*** corXi has joined #openstack-dev08:09
*** athomas has joined #openstack-dev08:09
ekarlsoany keystone folks around ?08:09
*** markwash has joined #openstack-dev08:10
*** bashok has quit IRC08:11
*** bashok has joined #openstack-dev08:11
*** enikanorov-w has quit IRC08:12
*** enikanorov-w has joined #openstack-dev08:13
*** yassine has joined #openstack-dev08:15
*** o_petit has quit IRC08:15
*** Mandell has quit IRC08:15
*** Mandell has joined #openstack-dev08:16
*** fandikurnia01 has joined #openstack-dev08:16
*** rohitk has joined #openstack-dev08:18
*** o_petit has joined #openstack-dev08:19
*** derekh has joined #openstack-dev08:20
*** Mandell has quit IRC08:20
*** Ryan_Lane has joined #openstack-dev08:23
*** lucasagomes has joined #openstack-dev08:24
*** faramir1 has joined #openstack-dev08:26
*** Ryan_Lane has quit IRC08:27
*** ndipanov has joined #openstack-dev08:30
*** neeti has joined #openstack-dev08:36
*** amerine has joined #openstack-dev08:36
*** freedomhui has joined #openstack-dev08:41
*** comstud has quit IRC08:50
*** comstud has joined #openstack-dev08:50
*** jhesketh__ has quit IRC08:52
*** Ryan_Lane has joined #openstack-dev08:53
*** amotoki has joined #openstack-dev08:53
*** romcheg has joined #openstack-dev08:55
*** ygbo has joined #openstack-dev08:56
*** Ryan_Lane has quit IRC08:57
*** xqueralt has joined #openstack-dev08:58
*** romcheg has quit IRC08:58
*** flaper87 is now known as flaper87|afk09:00
*** kaushikc has joined #openstack-dev09:01
*** michchap has quit IRC09:02
*** michchap_ has joined #openstack-dev09:02
*** matrohon has quit IRC09:02
*** vartom110 has quit IRC09:03
*** vartom111 has joined #openstack-dev09:04
*** flaper87|afk is now known as flaper8709:05
ekarlsos/wn 3509:07
ttxcinder rc1 on its way, if my cell data behaves a bit09:09
*** ArcTanSusan has quit IRC09:11
*** martyntaylor has joined #openstack-dev09:13
*** mkollaro has joined #openstack-dev09:13
*** sarob has quit IRC09:14
*** ron-slc has quit IRC09:14
*** rushiagr has quit IRC09:15
*** rushiagr has joined #openstack-dev09:16
*** zhiyan has joined #openstack-dev09:16
*** ema has joined #openstack-dev09:16
*** ema has joined #openstack-dev09:16
*** kevinconway has joined #openstack-dev09:17
*** rohitk has quit IRC09:17
*** amotoki has quit IRC09:19
*** noorul has quit IRC09:20
*** noorul has joined #openstack-dev09:20
*** SergeyLukjanov has joined #openstack-dev09:20
*** romcheg has joined #openstack-dev09:21
*** mrunge has quit IRC09:22
*** Nikolay_St has quit IRC09:22
*** Ryan_Lane has joined #openstack-dev09:23
ekarlsottx: is there a keystone rc ?09:24
ttxyes, since wednesday09:25
ttxall done except swift09:25
ekarlsokk09:25
*** fbo is now known as fbo_away09:26
*** kaushikc has quit IRC09:26
*** Ryan_Lane has quit IRC09:27
*** mrunge has joined #openstack-dev09:29
*** rohitk has joined #openstack-dev09:29
ekarlsohmmms, i wonder if keystone and ldap really do despise me :(09:30
*** rushiagr has quit IRC09:35
*** egallen has quit IRC09:35
*** xga has quit IRC09:37
*** rohitk has quit IRC09:37
*** rushiagr has joined #openstack-dev09:38
*** xga has joined #openstack-dev09:40
*** safchain has joined #openstack-dev09:40
*** kaushikc has joined #openstack-dev09:40
*** aditirav has quit IRC09:43
*** egallen has joined #openstack-dev09:45
*** xqueralt has quit IRC09:46
*** boris-42 has joined #openstack-dev09:48
*** AnilV4 has quit IRC09:50
*** davidhadas has quit IRC09:50
*** aditirav has joined #openstack-dev09:51
*** rohitk has joined #openstack-dev09:52
*** tvb has quit IRC09:52
*** tvb has joined #openstack-dev09:53
*** Ryan_Lane has joined #openstack-dev09:54
*** kaushikc has quit IRC09:56
*** aditirav has quit IRC09:57
*** aditirav has joined #openstack-dev09:57
*** Ryan_Lane has quit IRC09:58
*** jhesketh__ has joined #openstack-dev10:01
*** athomas has quit IRC10:03
*** markmcclain1 has joined #openstack-dev10:04
*** markmcclain has quit IRC10:04
*** zhiyan has quit IRC10:05
*** exed has joined #openstack-dev10:05
*** exed has quit IRC10:07
*** AnilV4 has joined #openstack-dev10:07
*** gmurphy has quit IRC10:08
*** exed has joined #openstack-dev10:09
*** ron-slc has joined #openstack-dev10:09
*** xga has quit IRC10:10
*** fbo_away is now known as fbo10:10
*** jimjiang has quit IRC10:13
*** xga has joined #openstack-dev10:13
*** jimjiang has joined #openstack-dev10:13
*** Tross has quit IRC10:13
*** Tross has joined #openstack-dev10:14
*** xqueralt has joined #openstack-dev10:16
*** SergeyLukjanov has quit IRC10:18
*** SergeyLukjanov has joined #openstack-dev10:19
*** martyntaylor has quit IRC10:19
*** Kiall has quit IRC10:20
*** kiall has joined #openstack-dev10:23
*** safchain has quit IRC10:24
*** prekarat has quit IRC10:24
*** Ryan_Lane has joined #openstack-dev10:24
*** paragan has quit IRC10:27
*** matsuhashi has quit IRC10:28
*** fandikurnia01 has quit IRC10:28
*** Ryan_Lane has quit IRC10:29
*** bashok has quit IRC10:30
*** fandikurnia01 has joined #openstack-dev10:30
*** bashok has joined #openstack-dev10:30
*** iartarisi has joined #openstack-dev10:33
*** martyntaylor has joined #openstack-dev10:33
*** pcm_ has joined #openstack-dev10:33
*** danpb has joined #openstack-dev10:34
*** fandikurnia01 has quit IRC10:34
*** pcm_ has quit IRC10:35
*** pcm_ has joined #openstack-dev10:36
*** pixelb has joined #openstack-dev10:36
*** athomas has joined #openstack-dev10:44
*** markmc has joined #openstack-dev10:46
*** bashok has quit IRC10:48
*** bashok has joined #openstack-dev10:48
*** openstackstatus has quit IRC10:51
*** skraynev has quit IRC10:52
*** AlexF has joined #openstack-dev10:52
*** skraynev has joined #openstack-dev10:52
*** jpich has quit IRC10:53
*** davidhadas has joined #openstack-dev10:55
*** fandikurnia01 has joined #openstack-dev10:55
*** Ryan_Lane has joined #openstack-dev10:55
*** rushiagr has quit IRC10:57
*** davidhadas has quit IRC10:57
*** Ryan_Lane has quit IRC10:59
*** rohitk has quit IRC10:59
*** sushils has joined #openstack-dev11:00
*** exed has quit IRC11:01
*** tellesnobrega has joined #openstack-dev11:03
*** jcoufal has quit IRC11:04
*** rushiagr has joined #openstack-dev11:06
*** jpich has joined #openstack-dev11:06
*** AnilV4 has quit IRC11:09
*** Alexei_987 has joined #openstack-dev11:09
*** nimi has quit IRC11:11
*** kaushikc has joined #openstack-dev11:12
*** rohitk has joined #openstack-dev11:12
*** AnilV4 has joined #openstack-dev11:15
*** flaper87 is now known as flaper87|afk11:15
*** claxton has joined #openstack-dev11:19
*** nimi has joined #openstack-dev11:20
*** nermina has joined #openstack-dev11:22
*** kushal has quit IRC11:25
*** kushal has joined #openstack-dev11:25
*** Ryan_Lane has joined #openstack-dev11:26
*** Ryan_Lane has quit IRC11:30
*** nosnos has quit IRC11:32
*** CaptTofu has quit IRC11:33
*** CaptTofu has joined #openstack-dev11:34
*** zul has quit IRC11:39
*** zul has joined #openstack-dev11:43
*** claxton has quit IRC11:48
*** jprovazn has quit IRC11:48
*** ifarkas has quit IRC11:48
*** kushal has quit IRC11:49
*** claxton has joined #openstack-dev11:50
*** flaper87|afk is now known as flaper8711:51
*** aditirav has quit IRC11:51
*** kbringard has joined #openstack-dev11:52
*** aditirav has joined #openstack-dev11:52
*** safchain has joined #openstack-dev11:52
*** ifarkas has joined #openstack-dev11:52
*** rcleere has quit IRC11:53
*** neeti has quit IRC11:54
*** rcleere has joined #openstack-dev11:54
*** rcleere has quit IRC11:54
*** rcleere has joined #openstack-dev11:54
*** imsurit has joined #openstack-dev11:54
*** rohitk has quit IRC11:56
*** Ryan_Lane has joined #openstack-dev11:56
*** rcleere has quit IRC11:57
*** vkmc has joined #openstack-dev11:59
*** vkmc has quit IRC11:59
*** vkmc has joined #openstack-dev11:59
tellesnobregahi, i was solving the bug https://bugs.launchpad.net/keystone/+bug/1220913 and dolpm suggested that i devided into steps11:59
uvirtbotLaunchpad bug 1220913 in keystone "bp split-identity left unfinished" [Wishlist,In progress]11:59
*** rushiagr has quit IRC12:00
tellesnobregathe first step im done, and this is all i will be able to do for now, because i have to work on other bugs12:00
*** Ryan_Lane has quit IRC12:00
tellesnobregai talked to ayoung yesterday and he said that this was enough since lyncos is working on a feature that will need to work some changes that i was gonna do12:01
tellesnobregahow can i act now? can i commit my code already as it is? how should i report the progress on the bug?12:01
*** afazekas has quit IRC12:01
*** AlexF has quit IRC12:01
*** claxton has quit IRC12:08
*** jruzicka has joined #openstack-dev12:09
*** rushiagr has joined #openstack-dev12:09
*** jprovazn has joined #openstack-dev12:12
MaxVDoes someone know a project where I can see a basic usage of openstack.common.notifier and especially the use of notify_decorator?12:12
*** morazi has quit IRC12:14
*** neeti has joined #openstack-dev12:14
*** neeti has quit IRC12:14
*** afazekas has joined #openstack-dev12:14
*** neeti has joined #openstack-dev12:15
*** gimps_ has joined #openstack-dev12:16
*** ifarkas has quit IRC12:17
*** dprince has joined #openstack-dev12:17
*** fandikurnia01 has quit IRC12:18
*** AlexF has joined #openstack-dev12:20
*** ifarkas has joined #openstack-dev12:20
*** johnthetubaguy has joined #openstack-dev12:20
*** kaushikc has quit IRC12:21
*** exed has joined #openstack-dev12:22
*** CaptTofu has quit IRC12:24
*** anniec has joined #openstack-dev12:24
*** CaptTofu has joined #openstack-dev12:24
*** rfolco has joined #openstack-dev12:25
*** faramir1 has quit IRC12:26
*** Ryan_Lane has joined #openstack-dev12:26
*** romcheg has left #openstack-dev12:29
*** nermina has joined #openstack-dev12:29
*** Ryan_Lane has quit IRC12:31
*** thomasm has joined #openstack-dev12:36
*** aditirav_ has joined #openstack-dev12:37
*** lucasagomes is now known as lucas-afk12:38
*** aditirav has quit IRC12:40
*** aditirav_ is now known as aditirav12:40
*** eglynn has quit IRC12:40
*** vladikr has joined #openstack-dev12:40
*** sridevi has quit IRC12:42
*** eglynn has joined #openstack-dev12:42
*** exed has quit IRC12:43
*** neeti has quit IRC12:45
*** jhesketh__ has quit IRC12:46
*** dtyarnell has quit IRC12:46
*** nermina has quit IRC12:47
*** SergeyLukjanov has quit IRC12:48
*** exed has joined #openstack-dev12:50
*** dstanek has joined #openstack-dev12:50
*** bpokorny has joined #openstack-dev12:50
*** vartom111 has quit IRC12:50
*** michchap_ has quit IRC12:51
*** ifarkas has quit IRC12:53
*** michchap has joined #openstack-dev12:54
*** aditirav has quit IRC12:56
*** Ryan_Lane has joined #openstack-dev12:57
*** Ryan_Lane has quit IRC12:57
*** Ryan_Lane has joined #openstack-dev12:57
*** flaper87 is now known as flaper87|afk12:58
*** paragan has joined #openstack-dev12:58
*** lbragstad has joined #openstack-dev13:00
*** romcheg has joined #openstack-dev13:01
*** Ryan_Lane has quit IRC13:01
*** eglynn has quit IRC13:03
*** imsurit has quit IRC13:03
aspiersis there a way to "watch" a particular gerrit review, i.e. get automatic notifications when it's updated?13:05
aspiersI can only see https://review.openstack.org/#/settings/projects13:06
*** exed has quit IRC13:06
*** ifarkas has joined #openstack-dev13:06
*** ifarkas has quit IRC13:07
*** herndon_ has joined #openstack-dev13:07
*** nermina has joined #openstack-dev13:10
*** ifarkas has joined #openstack-dev13:10
*** SergeyLukjanov has joined #openstack-dev13:10
*** AlexF has quit IRC13:11
*** jayg|g0n3 is now known as jayg13:12
*** adalbas has joined #openstack-dev13:14
*** phschwartz_aw is now known as phschwartz13:14
*** cfriesen has joined #openstack-dev13:15
jpichaspiers: You could add yourself as a reviewer13:15
aspiersjpich: I only want to get notifications for changes I'm involved with or star. But I just noticed that I already get emails for those - it turns out I had a rule which I'd totally forgotten about which filters them into a separate mail folder :)13:16
jpichaspiers: All is well :)13:17
*** pbarquero has joined #openstack-dev13:18
*** gordc has joined #openstack-dev13:19
*** o_petit has quit IRC13:19
ekarlsoBobBall: here?13:20
*** sthaha has quit IRC13:21
*** sthaha has joined #openstack-dev13:21
*** sthaha has quit IRC13:21
*** sthaha has joined #openstack-dev13:21
*** dtyarnell has joined #openstack-dev13:22
*** Shaan7 has quit IRC13:23
*** schwicht has quit IRC13:23
*** flaper87|afk is now known as flaper8713:24
*** Shaan7 has joined #openstack-dev13:25
*** llu_away has quit IRC13:25
*** llu_away has joined #openstack-dev13:26
*** sthaha has quit IRC13:27
*** Ryan_Lane has joined #openstack-dev13:28
BobBallI am indeed13:29
*** epim has joined #openstack-dev13:30
*** eglynn has joined #openstack-dev13:31
*** Ryan_Lane has quit IRC13:32
*** prekarat has joined #openstack-dev13:36
ekarlsoBobBall: what management tools are there for xenserver ?13:36
*** exed has joined #openstack-dev13:37
BobBallYou mean like XenCenter or XVP?13:37
*** prekarat has quit IRC13:37
BobBallThere's also OpenXenManager13:38
BobBallOr you can use Microsoft's SCVMM ;)13:38
*** grapsus_ has quit IRC13:39
BobBallIt depends what you mean by management tool...13:39
BobBallOpenStack does a pretty good job of managing VMs on XenServer ;)13:39
*** prekarat has joined #openstack-dev13:39
*** topol has joined #openstack-dev13:40
*** burt has joined #openstack-dev13:41
*** dvarga has joined #openstack-dev13:41
*** bashok has quit IRC13:41
*** Guest7950 is now known as oubiwann-lambda13:41
*** oubiwann-lambda is now known as oubiwann-hehe13:43
*** oubiwann-hehe is now known as oubiwann-lambda13:44
*** venkatesh has joined #openstack-dev13:44
*** dperaza has joined #openstack-dev13:44
*** neelashah has joined #openstack-dev13:47
*** kushal has joined #openstack-dev13:48
ekarlsoDaviey: have you guys rolled RC1 packages yet ?13:49
*** prad has joined #openstack-dev13:49
*** jcoufal has joined #openstack-dev13:49
*** thedodd has joined #openstack-dev13:50
*** lucas-afk is now known as lucasagomes13:52
*** briancurtin has joined #openstack-dev13:52
*** alunduil has quit IRC13:54
*** sumanthns has quit IRC13:55
*** jbryce has joined #openstack-dev13:55
*** vladikr has quit IRC13:56
*** sandywalsh has joined #openstack-dev13:56
*** jimfehlig has joined #openstack-dev13:57
*** dstanek has quit IRC13:58
*** Ryan_Lane has joined #openstack-dev13:58
*** grapsus_ has joined #openstack-dev14:00
*** Ryan_Lane has quit IRC14:02
*** herndon_ has quit IRC14:02
*** changbl has quit IRC14:02
*** dstanek has joined #openstack-dev14:05
*** prekarat has quit IRC14:05
*** boden has quit IRC14:07
*** morazi has joined #openstack-dev14:07
*** boden has joined #openstack-dev14:08
*** beagles is now known as seagulls14:08
*** xga_ has joined #openstack-dev14:08
*** boden has quit IRC14:09
*** boden has joined #openstack-dev14:09
*** xga has quit IRC14:10
*** russellb is now known as rustlebee14:11
*** arezmerita has quit IRC14:11
*** anteaya has joined #openstack-dev14:11
*** o_petit has joined #openstack-dev14:13
*** rnirmal has joined #openstack-dev14:14
HenryGsalv-orlando: ping?14:16
Davieyzul: How is RC1 looking?14:16
zulDaviey:  getting there14:17
*** bswartz has quit IRC14:17
*** jecarey has joined #openstack-dev14:17
*** dtyarnell has quit IRC14:19
*** jmontemayor has joined #openstack-dev14:19
*** radez has joined #openstack-dev14:19
*** FunnyLookinHat has joined #openstack-dev14:20
*** ema has quit IRC14:20
mordredit's Daviey !14:22
Davieymordred: hello!14:23
mordredDaviey: how's tricks?14:23
*** ifarkas has quit IRC14:23
Davieymordred: I cannot complain!14:24
*** epim has quit IRC14:24
Davieyzul: Are tere any RC1 packages ready yet?14:24
*** nshaikh has left #openstack-dev14:25
*** nshaikh has quit IRC14:25
zulDaviey:  for saucy or precise14:25
zul?14:26
zulfor saucy most of then should already be in the archive, still working on precise14:26
*** ifarkas has joined #openstack-dev14:26
*** johnthetubaguy1 has joined #openstack-dev14:28
Davieyekarlso: ^14:28
ekarlsocoolio !14:28
*** johnthetubaguy has quit IRC14:29
*** Ryan_Lane has joined #openstack-dev14:29
*** flaper87 is now known as flaper87|afk14:30
*** otherwiseguy has joined #openstack-dev14:30
*** boden has quit IRC14:32
*** CaptTofu has quit IRC14:32
*** Mandell has joined #openstack-dev14:32
*** boden has joined #openstack-dev14:33
*** CaptTofu has joined #openstack-dev14:33
*** Ryan_Lane has quit IRC14:33
*** herndon has joined #openstack-dev14:34
*** jcoufal has quit IRC14:35
*** jistr has quit IRC14:35
*** jistr has joined #openstack-dev14:36
*** grapsus_ has quit IRC14:36
*** flaper87|afk is now known as flaper8714:36
*** ifarkas has quit IRC14:37
*** edmund has quit IRC14:38
*** galstrom_zzz is now known as galstrom14:39
*** mdenny has joined #openstack-dev14:39
*** ifarkas has joined #openstack-dev14:40
*** johnthetubaguy1 is now known as johnthetubaguy14:41
*** gordc has quit IRC14:42
*** dvarga has quit IRC14:43
*** grapsus_ has joined #openstack-dev14:43
*** gimps_ has quit IRC14:45
*** dvarga has joined #openstack-dev14:45
*** iartarisi has quit IRC14:46
*** afazekas is now known as afazekas_zz14:47
*** datsun180b has joined #openstack-dev14:47
*** CaptTofu has quit IRC14:48
*** CaptTofu has joined #openstack-dev14:49
*** Shaan7 has quit IRC14:49
*** bswartz has joined #openstack-dev14:49
*** o_petit has quit IRC14:52
*** mmagr has quit IRC14:55
*** tvb has quit IRC14:55
*** o_petit has joined #openstack-dev14:56
*** noslzzp has joined #openstack-dev14:56
*** o_petit has quit IRC14:57
*** athomas has quit IRC14:57
*** aeperezt has joined #openstack-dev14:59
*** Ryan_Lane has joined #openstack-dev14:59
*** xga has joined #openstack-dev15:00
*** xga_ has quit IRC15:01
*** arezmerita has joined #openstack-dev15:01
*** shinylasers has joined #openstack-dev15:02
*** Ryan_Lane has quit IRC15:04
*** mlavalle has joined #openstack-dev15:06
*** gordc has joined #openstack-dev15:06
*** carl_baldwin has joined #openstack-dev15:07
*** paragan has quit IRC15:07
*** dtyarnell has joined #openstack-dev15:08
*** dolphm has joined #openstack-dev15:08
*** jlabocki has joined #openstack-dev15:10
*** mosulica has quit IRC15:10
*** markmcclain1 has quit IRC15:11
*** markmcclain has joined #openstack-dev15:11
*** ifarkas has quit IRC15:11
*** mrodden has quit IRC15:12
*** pmathews has joined #openstack-dev15:15
*** yolanda has quit IRC15:15
*** troytoman-away is now known as troytoman15:17
*** edmund has joined #openstack-dev15:17
*** jlabocki has left #openstack-dev15:21
*** bnemec is now known as beekneemech15:22
*** mkerrin has quit IRC15:22
SpamapSmarkmc: Around? I was wondering about oslo-incubator's strutils .. wondering if we shouldn't just aim at releasing it as a library.15:23
SpamapSmarkmc: it hasn't been touched since June...15:23
SpamapSmarkmc: seems like it has stabilized.15:23
SpamapSmarkmc: and that would make the BytesOpt type much simpler.. as it could just import oslo.strutils and use to_bytes from that rather than copy/paste in.15:24
*** clayb has joined #openstack-dev15:24
*** aloga has quit IRC15:25
*** dprince has quit IRC15:27
*** ayoung_ has joined #openstack-dev15:27
*** ayoung_ is now known as ayoung15:28
*** jvrbanac has joined #openstack-dev15:29
ayoungdolphm, do you have a guide to the format for an API doc?  There has been a lot of guessing and churn in reviewing those, and coming up with a standard would greatly streamline the work for Icehouse15:29
*** changbl has joined #openstack-dev15:30
*** Shaan7 has joined #openstack-dev15:30
*** Ryan_Lane has joined #openstack-dev15:30
dolphmayoung: just follow the prevailing format and maintain consistency? it's basic markdown... i don't care if someone wants to restyle the whole thing, as long as it's consistently done15:30
dolphmayoung: which review?15:31
*** markwash has quit IRC15:31
*** alunduil has joined #openstack-dev15:31
*** safchain has quit IRC15:31
dolphmayoung: i'd also recommend forking the repo on github, so you can see the results with github's own markdown rendering / stylesheets15:32
dolphmayoung: or doing it in a gist15:33
*** mriedem has joined #openstack-dev15:33
* SpamapS wonders how hard it would be to add markdown/rst rendering to cgit15:34
*** colinmcnamara has joined #openstack-dev15:34
dolphmSpamapS: i haven't seen an external tool that matches github's rendering perfectly15:34
*** xga_ has joined #openstack-dev15:34
*** Shaan7 has quit IRC15:34
*** lsmola has quit IRC15:34
*** xga has quit IRC15:34
SpamapSdolphm: no I wouldn't expect that. But "something" would be better than "works unless github is down"15:35
*** pbarquero has quit IRC15:35
dolphmSpamapS: agree15:35
SpamapSThough I actually prefer having real sphinx docs published on docs.openstack.org15:35
dolphmSpamapS: i can't imagine it should be that hard... it seems like the markdown -> html is the finicky part15:35
*** danwent has joined #openstack-dev15:35
*** venkatesh has quit IRC15:35
*** pbarquero has joined #openstack-dev15:36
ayoungdolphm, I was working on the KDS review.  But I think the exisitng approach is good, just sometimes if feels a little hard to figure what belongs where15:36
SpamapSdolphm: there are several good markdown renderers. The problem is the best ones are in ruby. :(15:36
dolphmayoung: oh you mean in terms of content organization?15:36
ayoungdolphm, it is not necessarily a format issue, although the fork recommendation is a good one15:36
ayoungdolphm, yes15:36
*** noorul` has joined #openstack-dev15:36
dolphmayoung: i can address that, i think15:37
*** Shaan7 has joined #openstack-dev15:37
ayoungdolphm, that would be very valuable.  Thanks15:37
*** Ryan_Lane has quit IRC15:37
*** yjiang5 has joined #openstack-dev15:38
*** Mandell has quit IRC15:39
*** flaper87 is now known as flaper87|afk15:39
mriedemdripton: boris-42: mikal: i'm reading through this mailing list trying to figure out who the core team is for sqlalchemy-migrate, was that settled?15:40
mriedemhttp://www.mail-archive.com/openstack-dev@lists.openstack.org/msg01308.html15:40
*** noorul has quit IRC15:40
mriedempixelb: ^15:40
*** corXi has quit IRC15:41
*** tanisdl has joined #openstack-dev15:41
*** yassine has quit IRC15:41
*** AlexF has joined #openstack-dev15:41
pixelbmriedem, I'm not on core team (but would be fine with that since I'm sending patches)15:41
*** dubsquared has joined #openstack-dev15:41
mriedempixelb: i've got patches to push up for db2 so was just wondering, it doesn't really matter i guess who's core15:43
*** krtaylor has quit IRC15:43
pixelbmriedem, Yep it's just handled as a standard project15:43
mriedempixelb: this is pretty great, jan basically couldn't accept the db2 patch we sent him awhile back because he didn't have the resources to handle it15:44
mriedemglad i remembered that mailing list thread15:44
pixelbyep we've pypi keys now etc, so can release 0.7.3 when ready15:44
*** noorul`` has joined #openstack-dev15:45
*** noorul` has quit IRC15:48
*** markwash has joined #openstack-dev15:51
mriedempixelb: mordred: do you know if sqlalchemy-migrate requires blueprints for new support (like db2)?15:52
*** cjellick has joined #openstack-dev15:52
*** rcleere has joined #openstack-dev15:52
ayoungmriedem, it can never hurt to document a major feature like that15:52
pixelbmriedem, Docs never hurt anyone :)15:53
mriedemyeah, was just wondering what the norm has been, i see it's out in launchpad though so i can work one up and tie our nova/keystone/glance/cinder blueprints for db2 to it as a dependency15:54
mordredmriedem: I do not believe it does, no15:54
mordredmriedem: but I also agree with ayoung and pixelb15:54
mriedemlooks like i'd have the first one, i feel so special :) https://blueprints.launchpad.net/sqlalchemy-migrate15:55
*** mkollaro has quit IRC15:57
ayoungmriedem, SQL-A migrations have been under the radar for a long time.  Instead of thinking "what is the minimum necessary" look at it as a growing project in need of coming up to the same standards as the rest of Open Stack and lead the way.  We'll all thank you for it.15:58
ekarlsoayoung: care to take a look at a bug ?15:59
ayoungmriedem, I've been starting to use the "tasks" part of the blueprint page, and found it is really useful in organizing thoughts, especially for larger features15:59
ayoungekarlso, haveto make a lunch pickuup, but I'll look when I get baclk.  Link?15:59
mriedemayoung: ok15:59
ekarlsoayoung: https://bugs.launchpad.net/keystone/+bug/121014116:00
uvirtbotLaunchpad bug 1210141 in keystone "Document howto config LDAP identity with non-DN based ids." [Low,In progress]16:00
ekarlsoi'm having a problem with sAMAccountName not getting picked up16:00
ayoungekarlso, ooh...nice one16:00
*** giroro_ has quit IRC16:01
ekarlsohow come ?16:02
*** gordc has quit IRC16:02
*** gordc has joined #openstack-dev16:03
beekneemechSpamapS: This might also be of interest to you: https://review.openstack.org/#/c/44652/16:03
*** Ruetobas has joined #openstack-dev16:03
lyncostellesnobrega: what feature  I'm supposed to do ?16:03
*** martyntaylor has quit IRC16:03
lyncosI think I missed something16:03
*** yjiang5 has quit IRC16:04
*** Ryan_Lane has joined #openstack-dev16:05
dtyarnelljust want to say how very nice the new assignment/read-only ldap support is16:05
*** yeylon_ has quit IRC16:06
radixayoung: there's a nice little greasemonkey script that makes manging the task list a LOT nicer... lemme see if I can find it16:06
*** Ruetobas has quit IRC16:07
*** e0ne has joined #openstack-dev16:08
radixI should say "userscript", not greasemonkey, since I don't think greasemonkey is actually required16:08
radixhttp://bazaar.launchpad.net/~gm-dev-launchpad/launchpad-gm-scripts/master/view/head:/lp_work_item_editor.user.js16:08
*** derekh has quit IRC16:09
*** martyntaylor has joined #openstack-dev16:09
*** Ryan_Lane has quit IRC16:09
*** martyntaylor has left #openstack-dev16:09
ekarlsoayoung: got a clue on it ?16:09
ekarlsoit's annoying :p16:09
*** xga_ has quit IRC16:10
*** Ryan_Lane has joined #openstack-dev16:14
*** markmc has quit IRC16:14
*** dims has quit IRC16:15
*** Ruetobas has joined #openstack-dev16:15
*** nermina has quit IRC16:15
SpamapSbeekneemech: thanks16:16
SpamapSwow launchpad failed miserably to find those bugs16:16
SpamapSyou would think a search for 'strutils' would turn those up.16:16
*** xga has joined #openstack-dev16:17
*** jistr has quit IRC16:19
*** herndon has quit IRC16:19
*** markwash has quit IRC16:20
*** SergeyLukjanov has quit IRC16:23
*** krtaylor has joined #openstack-dev16:23
*** jmontemayor has quit IRC16:23
*** mlavalle has quit IRC16:23
*** mlavalle has joined #openstack-dev16:23
*** jmontemayor has joined #openstack-dev16:23
*** angdraug has joined #openstack-dev16:24
*** romcheg has left #openstack-dev16:25
*** alop has joined #openstack-dev16:25
*** dims has joined #openstack-dev16:28
*** fbo is now known as fbo_away16:28
*** xga has quit IRC16:29
*** xqueralt has quit IRC16:29
*** alop has quit IRC16:30
dhellmanndolphm: ping?16:30
*** alop has joined #openstack-dev16:30
dhellmannare there any keystone cores around?16:31
*** anniec has quit IRC16:32
*** ygbo has quit IRC16:32
*** AlexF has quit IRC16:33
*** jruzicka has quit IRC16:33
ayoungradix, that would be great.  Ping me if you find it.  Ideally, we would link a review not just to a blueprint but to the individual task16:35
ayoungekarlso, looking now16:35
radixayoung: I pasted it, sorry, didn't ping your name: http://bazaar.launchpad.net/~gm-dev-launchpad/launchpad-gm-scripts/master/view/head:/lp_work_item_editor.user.js16:35
*** tvb has joined #openstack-dev16:35
ayoungekarlso, did you see Brian's comment?  Your suffix has an extra = in it?16:36
*** flaper87|afk is now known as flaper8716:37
*** feleouet has quit IRC16:37
*** venkatesh has joined #openstack-dev16:38
ayoungradix, how is that used?  Is it something we need to deploy on our Blueprints server, or host elsewhere?16:38
*** venkatesh has quit IRC16:38
*** Ryan_Lane has quit IRC16:40
*** dprince has joined #openstack-dev16:41
*** BobBall is now known as BobBall_Awol16:42
radixayoung: no, it's a "user script" that you install in your browser. once installed, it automatically works when you visit a blueprint page16:44
radixayoung: it's pretty hacky, it just gives a nicer table-based UI onto the big work item text area16:44
tellesnobregalyncos: i might have understood wrongly, but ayoung was talking yesterday about some new feature, im not sure if its you or someone else16:44
tellesnobregaits about the LDAP with different servers16:45
tellesnobregato get the user by domain16:45
*** thedodd has quit IRC16:45
*** thedodd has joined #openstack-dev16:46
*** jpich has quit IRC16:46
*** ben_duyujie has joined #openstack-dev16:47
*** jog0 is now known as flashgordon16:48
*** kbringard has quit IRC16:49
*** yjiang5 has joined #openstack-dev16:49
*** SumitNaiksatam has quit IRC16:49
*** romcheg has joined #openstack-dev16:49
*** kushal has quit IRC16:50
*** e0ne has quit IRC16:54
dolphmdhellmann: o/16:55
dolphmayoung: https://review.openstack.org/#/c/49791/16:55
dhellmanndolphm: I'm updating an internal plugin we have to work with the latest keystone, and so started looking at using abc for drivers. Before I went too far with it, I wanted to make sure there hadn't been a conscious decision to avoid using abc in the past.16:56
ayoungtellesnobrega, it was with lyncos yes.  the issue is with figuring out domain for a given userid16:56
*** comay has joined #openstack-dev16:56
tellesnobregathats it16:56
dhellmanndolphm: https://review.openstack.org/#/c/49789/16:56
tellesnobregahow should i proceed with my code, can i submit for review?16:56
*** prekarat has joined #openstack-dev16:57
*** prekarat has quit IRC16:57
dolphmdhellmann: quite the opposite16:57
dolphmdhellmann: we've pretty much agreed to use abc during icehouse16:57
*** pcm_ has quit IRC16:58
dolphmdhellmann: i swear there was a bp already filed...16:58
dolphmdhellmann: https://blueprints.launchpad.net/keystone/+spec/abstract-base-class-drivers16:58
* dhellmann should have looked at blueprints16:59
dhellmannI'll update my changeset to refer to that one16:59
dolphmdhellmann: thanks! much appreciated16:59
*** spzala has joined #openstack-dev16:59
ayoungdolphm, is there anyway to view the changes from https://review.openstack.org/ in the browser?16:59
*** nermina has joined #openstack-dev17:00
ayoungthen again, I guess that would not be github formatted17:00
dolphmdhellmann: i believe morganfainberg was interested in this as well, so you might poke him when he returns in the next week or two17:00
dhellmanndolphm: ok, I'll do that17:00
dolphmayoung: not sure what you're asking?17:01
*** pcm_ has joined #openstack-dev17:01
dolphmayoung: as opposed to git-review --list or something?17:02
*** kbrierly has joined #openstack-dev17:02
*** pcm_ has quit IRC17:03
ayoungdolphm, well, since it is an api doc in markdown, I was hoping to avoid having to push it to github in order to view it as github displays it17:03
ayoungnot just for this one, but for reviews in general17:03
*** SergeyLukjanov has joined #openstack-dev17:03
*** pcm_ has joined #openstack-dev17:03
dolphmayoung: ooh, you linked to gerrit itself so i was *really* confused17:03
ayoungdolphm, I almost wonder if we should have people doing API reviews post the changes to their own github accounts and link in the reviews17:03
dolphmayoung: throw your doc into a gist and it'll render it17:03
*** dubsquared has quit IRC17:04
ayoungdolphm, yeah...but the gerrit url is the same as the url for the git repo17:04
dolphmayoung: didn't consider that lol ... i was just thinking "okay, you want to view a website in a browser. what's the punchline?"17:05
ayoungdolphm, can we do the style doc as a separate doc, so that it can live on,even beyond the v3 api?  Maybe put it up a level from V3?17:05
dolphmayoung: for example, https://gist.github.com/dolph/682922617:06
dolphmayoung: well it totally doesn't apply to anything we've done for v217:06
dolphmayoung: can we keep it as v3-specific until we have a v4? or something else it applies to?17:07
ayoungdolphm, true. Any driving reason to keep it mixed in with the V3 api doc, though?  It should also refer to writing extensions.  I would almost think it should stand alone: "here is how you write an API doc"  which would eventually apply beyond Keystone17:08
ayoungI would almost want it in the README for the repo17:09
*** SumitNaiksatam has joined #openstack-dev17:09
ayoungbut you are right, that would confuse things for V217:09
*** boris-42 has quit IRC17:09
*** Ryan_Lane has joined #openstack-dev17:10
ayoungdolphm, I just skimmed it, but it totally is what I was looking for.17:10
ayoungI can see why, though, you want it right before the API conventions portion of the document17:11
radixcan someone explain the keystone middleware to me? does it absolutely require an admin user/password, or can it validate tokens with only the token?17:13
*** qba73 has quit IRC17:13
ayoungradix, which middleware are you referring to?  auth_token?17:14
radixyeah, that, sorry17:14
ayoungradix, the service runs as a user.  That is referred to as the service user,. such as nova17:14
radixthat's required?17:14
ayoungthe nova user needs to make calls to keystone in order to perform some guarded operations17:15
ayoungradix, for example, token_validate is an admin operation which is typically used with UUID tokens.  Even with PKI tokens17:15
ayoungthere are admin funcitons17:15
radixlike, what if I've got a service that doesn't need to do anything "guarded", just check if a token is all good before passing it on to other services (that it looks up from the catalog with that token)?17:15
ayoungsuch as fetching the revocation list17:15
ayoungradix, unfortunately,  checking a token is an admin operation17:16
ayoungwe are working on making that not be the case17:16
radixhuh. ok.17:16
ayoungradix, right now, a token is like a credit card where no one checks the signature17:16
*** fbo_away is now known as fbo17:16
ayoungif you have mine, you can buy things and I am responsible for paying17:17
*** Ryan_Lane has quit IRC17:17
ayoungthus, guard your tokens17:17
ayoungnow, what we are trying to do is link the tokens to a more secure form of authentication, such as X509 or Kerberos.17:17
ayoungIts like having to show a photo id17:17
ayoungand then checking that the signature on the token matches the person's signature17:18
ayoungbut...that breaks a lot of the assumptions in openstack, and deploying a solution like that is going to take time17:18
radixayoung: yeah, ok17:18
ayoungnow, you might say "ok, but I trust my service, just let if validate a token"17:18
radixthat helps a LOT :)17:19
ayoungbut the problem is that the data it needs form Keystone to do that is sensitive.  FOr example, If we were to let people fetch the revocation lists, then people would be getting lists of tokens.17:19
ayoungIf you try to use one of those tokens that was recently revoked, and the service had not refreshed its revocation list, you would be able to get access17:20
ayoungradix, so, for your service, register it as a n endpoint with Keystone, create a service user for it, and give that service user admin privs17:20
*** danpb has quit IRC17:20
radixayoung: well, maybe my service just wants to say "here's a token, give me a catalog, or if it's revoked give me an error"17:21
radixI mean, this is just hypothetical now :)17:21
*** markwash has joined #openstack-dev17:21
ayoungradix, we don't want every token to generate additional traffic to keystone17:22
ayoungso token validation is done in process, not via the call to  keystone17:22
ayoungso, once every so often, your service will refresh its revocation list17:22
radixinteresting, ok17:22
ayoungthe catalog is embedded in the token...for "hysterical raisins"17:22
*** litong has joined #openstack-dev17:23
*** JordanP has quit IRC17:25
*** freedomhui has quit IRC17:28
*** mrunge has quit IRC17:28
*** mlavalle has quit IRC17:29
*** carl_baldwin has quit IRC17:29
*** lucasagomes has quit IRC17:30
*** Ryan_Lane has joined #openstack-dev17:32
*** johnthetubaguy has quit IRC17:32
*** dubsquared has joined #openstack-dev17:34
ayoungdolphm, https://review.openstack.org/#/c/43524/  can get merged17:35
*** vartom111 has joined #openstack-dev17:37
*** flaper87 is now known as flaper87|afk17:40
ayoungradix, is there an automated way to import https://bazaar.launchpad.net/~gm-dev-launchpad/launchpad-gm-scripts/master/view/head:/lp_work_item_editor.user.js directly into my browser, or is it expected to be done via the local file system?17:42
*** dubsquared has quit IRC17:42
radixayoung: so, it depends on your browser17:43
ayoungfirefox17:44
radixayoung: I think there are extensions that make it easier to install userscripts, but one way I know is to download the file, then drag-and-drop it onto a chrome browser that's currently showing "chrome://extensions".... yeah, I said it was hacky ;-)17:44
radixoh, here's a nice general page: http://userscripts.org/about/installing17:44
ayoungradix, ok,  so I can just click on the download link now.  Got it17:45
ayoungradix, that works well17:46
radixayoung: sweet17:46
radixok. well it's lunch time for me, bbl17:46
ayoungradix, needs to deal with the assignee...maybe I'll hack on it17:47
radixhmm, i thought that did work17:47
*** yjiang5 has left #openstack-dev17:47
radixit should pop up a thing where you can search for a username even17:47
radixat least it used to17:47
*** venkatesh has joined #openstack-dev17:48
*** FunnyLookinHat has quit IRC17:48
* radix -> food17:49
ayoungdolphm, this tool https://bazaar.launchpad.net/~gm-dev-launchpad/launchpad-gm-scripts/master/view/head:/lp_work_item_editor.user.js might actually make the using the blueprints more valuable17:50
*** FunnyLookinHat has joined #openstack-dev17:50
ayoungdolphm, look at the work items on https://blueprints.launchpad.net/keystone/+spec/revocation-events17:50
morganfainbergdhellmann, nice patchset on the ABC metaclass :)17:52
morganfainbergdhellmann, i posted a comment about the py3k compatibility issue. but other than that awesome start!  (yeah, ABCMetaclass use makes me happy in this contex is good)17:53
*** MaxV has quit IRC17:53
*** AnilV4 has quit IRC17:54
*** nplanel has quit IRC17:55
*** melwitt has joined #openstack-dev17:58
*** SumitNaiksatam has quit IRC17:58
*** gimps_ has joined #openstack-dev18:00
*** AlexF has joined #openstack-dev18:00
*** eglynn has quit IRC18:01
*** danwent has quit IRC18:01
*** cjellick has quit IRC18:01
*** jtomasek has quit IRC18:02
*** SumitNaiksatam has joined #openstack-dev18:02
*** cjellick has joined #openstack-dev18:02
*** danwent has joined #openstack-dev18:03
*** martyntaylor has joined #openstack-dev18:03
*** yjiang5_ has joined #openstack-dev18:04
*** sarob has joined #openstack-dev18:06
*** cjellick has quit IRC18:06
*** devoid has joined #openstack-dev18:11
*** otherwiseguy has quit IRC18:11
*** devoid has left #openstack-dev18:12
*** Mandell has joined #openstack-dev18:13
*** dstanek has quit IRC18:14
*** dstanek has joined #openstack-dev18:15
*** fbo is now known as fbo_away18:15
*** yolanda has joined #openstack-dev18:16
*** odyssey4me has quit IRC18:18
*** dubsquared has joined #openstack-dev18:18
*** boris-42 has joined #openstack-dev18:19
*** Shaan7 has quit IRC18:21
*** hemna has quit IRC18:22
*** ndipanov has quit IRC18:22
*** nermina has quit IRC18:23
*** nermina has joined #openstack-dev18:25
*** xga has joined #openstack-dev18:25
*** fbo_away is now known as fbo18:25
*** CaptTofu has quit IRC18:26
*** CaptTofu has joined #openstack-dev18:26
dolphmayoung: what does that tool do?18:27
*** neelashah has quit IRC18:30
*** edmund has quit IRC18:30
*** xga has quit IRC18:30
*** noslzzp has quit IRC18:31
*** exed has quit IRC18:31
*** Shaan7 has joined #openstack-dev18:32
*** Shaan7 has quit IRC18:32
*** Shaan7 has joined #openstack-dev18:32
*** rwsu has quit IRC18:32
*** neelashah has joined #openstack-dev18:33
*** litong has quit IRC18:34
*** AlexF has quit IRC18:38
*** noslzzp has joined #openstack-dev18:39
*** mrodden has joined #openstack-dev18:41
*** noslzzp has quit IRC18:41
*** martyntaylor has quit IRC18:43
*** eglynn has joined #openstack-dev18:45
tellesnobregadid anyone have a --color=true problem when trying to do git review?18:45
tellesnobregaerror: option `color' expects "always", "auto", or "never"18:45
*** CaptTofu has quit IRC18:45
*** CaptTofu has joined #openstack-dev18:46
*** enikanorov has joined #openstack-dev18:48
*** clayb has quit IRC18:48
*** rwsu has joined #openstack-dev18:49
*** egallen has quit IRC18:50
*** egallen has joined #openstack-dev18:52
*** venkatesh has quit IRC18:52
dolphmayoung: added my thoughts on a format for revocation events18:53
*** tanisdl has quit IRC18:55
*** egallen has quit IRC18:55
*** chandankumar has quit IRC18:55
tellesnobregaim having a problem runnign git review18:57
tellesnobregahas anyone experienced some problem with that as well? looks like git review is out of date with git log18:58
*** jvrbanac has quit IRC19:02
*** jergerber has quit IRC19:02
*** alexpilotti has quit IRC19:04
*** senk has left #openstack-dev19:06
alopanyone seen this?19:06
alopcinder list19:06
alopERROR: <attribute 'message' of 'exceptions.BaseException' objects>19:06
*** mlavalle has joined #openstack-dev19:08
*** rwsu has quit IRC19:09
*** sushils has quit IRC19:09
*** egallen has joined #openstack-dev19:10
*** demontiesantos has joined #openstack-dev19:14
*** anteaya is now known as i_am_now_steve19:16
*** jvrbanac has joined #openstack-dev19:17
*** carl_baldwin has joined #openstack-dev19:17
*** zaitcev has quit IRC19:18
*** exed has joined #openstack-dev19:18
*** ctracey is now known as ctracey|away19:20
*** egallen has quit IRC19:20
*** slagle has quit IRC19:20
*** rwsu has joined #openstack-dev19:21
*** venkatesh has joined #openstack-dev19:23
*** neelashah has quit IRC19:23
*** i_am_now_steve is now known as anteaya19:23
*** raildo has joined #openstack-dev19:24
raildohi, I'm working on bug # 1188182 and I saw a guy solved a workaround for this bug: "I have Implemented a temporary fix (not commited) to remove version from identity's endpoint url. This regex matches \ v1 \ v2, etc. ie ... \ v + one or more digits. Of course we need the best fix.  - O = urlparse.urlparse (url_for (request, 'image')) - Url = ":/ /". Join ((o.scheme, o.netloc)) + Url = re.sub (r "\ / v \ d +?", "", Url_for (req19:26
raildoI wonder if anyone can tell what is missing to make a final solution to this bug, because in my tests, the solution worked properly.19:27
raildolink to the bug: https://bugs.launchpad.net/horizon/+bug/118818219:27
uvirtbotLaunchpad bug 1188182 in horizon "horizon is removing the URL path from glance's endpoint" [Medium,Confirmed]19:27
*** venkatesh has quit IRC19:27
*** anniec has joined #openstack-dev19:28
*** boris-42 has quit IRC19:31
*** boris-42 has joined #openstack-dev19:31
*** egallen has joined #openstack-dev19:32
*** briancurtin has quit IRC19:32
*** danwent has quit IRC19:33
*** dubsquared has quit IRC19:33
*** danwent has joined #openstack-dev19:36
*** briancurtin has joined #openstack-dev19:36
*** CaptTofu has quit IRC19:36
*** CaptTofu has joined #openstack-dev19:37
*** gyee has joined #openstack-dev19:37
*** neelashah has joined #openstack-dev19:39
*** yolanda has quit IRC19:40
*** otherwiseguy has joined #openstack-dev19:41
*** slagle has joined #openstack-dev19:41
*** novas0x2a|laptop has joined #openstack-dev19:43
*** SergeyLukjanov has quit IRC19:43
*** alexpilotti has joined #openstack-dev19:44
*** romcheg has quit IRC19:45
*** boris-42 has quit IRC19:47
*** exed has quit IRC19:48
raildohi, I'm working on bug # 1188182 and I saw a guy solved a workaround for this bug: "I have Implemented a temporary fix (not commited) to remove version from identity's endpoint url. This regex matches \ v1 \ v2, etc. ie ... \ v + one or more digits. Of course we need the best fix.  - O = urlparse.urlparse (url_for (request, 'image')) - Url = ":/ /". Join ((o.scheme, o.netloc)) + Url = re.sub (r "\ / v \ d +?", "", Url_for (req19:49
raildo I wonder if anyone can tell what is missing to make a final solution to this bug, because in my tests, the solution worked properly.19:49
raildolink to the bug: https://bugs.launchpad.net/horizon/+bug/118818219:49
uvirtbotLaunchpad bug 1188182 in horizon "horizon is removing the URL path from glance's endpoint" [Medium,Confirmed]19:49
*** gatuus has joined #openstack-dev19:50
*** boris-42 has joined #openstack-dev19:50
achandraHello hoping someone can helpout with an error im getting after installing devstack on Ubuntu 12.04. When I go to download the ec2 API info, it produces a django error19:51
achandrai cant seem to get the necessary access keys required to connect via the ec2 api19:51
achandraany ideas if there is bugfix or a workaround?19:51
*** sandywalsh has quit IRC19:52
dhellmannmorganfainberg: it may be a few days before I can update it for python 3 compatibility, so feel free to take over the patch if you have time to do it19:53
jrwrenachandra: its in eucarc in the root of devstack source when you are done building19:53
jrwrensource eucarc19:53
* achandra looks 19:54
*** topol has quit IRC19:55
*** dubsquared has joined #openstack-dev19:56
*** romcheg has joined #openstack-dev19:57
*** exed has joined #openstack-dev19:58
*** dprince has quit IRC19:59
*** raildo has quit IRC19:59
achandrajrwren,  a little new to this. Ive found the eucarc file and in it it only refences how to (as far as i know how to create it). How do i extract what it created?19:59
*** raildo has joined #openstack-dev20:00
morganfainbergdhellmann, i'm actually moving this weekend, so i'm unsure what my schedule looks like until late next week.  if i get a chance i'll update, if not, we can see where it goes next week :)20:01
*** pberis has quit IRC20:01
dhellmannmorganfainberg: sounds good20:01
morganfainbergdhellmann, but i'm super happy i'm not the only one looking at abstract classes for the drivers :)20:02
dhellmannmorganfainberg: I would really like to be able to tell earlier the next time the plugin API changes out from under me. :-)20:02
dhellmannmaintaining a private plugin to talk to our user db is challenging20:02
*** pberis has joined #openstack-dev20:03
jrwrenachandra: sourcing a shell script is done wiht the source command20:03
achandrajrwren, yep. when i source that file i get no output20:04
*** jvrbanac has quit IRC20:04
*** dubsquared has quit IRC20:04
jrwrennow printenv20:05
*** dubsquared has joined #openstack-dev20:05
jrwrenit will show all the ec2 environment variables20:05
*** jvrbanac has joined #openstack-dev20:06
*** dubsquared has quit IRC20:06
*** dubsquared has joined #openstack-dev20:06
*** dubsquar_ has joined #openstack-dev20:08
*** dubsquared has quit IRC20:08
*** jprovazn has quit IRC20:08
gyeebknudson?20:10
bknudsongyee: present20:10
achandrajrwren, thanks!!20:10
gyeebknudson, so I have to use OpenStack CLI for the v3 APIs now?20:10
bknudsongyee: the keystone CLI was never enhanced for v3 apis.20:10
*** FatDarrel has joined #openstack-dev20:10
FatDarrelVMs don;'t have internet access whats up with that20:11
bknudsonso the option is the common cli.20:11
gyeecommon cli works with v3 today?20:11
bknudsonI don't know what all is supported, but I've used it with the normal functions.20:11
gyeelike auth, list users, etc?20:12
bknudsonRight, list users, groups.20:12
*** eglynn has quit IRC20:12
bknudsonI don't know if it actually supports v3 auth?20:12
gyeegroovy, lemme give it a shot20:12
*** boden has quit IRC20:13
*** romcheg has quit IRC20:13
bknudsongyee: --os-identity-api-version 320:13
*** romcheg has joined #openstack-dev20:13
raildocan anyone help me with this bug?  https://bugs.launchpad.net/horizon/+bug/1188182 I have a doubt and I am new to open stack.20:13
uvirtbotLaunchpad bug 1188182 in horizon "horizon is removing the URL path from glance's endpoint" [Medium,Confirmed]20:13
FatDarrelOk so i have an openstack setup20:13
FatDarrelbut when I ping from the vm things don't come back20:14
FatDarreli see the packet go out but that is about it20:14
FatDarrelvm to google no ping20:14
*** romcheg has quit IRC20:14
FatDarrelbase/rhel-box to google ping works20:14
*** armax has joined #openstack-dev20:14
bknudsongyee: I think last time I tried openstack CLI with v3 it didn't work... ERROR: cliff.app Unable to communicate with identity service: {"error": {"message": "The resource could not be found.", "code": 404, "title": "Not Found"}}. (HTTP 40420:15
bknudsonIf I opened a bug every time I tried something and it didn't work then that's all I'd be able to do in a day. :(20:16
gyeewonder if there's an endpoint issue20:17
*** dubsquar_ has quit IRC20:20
*** dubsquared has joined #openstack-dev20:21
*** dolphm has quit IRC20:24
*** exed has quit IRC20:24
*** dubsquared has quit IRC20:25
beekneemechmordred: When you have a minute, can you glance at https://review.openstack.org/#/c/49676/ ?20:26
beekneemechJust want to verify that's how we should be doing the versioning.20:26
bknudsongyee: I'm still getting that error...20:26
bknudsonopenstack --os-identity-api-version 3 user list20:26
mordredbeekneemech: looking20:26
bknudsonAuthorization failed: The resource could not be found.20:26
*** alunduil has quit IRC20:27
bknudsongyee: I added "--os-auth-url http://localhost:5000/v3" and now it works.20:27
gyeebknudson, awesome20:28
*** dtyarnell_ has joined #openstack-dev20:28
bknudsonbut keystone log shows GET http://192.168.122.176:35357/v2.0/users ...20:28
bknudsonthat's not right20:28
*** dtyarnell has quit IRC20:28
*** dtyarnell_ is now known as dtyarnell20:28
*** tvb has quit IRC20:29
mordredbeekneemech: hrm. so, do we really need the preversioning?20:29
mordredfor oslo?20:29
mordredwhy not just let it roll - we shouldn't be consuming non-tagged-releases anywhere anyway20:29
bknudsongyee: "GET http://192.168.122.176:35357/v2.0/groups HTTP/1.0" 40420:30
beekneemechmordred: Yeah, I'm not sure.20:30
bknudsonwhen I do group list.... so it's not using v3.20:30
mordredbeekneemech: I'd like to keep the use of the pre-versioning stuff to an absolute minimum except for where we really need it20:30
beekneemechI know there was some odd oslo.config stuff where we were using the pre-release version, but I think that would have been tagged (?)20:30
mordredit was20:30
mordredand that process will be better this cycle20:31
*** bauzas has joined #openstack-dev20:31
*** gimps_ has quit IRC20:31
tellesnobregamordred: can you help me with a git-review problem?20:31
*** krtaylor has quit IRC20:31
*** dvarga has quit IRC20:31
bknudsongyee: my identity endpoint has v2 on it, so maybe that's the problem...20:31
beekneemechmordred: So I'm thinking -1 that change and we can discuss it with Mark if he still wants to do it.20:31
mordredbeekneemech: ++20:32
mordredtellesnobrega: yes!20:32
gyeebknudson, I have a bigger problem, need to figure out how to do it via 2-way SSL20:32
beekneemechmordred: Cool, I'll go do that.20:32
beekneemechmordred: Thanks20:32
bknudsongyee: 2-way ssl is bigger than it doesn't work at all?20:32
gyeebknudson, yeah, sigh, there goes my weekend20:33
*** tanisdl has joined #openstack-dev20:33
bknudsongyee: well, at least getting a token is working, and that's what you're trying to do.20:33
*** nplanel has joined #openstack-dev20:33
demontiesantoshi everyone, I'm trying to use the rest API and I saw that I need authenticate to access, for example, /v2/{tenant_id}/extensions... But the documentation doesn't shows how to authenticate20:33
demontiesantosI got the token using keystone20:34
bknudsongyee: so you need to be able to pass in all the ssl options...20:34
demontiesantosand I think I have to pass that token to the nova API20:34
tellesnobregamordred: im trying to run git review but it pops up an error that git log --color accepts only always, never and auto20:34
tellesnobregabut the call is with true20:34
bknudsongyee: which as far as I can tell from openstack -h there's no options for client cert & key20:35
gyeebknudson, yes, I need to make it talk to an internal instance over 2-way SSL20:35
bknudsonor for a ca key, etc.20:35
gyeeI see the --os-token option, but no --os-cert or --os-key or --os-cacert20:36
bknudsonwhich keystone cli has...20:36
gyeecorrect20:36
*** topol has joined #openstack-dev20:36
bknudsongyee: once you've got those, you just pass them to the python-* clients ?20:37
gyeeright20:37
gyeeI was under the impression that common CLI support the same options20:38
*** otherwiseguy has quit IRC20:38
*** exed has joined #openstack-dev20:38
bknudsonERROR: cliff.app Invalid command '--os-cert'20:38
mordredtellesnobrega: hrm. it sounds like you either hav ea ery old git-review ora  very old git20:39
mordredor both20:39
mordredtellesnobrega: git review --version ?20:39
*** jamespage_ has joined #openstack-dev20:41
gyeebknudson, also, when you type 'keystone' at the command prompt, it prints out the usage nicely20:41
gyeewith "openstack", nothing20:41
*** jamespage_ has quit IRC20:41
bknudsonecho $? returns 120:42
bknudsonmaybe expecting openstack to work for v3 was a stretch, but seems to be better to do the work 1x in openstack rather than in both keystoneclient and os.20:43
gyeewhat's the timeframe for openstack 1x?20:43
tellesnobregamordred: version 1.1220:44
tellesnobregafor git-review20:44
mordredtellesnobrega: that's super old. you really need to upgrade20:44
mordredgit-review version 1.2320:44
bknudsondtroyer: what's the timeframe for openstack 1x?20:44
mordredis current20:44
tellesnobregaand git version 1.7.9.520:44
mordredtellesnobrega: that should be fine I believe20:45
mordredI recommend "sudo pip install -U git-review" to get the latest20:45
mordredOR20:45
mordredzul: do you have newer packages for git-review anywhere?20:45
zulmordred:  nope we usually sync that one from debian20:45
mordredzul: ok.20:46
mordredtellesnobrega: then I recommend installing from pip for that one20:46
gyeebknudson, gotta run, I'll poke around with it later to see what we need. Thanks for the help. Have a good weekend!20:46
*** gyee has quit IRC20:46
*** otherwiseguy has joined #openstack-dev20:50
*** vipul is now known as vipul-away20:51
*** vipul-away is now known as vipul20:52
tellesnobregamordred: it worked20:52
mordredtellesnobrega: w00t!20:52
*** radez is now known as radez_g0n320:52
*** dstanek has quit IRC20:57
*** f13o has joined #openstack-dev20:57
*** rfolco has quit IRC20:58
*** danwent has quit IRC21:00
*** tvb has joined #openstack-dev21:01
*** ericw has quit IRC21:01
*** demontiesantos has quit IRC21:02
*** raildo has quit IRC21:04
gatuusRC1??21:06
*** bswartz has quit IRC21:06
gatuushavana21:06
*** tanisdl has quit IRC21:07
*** pberis has quit IRC21:07
*** tanisdl has joined #openstack-dev21:08
*** donaldh has joined #openstack-dev21:08
dtroyerbknudson: there is no schedule, it's mostly just me working on it now and isn't $DAY_JOB.   Looking at the scrollback, for the CA config bits, I'd have told you it was there, it should be there, and isn't. :(  that's a priority item...21:09
*** tanisdl has quit IRC21:10
*** thomasm has quit IRC21:10
ekarlsodtroyer: what you working on ? ;p21:11
*** tanisdl has joined #openstack-dev21:11
*** mkollaro has joined #openstack-dev21:12
dtroyerekarlso: :) besides random devstack knee-jerk patches?21:12
ekarlsoah21:13
*** danwent has joined #openstack-dev21:13
*** bauzas has quit IRC21:14
*** fbo is now known as fbo_away21:14
*** cjellick1 has joined #openstack-dev21:15
*** rudra has joined #openstack-dev21:15
*** rnirmal has quit IRC21:16
*** cjellick has joined #openstack-dev21:16
*** neelashah has quit IRC21:18
*** jecarey has quit IRC21:19
*** colinmcnamara has quit IRC21:19
*** cjellick1 has quit IRC21:19
*** colinmcnamara has joined #openstack-dev21:20
*** danwent has quit IRC21:23
*** rudra has quit IRC21:23
*** rudra has joined #openstack-dev21:23
*** cjellick has quit IRC21:24
*** sarob_ has joined #openstack-dev21:24
*** cjellick has joined #openstack-dev21:24
*** colinmcnamara has quit IRC21:24
*** alunduil has joined #openstack-dev21:26
*** sarob has quit IRC21:27
*** colinmcnamara has joined #openstack-dev21:27
*** vkmc has quit IRC21:28
*** devoid has joined #openstack-dev21:29
*** danwent has joined #openstack-dev21:29
*** mkollaro has quit IRC21:29
FatDarrel?21:29
*** sarob_ has quit IRC21:29
FatDarrelanyone here a nova network expert21:29
*** lbragstad has quit IRC21:33
*** carl_baldwin has quit IRC21:33
*** spzala has quit IRC21:34
*** devoid has left #openstack-dev21:35
*** vartom111 has quit IRC21:35
*** mriedem has left #openstack-dev21:36
*** mriedem has quit IRC21:36
cburgessAnyone using neutron + ml2 with devstack?21:37
*** pcm_ has quit IRC21:38
*** ericw has joined #openstack-dev21:39
*** thedodd has quit IRC21:42
*** grog500_ has joined #openstack-dev21:47
*** dtyarnell has quit IRC21:48
*** alop_ has joined #openstack-dev21:48
*** alop has quit IRC21:49
*** alop_ is now known as alop21:49
*** jayg is now known as jayg|g0n321:50
*** grog500 has quit IRC21:51
*** grog500_ is now known as grog50021:51
*** cjellick1 has joined #openstack-dev21:52
adalbasmtreinish, thanks for the comments on the whitebox test patch.21:53
*** cjellick has quit IRC21:55
*** carl_baldwin has joined #openstack-dev21:56
*** ericw has quit IRC21:56
*** nermina has quit IRC21:56
*** metral has quit IRC21:58
*** rcleere has quit IRC21:59
*** danwent has quit IRC22:02
*** ericw has joined #openstack-dev22:06
*** noslzzp has joined #openstack-dev22:08
*** krtaylor has joined #openstack-dev22:10
*** eglynn has joined #openstack-dev22:10
*** jvrbanac has quit IRC22:11
*** ericw has quit IRC22:13
*** prad has quit IRC22:15
*** briancurtin has quit IRC22:16
*** pbarquero has quit IRC22:17
*** gordc has quit IRC22:18
*** bpokorny has quit IRC22:18
*** rudra has quit IRC22:18
*** galstrom is now known as galstrom_zzz22:19
aspiersdtroyer: is there a strong reason why devstack's ENABLED_SERVICES isn't an array?22:21
*** stevemar has joined #openstack-dev22:22
*** cjellick has joined #openstack-dev22:27
*** jimfehlig has quit IRC22:28
*** cjellick1 has quit IRC22:31
*** jhesketh has quit IRC22:34
*** danwent has joined #openstack-dev22:35
*** sarob has joined #openstack-dev22:35
*** bswartz has joined #openstack-dev22:39
*** FunnyLookinHat has quit IRC22:40
brianclineis there a secret to getting the updated openvswitch package in precise-updates/havana to start? it no longer tries to compile a module anymore -- installing openvswitch-switch yields "Module openvswitch not found.", seems there is a packaging difference22:40
*** sarob has quit IRC22:43
*** eglynn has quit IRC22:43
*** changbl has quit IRC22:44
*** nijaba has quit IRC22:50
*** colinmcnamara has quit IRC22:52
*** donaldh has quit IRC22:57
*** alop has quit IRC23:00
*** egallen has quit IRC23:01
*** stevemar has quit IRC23:03
*** FatDarrel_ has joined #openstack-dev23:03
*** FatDarrel has quit IRC23:04
*** FatDarrel_ is now known as FatDarrel23:04
*** colinmcnamara has joined #openstack-dev23:06
*** boden has joined #openstack-dev23:06
*** jmontemayor has quit IRC23:07
*** ericw has joined #openstack-dev23:09
*** mmalesky has joined #openstack-dev23:14
*** gatuus has quit IRC23:16
*** armax has left #openstack-dev23:18
*** dubsquared has joined #openstack-dev23:19
*** tanisdl has quit IRC23:20
*** datsun180b has quit IRC23:22
*** carl_baldwin has quit IRC23:25
*** otherwiseguy has quit IRC23:25
*** ericw has quit IRC23:28
*** hemna_ is now known as hemnafk23:29
*** novas0x2a|laptop has quit IRC23:32
*** michchap_ has joined #openstack-dev23:36
*** michchap has quit IRC23:36
*** pmathews has quit IRC23:37
*** SumitNaiksatam has quit IRC23:37
*** SumitNaiksatam has joined #openstack-dev23:38
*** exed has quit IRC23:40
*** gyee has joined #openstack-dev23:40
*** SumitNaiksatam has quit IRC23:43
*** topol has quit IRC23:45
*** aspiers has quit IRC23:46
*** danwent has quit IRC23:47
*** amohn9 has joined #openstack-dev23:48
*** ericw has joined #openstack-dev23:49
*** dropped has joined #openstack-dev23:51
*** boris-42 has quit IRC23:51
*** exed has joined #openstack-dev23:53
*** zaitcev has joined #openstack-dev23:55
gyeeayoung, around?23:57

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