Friday, 2015-07-03

ianwjamielennox: ok, i've made a few tweaks to that, i think it passes ci now00:00
jamielennoxianw: it was almost exactly the same as https://review.openstack.org/#/c/197768 so i merged them together00:00
ianwthe main annoyance is if you do "echo foo | grep blah | awk ..." and that grep in the middle fails00:00
jamielennoxso it's dependant on an abandonded patch, i wasn't sure if you would want to put it at the end of that v3 chain or merge it on its own00:00
ianwarguably, that's a valid case ... but i think you can generally rewrite it to be clearer anyway00:01
*** hemna is now known as hemnafk00:01
mtreinishianw: well you could split up multiple pipes and store intermediates in vars, that might make it a bit cleaner00:01
*** patrickeast has quit IRC00:01
*** mtanino has quit IRC00:02
openstackgerritMerged openstack/qa-specs: Add working items to consistent-service-method-names  https://review.openstack.org/19781900:02
ianwmtreinish: yeah, or often it's done where you store the output in a var, and check if it's blank, so you can just move it into an "if" statement too00:02
*** tsekiyam_ has joined #openstack-qa00:03
mtreinishianw: ah, yeah that works too00:03
ianwjamielennox: hang on, copy-paste failures, what did you merge https://review.openstack.org/#/c/197768 into?00:04
jamielennoxianw: yea, i just noticed that00:04
jamielennoxand added a new comment00:04
jamielennoxhttps://review.openstack.org/#/c/18668200:05
*** tsekiyama has quit IRC00:06
*** mlavalle has quit IRC00:07
*** tsekiyam_ has quit IRC00:08
*** dims__ has joined #openstack-qa00:10
openstackrecheckConsole logs not available after 13:25s for gate-glance-pep8 122910,7,336c75500:12
ianwjamielennox: alright, to avoid too much confusion on your stack, i might put a workaround in the pipefail cause it just passed ci00:12
*** dims_ has quit IRC00:12
*** StevenK has joined #openstack-qa00:13
*** Sukhdev has quit IRC00:14
*** pvaneck has quit IRC00:22
openstackrecheckConsole logs not available after 13:23s for gate-glance-python27 195820,5,bcc072900:25
*** yamamoto has joined #openstack-qa00:26
*** hitalia_ has quit IRC00:28
*** dmorita has joined #openstack-qa00:36
openstackgerritIan Wienand proposed openstack-dev/devstack: Enable pipefail  https://review.openstack.org/19779200:39
openstackrecheckConsole logs not available after 13:27s for gate-cinder-pep8 195795,7,5c59cde00:39
*** freerunner has joined #openstack-qa00:41
openstackrecheckConsole logs not available after 13:23s for gate-glance-python27 197916,5,a55eb4900:52
*** davideagnello has quit IRC00:57
*** yamamoto has quit IRC00:58
openstackrecheckConsole logs not available after 13:23s for check-tempest-dsvm-neutron-full-juno 197445,2,e12c0ae01:06
*** Longgeek has joined #openstack-qa01:10
openstackgerritMatthew Treinish proposed openstack/qa-specs: Move devstack-external-plugins spec into implemented  https://review.openstack.org/19817901:11
openstackgerritMerged openstack-infra/elastic-recheck: Point out that non-voting jobs are skipped in the readme  https://review.openstack.org/19812701:11
*** mriedem has joined #openstack-qa01:14
*** dhellmann has quit IRC01:15
*** dhellmann has joined #openstack-qa01:15
*** jaypipes has quit IRC01:16
*** Longgeek has quit IRC01:18
openstackrecheckConsole logs not available after 13:21s for check-grenade-dsvm-neutron 186682,13,106ae4901:19
*** woodster_ has quit IRC01:21
openstackgerritlifeless proposed openstack-dev/devstack: Fix library runs.  https://review.openstack.org/19818801:30
openstackrecheckConsole logs not available after 13:21s for gate-glance-pep8 184351,1,72b143101:32
*** openstackrecheck has quit IRC01:33
*** openstackrecheck has joined #openstack-qa01:33
jamielennoxi have a feature branch in keystoneclient that is based upon the new keystoneauth library. In the requirements for this branch i've got a reference to keystoneauth via -e pointing at github (and the requirements check disabled)01:34
jamielennoxdoes anyone know why it's pulling from pypi instead?01:34
jamielennoxhttp://logs.openstack.org/79/196479/1/check/gate-tempest-dsvm-neutron-src-python-keystoneclient/b1d809b/logs/devstacklog.txt.gz#_2015-06-28_23_16_19_01401:34
jamielennoxlifeless: is ^ because of devstack requirements checking?01:35
lifelesslooking01:37
lifelessjamielennox: so, you can't do that01:38
lifelessjamielennox: urls aren't reflected into setup() kwargs because setuptools doesn't accept urls as requirements.01:38
lifelessjamielennox: there's a PEP to enable that but its not implemented.01:39
lifelessjamielennox: requirements.txt is processed by reflecting it into setup() kwargs, and then that generates the static metadata in the egg_info which pip introspects.01:39
lifelessjamielennox: so, nothing to do with devstack. Try it locally: make a virtualenv, run 'pip install .' in the ksc dir and watch it pull from the net.01:39
jamielennoxlifeless: not arguing but it works locally doing pip intsall -r requirements.txt, and if so how does it know to install keystoneauth at all?01:40
lifelessjamielennox: this is one of the reasons we say 'don't put urls in requirements.txt' : until we stop using requirements.txt for install_requires /altogether/ it simply won't work.01:40
lifelessjamielennox: because 'pip install -r requirements.txt' is not how the rest of the system works.01:40
lifelessjamielennox: pip install -r requirements.txt says 'read this file and process it'. 'pip install /path/to/ksc' goes through the reflection process I described above.01:41
jamielennoxok, so how does pip know to install keystoneauth there?01:41
lifelessjamielennox: devstack does 'pip install /path/to/ksc' because not all our things have requirements.txt01:41
lifelessamongst other reasons01:41
lifelessjamielennox: because #egg=keystoneauth01:41
openstackgerritMerged openstack-dev/devstack: Replace RPC Backend text in README  https://review.openstack.org/19765201:41
jamielennoxoh, ok01:41
lifelessjamielennox: thats what enables it to be reflected into setup kwargs /at all/01:42
jamielennoxlifeless: alright, so what are my options for devstack? the library hasn't been officially released yet so i don't think it makes sense to add it to LIBS_FROM_GIT01:42
jamielennoxthough i probably wouldn't get any push back01:42
lifelessjamielennox: release it.01:42
jamielennox;)01:42
lifelessjamielennox: or01:42
lifelessjamielennox: Depends-On: the tip of it01:43
lifelessthat should trigger install_library_from_git01:43
lifelessand with the new constraints stuff thats landing Right Now01:43
lifelessthat should DTRT. Fingers crossed etc. Oh, except that its broken for the two-repo case right now, see #openstack-oslo where my patches to fix it are under review01:43
openstackgerritMerged openstack-infra/devstack-gate: Switch to using constraints files.  https://review.openstack.org/19488601:44
jamielennoxok, either of thoes cases involving teaching devstack how to install_library_from_git keystoneauth01:44
lifelessspeak of the devil01:44
*** ihrachyshka_ has joined #openstack-qa01:44
lifeless\o/\o/\o/\o/01:44
lifelessyeah, but I'm pretty sure there's some magic there.01:44
lifelessfungi: ^01:44
fungiheh01:45
jamielennoxfungi: do i need to do anything special to install_library_from_git that's not a part of our requirements.txt01:45
fungier, i think it'll need to be special-cased in an envvar passed into devstack-gate from the job definition, unless it's already set to install from source only in devstack01:46
lifelessfungi: I thought cross-repos Depends-On triggered it?01:47
lifelessfungi: otherwise they're pretty useless...01:47
jamielennoxyea, it looks like they are manual: https://github.com/openstack-dev/devstack/blob/master/lib/keystone#L48801:47
fungibut other people in this channel and #openstack-oslo will likely know better. they're the main consumers of the dsvm-src jobs that make heavy use of that option01:47
lifelessok, so perhaps we need to do some work to make it DTRT :/.01:47
fungilifeless: i think we want that to be the case, but solving it might have been punted to later01:47
lifelessanyhow01:48
lifelessconstraints have landed. I'm going to have a drink tonight :)01:48
jamielennoxok, well i don't think anyone will object to me adding keystoneauth to devstack even if it's not official yet01:48
jamielennoxlifeless: congrats01:48
fungii mean, initially we tested it _all_ from source. and then realized we should probably install things from pypi to test against what's released instead. and then realized we still needed to install the thing we're testing from source. and then realized that we might also need to cross-test that against the branch tip of something else...01:49
lifelessyes01:49
fungiso it's been coming together incrementally01:49
lifelessand now we have a single file that can describe that :)01:49
* lifeless dances some more01:49
jamielennoxlifeless: is that pretty much it implemented now that it's in gate?01:50
lifelessjamielennox: oh no theres lots more cleanup and ecosystem stuff01:50
fungilifeless: much faster progress on the constraints solution than i anticipated. excellent work so far01:50
lifelessjamielennox: fallout all over the place - stable branches requirements updates are wedged (patches up and pending review) etc01:50
lifelessjamielennox: and we haven't figured out the way to enable it within tox jobs yet01:51
lifelessbut01:51
lifelessdvsm jobs were the big interlock01:51
lifelessso with this in place it stops being so fragile: now its self testing and changes to anything in the environment will run against it01:51
*** ihrachyshka_ has quit IRC01:52
jamielennoxyea, at least other people can't screw up the progress now01:52
*** ihrachyshka_ has joined #openstack-qa01:57
jamielennoxlifeless: thanks for your help01:58
lifelesssadly not quite quick enough for jogo to see it before lastday02:01
jamielennoxlastday?02:01
*** ihrachyshka_ has quit IRC02:02
lifelessjogo has moved onto a new thing02:02
lifelessI am fairly sure its actually happened by now02:02
openstackrecheckConsole logs not available after 13:26s for check-grenade-dsvm-neutron 186682,13,410c75c02:02
*** Kennan has joined #openstack-qa02:02
*** Kennan2 has quit IRC02:03
jamielennoxah, that's a shame, i hadn't heard02:04
jamielennoxjogo: hope the new gig goes well02:04
openstackgerritVincent Hou proposed openstack/tempest: Add tempest tests for volume migration  https://review.openstack.org/19544302:04
*** yamahata has quit IRC02:14
openstackrecheckConsole logs not available after 13:22s for check-tempest-dsvm-full 198186,1,2b954da02:16
jogolifeless: see what?02:16
jogojamielennox: thanks02:16
jamielennoxjogo: what have you moved on to?02:17
jogojamielennox: pinterest02:17
jamielennoxnice, that should be interesting02:17
jogojamielennox: yeah, it should be they are a massive python shop02:17
jogoso I hope to bring some of our best practices over to them02:18
jogolifeless: did you fully unravel the dependency mess?02:18
jamielennoxjogo: having _one_ deployment where you can control the dependencies will make life less stressful - hopefully02:19
*** auld has joined #openstack-qa02:20
jogojamielennox: :) yes02:20
*** laughterwym_ has joined #openstack-qa02:31
openstackrecheckConsole logs not available after 13:23s for gate-cinder-python27 189990,4,ad9767402:32
*** laughterwym has quit IRC02:34
*** Poornima has joined #openstack-qa02:37
lifelessjogo: constraints - fully pinned sets for devstack - just landed02:38
*** yamamoto has joined #openstack-qa02:38
lifelessjogo: see http://lists.openstack.org/pipermail/openstack-dev/2015-July/068569.html02:38
lifelessjogo: 13:44 < openstackgerrit> Merged openstack-infra/devstack-gate: Switch to using constraints files.  https://review.openstack.org/19488602:39
clarkblifeless if a project adds a new trabsitive dep and we bump it manually in conatraints but dont include the transitive dep anywhere do we just get whatever it wants or does pip fail there?02:40
lifelessclarkb: code may speak a 1000 words here - http://git.openstack.org/cgit/openstack/requirements/tree/openstack_requirements/cmds/generate.py#n7702:41
lifelessclarkb: so we'll get it pinned in the very next periodic run of generate-constraints02:41
lifelessclarkb: but you're right. the manual probably needs to say 'run generate-constraints02:41
clarkbkk02:42
openstackgerritJamie Lennox proposed openstack-dev/devstack: Allow installing keystoneauth from git  https://review.openstack.org/19819402:43
*** Madan1 has joined #openstack-qa02:49
*** Madan has quit IRC02:49
*** Longgeek has joined #openstack-qa02:59
*** jogo has quit IRC03:00
*** jogo has joined #openstack-qa03:00
*** hogepodge has quit IRC03:06
*** kiran-r has joined #openstack-qa03:15
*** Longgeek has quit IRC03:16
*** BharatK has quit IRC03:16
fungilifeless: not sure if you saw. 198188 passed but 198186 did not03:22
openstackgerritMerged openstack/tempest: Remove str() calls from compute clients  https://review.openstack.org/19744503:24
openstackrecheckConsole logs not available after 13:22s for gate-keystone-pep8 196942,2,2d2e2c503:25
lifelessfungi: I didn't. I'm doing omg expenses omg03:31
fungig'luck03:31
lifelessfungi: I dare not get distracted, my card is at 30 days03:31
fungiyep. hop to it03:31
lifelessand then I have SBC03:33
lifelessand then I'll look in to the CI whinge03:33
lifelessfeel free to push  up a fix, I'll check before I edit locally03:33
*** samueldmq has quit IRC03:48
*** coolsvap|away is now known as coolsvap03:48
*** hogepodge has joined #openstack-qa03:51
*** dims__ has quit IRC03:52
jogolifeless: nice!03:56
*** hogepodge has quit IRC03:56
openstackrecheckConsole logs not available after 13:27s for check-grenade-dsvm 193976,14,c5a280e03:56
lifelessjogo: only took since months since we hatched the plan in LCA03:57
lifelessjogo: btw do pinterest do LCA etc?03:57
lifelessjogo: would like to see you again :)03:57
fungilifeless: with it being midnight here, i'll probably save any fixing of things until after some sleep03:58
*** vitikkan has quit IRC03:58
*** Viktor___ has joined #openstack-qa03:59
*** hogepodge has joined #openstack-qa04:00
*** hogepodge has quit IRC04:05
*** achanda has joined #openstack-qa04:06
*** hogepodge has joined #openstack-qa04:08
*** annashen has joined #openstack-qa04:09
*** kiran-r has quit IRC04:10
*** Longgeek has joined #openstack-qa04:13
*** Longgeek has quit IRC04:15
*** Longgeek has joined #openstack-qa04:15
*** Longgeek has quit IRC04:16
*** kiran-r has joined #openstack-qa04:17
*** Longgeek has joined #openstack-qa04:17
*** hogepodge has quit IRC04:17
*** achanda_ has joined #openstack-qa04:21
*** kiran-r has quit IRC04:22
*** achanda has quit IRC04:24
*** hogepodge has joined #openstack-qa04:25
*** annashen has quit IRC04:25
*** achanda_ has quit IRC04:29
*** Madan1 has quit IRC04:37
*** Longgeek has quit IRC04:42
*** Longgeek has joined #openstack-qa04:42
*** amotoki has joined #openstack-qa04:46
jogolifeless: one way or another I will be at LCA04:50
lifelessjogo: \o/04:50
jogolifeless: not going is not an option04:50
*** Longgeek has quit IRC04:50
*** BharatK has joined #openstack-qa04:50
*** Longgeek has joined #openstack-qa04:51
lifelessjogo: hah :)04:54
lifelessjogo: cool04:54
*** rushiagr_away is now known as rushiagr04:58
jogolifeless: someone at work already made fun of unittest2 camelCase not being pythonic05:06
lifelessjogo: hah05:06
openstackgerritJamie Lennox proposed openstack-dev/devstack: Allow installing keystoneauth from git  https://review.openstack.org/19819405:06
lifelessjogo: its from the stdlib05:06
lifelessjogo: and PEP8 permits camelcase05:06
lifelessjogo: proposals to uncamelcase it have been shot down by no less than Guido in the past05:07
jogoyeah I did see the pep8 thing about CamelCase when things already have CamelCase05:08
jogolifeless: interesting05:08
lifelessjogo: unittest2 is cPython's master unittest module, backported for older pythons (currently older == 3.5, 3.4, 3.3, 3.2, 2.7, 2.6, pypy2)05:09
lifelessjogo: so I think you can perhaps blow rasberries at your coworker :)05:09
*** Longgeek has quit IRC05:10
jogolifeless: is that an Australian phrase?05:10
jogoerr NZ*05:10
jogolifeless: that is some good backstory to know, I figured there was a good reason05:11
lifelessjogo: raspberries? I suspect global.05:11
jogowe don't blow raspberries at people around here05:11
*** Longgeek has joined #openstack-qa05:12
lifelessjogo: put your tongue past your lips, lops on the tongue, blow out and let the upper lip vibrate05:12
* jogo just youtubed it05:14
jamielennoxianw: https://review.openstack.org/#/c/193928/ and follow up is related to that v3 patch series05:17
openstackgerritKen'ichi Ohmichi proposed openstack/tempest: Apply a naming rule of GET to show_server method  https://review.openstack.org/19780305:18
tchaypojogo: would you know what a bronx cheer is?05:18
openstackgerritGhanshyam Mann proposed openstack/qa-specs: Add spec for migrating service client to lib  https://review.openstack.org/19821905:18
tchaypohttps://en.wikipedia.org/wiki/Blowing_a_raspberry seems to have an instructional video05:18
tchaypoone of the footnotes describes it as: a "voiceless exolabio-lingual trill", with the tongue vibrating against a protruding lower lip.05:19
*** Nakato has joined #openstack-qa05:20
openstackgerritGhanshyam Mann proposed openstack/qa-specs: Add spec for migrating service client to lib  https://review.openstack.org/19821905:20
jogotchaypo: haven't heard of that term either05:23
*** Longgeek has quit IRC05:24
*** Longgeek has joined #openstack-qa05:24
ianwjamielennox: https://review.openstack.org/#/c/193935/1/tools/create_userrc.sh <- do you want to set DOMAIN_ID=default, or DOMAIN_NAME=default?05:24
jamielennoxianw: no, DOMAIN_ID or DOMAIN_NAME are for scoping to a domain05:25
openstackgerritMerged openstack-dev/devstack: ceph: remove deprecated glance_store options  https://review.openstack.org/19017405:25
ianwi just mean is it "OS_USER_DOMAIN_NAME=default" or "OS_USER_DOMAIN_ID=default" ?05:26
jamielennoxianw: so it's ID=default in devstack, i don't think there is a need to set NAME as well05:27
openstackgerritGhanshyam Mann proposed openstack/qa-specs: Add spec for migrating service client to lib  https://review.openstack.org/19821905:28
ianwjamielennox: ok, i'll believe you :)05:29
lifelesstchaypo: that footnote doth not match how I do it :>05:33
*** Madan has joined #openstack-qa05:35
openstackgerritGhanshyam Mann proposed openstack/qa-specs: Cleanup tempest-library spec  https://review.openstack.org/15035605:45
openstackgerritGhanshyam Mann proposed openstack/qa-specs: Add spec for migrating service client to lib  https://review.openstack.org/19821905:52
*** annashen has joined #openstack-qa05:59
*** Kennan has quit IRC06:02
*** Kennan has joined #openstack-qa06:02
*** laughterwym_ has quit IRC06:04
*** annashen has quit IRC06:13
*** annashen has joined #openstack-qa06:15
*** annashen has quit IRC06:22
*** gmann has quit IRC06:22
*** oomichi has joined #openstack-qa06:25
*** oomichi has quit IRC06:25
*** achanda has joined #openstack-qa06:29
*** anshul has joined #openstack-qa06:30
*** rossella_s has quit IRC06:36
*** rossella_s has joined #openstack-qa06:37
*** laughterwym has joined #openstack-qa06:43
*** gfidente has joined #openstack-qa06:47
*** armax has quit IRC06:48
*** shausy has joined #openstack-qa06:49
*** Poornima has quit IRC06:53
*** SridharG has joined #openstack-qa06:58
*** neeti has joined #openstack-qa07:01
*** Poornima has joined #openstack-qa07:01
*** gszasz has joined #openstack-qa07:03
*** jokke_ has quit IRC07:10
*** yamamoto has quit IRC07:10
*** afazekas has quit IRC07:10
*** davidlenwell has quit IRC07:10
*** jeblair has quit IRC07:10
*** coolsvap is now known as coolsvap|away07:11
*** achanda_ has joined #openstack-qa07:11
*** jokke__ has joined #openstack-qa07:11
*** jeblair_ has joined #openstack-qa07:11
*** afazekas has joined #openstack-qa07:11
*** BharatK has quit IRC07:11
*** ianw has quit IRC07:11
*** yamamoto has joined #openstack-qa07:11
*** achanda has quit IRC07:11
*** BharatK has joined #openstack-qa07:11
*** ianw has joined #openstack-qa07:11
*** davidlenwell has joined #openstack-qa07:12
*** achanda has joined #openstack-qa07:12
*** achanda_ has quit IRC07:14
*** BharatK has quit IRC07:16
*** coolsvap has joined #openstack-qa07:24
openstackgerritMerged openstack/tempest: Fix useless usage of Linux utils  https://review.openstack.org/19760707:24
*** hop|2 has joined #openstack-qa07:25
*** coolsvap has quit IRC07:25
*** dtantsur|afk is now known as dtantsur07:25
*** coolsvap|away is now known as coolsvap07:26
*** BharatK has joined #openstack-qa07:32
*** andreaf has quit IRC07:32
*** bnemec has quit IRC07:32
*** _afazekas has joined #openstack-qa07:33
*** e0ne has joined #openstack-qa07:33
openstackrecheckopenstack/horizon change: https://review.openstack.org/197847 failed because of: gate-grenade-dsvm: https://bugs.launchpad.net/bugs/146363107:33
openstackLaunchpad bug 1463631 in grenade "60_nova/resources.sh:106:ping_check_public fails intermittently" [Undecided,Confirmed]07:33
*** andreaf_ has joined #openstack-qa07:33
*** markus_z has joined #openstack-qa07:33
*** andreaf_ is now known as andreaf07:33
*** markus_z has quit IRC07:33
*** markus_z has joined #openstack-qa07:33
mkodererhop|2: why is https://review.openstack.org/#/c/189795/ not dependent on https://review.openstack.org/#/c/189687 ?07:33
*** afazekas has quit IRC07:33
*** bnemec has joined #openstack-qa07:33
*** laughterwym has quit IRC07:35
*** laughterwym has joined #openstack-qa07:35
*** e0ne has quit IRC07:36
*** yog__ has joined #openstack-qa07:36
hop|2mkoderer: what do you mean ? second patch just add missed option07:37
*** jordanP has joined #openstack-qa07:37
*** jlanoux has joined #openstack-qa07:38
*** coolsvap is now known as coolsvap|afk07:39
mkodererhop|2: it adds a function parameter that nobody is uses07:40
hop|2it is not used now, but I guess it must be in kwargs, just list of all features07:42
*** openstackstatus has quit IRC07:49
mkodererhop|2: maybe I missed something. but you are using 'config_drive' in https://review.openstack.org/#/c/18979507:50
mkodererhop|2: this parameter is ignored unless your patch is not dependent on https://review.openstack.org/#/c/18968707:50
mkoderers/is not/doesn't/07:50
*** safchain has joined #openstack-qa07:50
hop|2it's abandoned patch, just read comments there07:50
*** aix has joined #openstack-qa07:50
*** openstackstatus has joined #openstack-qa07:51
*** ChanServ sets mode: +v openstackstatus07:51
*** gmann has joined #openstack-qa07:52
mkodererhop|2: it's very confusing.. so to test 'config-driver' we need the new ssh-validation... but we already add the option for create_server and disallow the usage in the tests?07:55
*** dtantsur is now known as dtantsur|brb07:59
hop|2I just want to add missed option, without additional test, that's all. just thist patch https://review.openstack.org/#/c/189687/08:00
*** cdent has joined #openstack-qa08:00
*** laughterwym has quit IRC08:01
hop|2mkoderer: forget about https://review.openstack.org/#/c/189795/08:01
*** laughterwym has joined #openstack-qa08:02
*** binbincong has quit IRC08:03
*** k4n0 has joined #openstack-qa08:05
*** yog__ has quit IRC08:06
*** rossella_s has quit IRC08:09
*** tkammer has joined #openstack-qa08:11
*** rossella_s has joined #openstack-qa08:12
mkoderergmann: mtreinish: any opinion on https://review.openstack.org/#/c/189687/? I am ok if somebody overrules it :)08:16
*** yog__ has joined #openstack-qa08:18
openstackgerritKen'ichi Ohmichi proposed openstack/tempest: Merge list_servers_with_detail to list_servers  https://review.openstack.org/19780808:23
openstackgerritAndrea Frittoli  proposed openstack/tempest: Provide a full path top level to test discovery  https://review.openstack.org/19610708:25
openstackgerritKen'ichi Ohmichi proposed openstack/tempest: Merge list_servers_with_detail to list_servers  https://review.openstack.org/19780808:27
*** afazekas has joined #openstack-qa08:37
*** binbincong has joined #openstack-qa08:48
*** hichihara has quit IRC08:52
*** auld has quit IRC08:55
*** openstackgerrit has quit IRC08:57
*** openstackgerrit has joined #openstack-qa08:58
*** k4n0 has quit IRC08:58
*** jokke__ is now known as jokke_09:06
openstackgerritYaroslav Lobankov proposed openstack/tempest: Get rid of duplicated SSH connection config options  https://review.openstack.org/19265709:07
*** e0ne has joined #openstack-qa09:08
openstackgerritYaroslav Lobankov proposed openstack/tempest: Get rid of duplicated SSH connection config options  https://review.openstack.org/19265709:14
*** tochi has quit IRC09:20
*** annashen has joined #openstack-qa09:23
*** Poornima_K has joined #openstack-qa09:24
*** Poornima_K has quit IRC09:24
*** Poornima_K has joined #openstack-qa09:24
gmannmkoderer: I also have same opionion. it should land with some tests testing that config drive is really working fine.09:25
*** annashen has quit IRC09:27
*** gmann has quit IRC09:33
*** achanda_ has joined #openstack-qa09:35
*** shausy has quit IRC09:36
*** dkusidlo has joined #openstack-qa09:37
*** achanda has quit IRC09:38
*** achanda has joined #openstack-qa09:39
*** achanda_ has quit IRC09:42
*** dkusidlo has quit IRC09:43
*** dkusidlo has joined #openstack-qa09:43
*** tosky has joined #openstack-qa09:46
*** yamamoto has quit IRC09:50
openstackgerritChris Dent proposed openstack-dev/devstack: [WIP] Remove ceilometer in favor of plugin  https://review.openstack.org/19638309:53
*** dkusidlo has quit IRC09:56
*** BharatK has quit IRC09:58
*** yamamoto has joined #openstack-qa09:58
*** BharatK has joined #openstack-qa09:59
*** auld has joined #openstack-qa10:00
*** alex_xu has quit IRC10:06
*** hughsaunders has quit IRC10:07
*** hughsaunders has joined #openstack-qa10:07
*** alex_xu has joined #openstack-qa10:07
openstackgerritizadorozhna proposed openstack/tempest: Expanded assertion in test_create_token for keystone v2, v3  https://review.openstack.org/19012310:09
andreafmkoderer: thanks for your review on https://review.openstack.org/#/c/196107/, I addressed your comment (hopefully)10:10
openstackgerritMarian Horban proposed openstack-dev/devstack: Added processing /compute URL  https://review.openstack.org/19530010:10
*** k4n0 has joined #openstack-qa10:11
*** alex_xu has quit IRC10:15
*** alex_xu has joined #openstack-qa10:15
*** jlanoux_ has joined #openstack-qa10:18
*** jlanoux has quit IRC10:18
*** SergeyLukjanov has quit IRC10:22
*** mfalatic has quit IRC10:23
*** SergeyLukjanov2 has joined #openstack-qa10:23
*** SergeyLukjanov2 is now known as SergeyLukjanov10:23
*** k4n0 has quit IRC10:24
*** k4n0 has joined #openstack-qa10:24
*** dims_ has joined #openstack-qa10:25
*** Madan has quit IRC10:26
*** Poornima_K has quit IRC10:26
*** Poornima_K has joined #openstack-qa10:29
*** yamamoto has quit IRC10:31
*** Poornima_K has quit IRC10:35
*** rossella_s has quit IRC10:37
*** rossella_s has joined #openstack-qa10:37
openstackgerritizadorozhna proposed openstack/tempest: Added test_list_tenant non-admin test to test_tenants.py  https://review.openstack.org/19270910:39
*** apevec has joined #openstack-qa10:42
*** apevec has quit IRC10:42
*** apevec has joined #openstack-qa10:42
*** dtantsur|brb is now known as dtantsur10:54
openstackgerritMerged openstack/tempest: Get rid of duplicated creation of security groups in test_volume_boot_pattern  https://review.openstack.org/19805010:56
*** safchain has quit IRC10:57
cdentI'm very close to having the removal of ceilometer from devstack working: https://review.openstack.org/#/c/196383/10:58
cdentthe sticking point is that becuase ceilometer is built in to grenade in old but a plugin in new, things get confused, or I haven't set a proper knob somewhere. Can someone give me a hand? sdague, dtroyer ?10:59
*** tkammer has quit IRC11:06
openstackgerritizadorozhna proposed openstack/tempest: Added list_tenants non-admin test to identity/v3/test_tenants  https://review.openstack.org/19717411:06
openstackgerritizadorozhna proposed openstack/tempest: Added test_user_update_own_password tests for Identity v2, v3  https://review.openstack.org/19760011:09
*** yamamoto has joined #openstack-qa11:11
*** achanda has quit IRC11:13
*** dkusidlo has joined #openstack-qa11:14
*** BharatK has quit IRC11:15
*** achanda has joined #openstack-qa11:15
*** samueldmq has joined #openstack-qa11:19
*** dkusidlo has quit IRC11:26
*** dkusidlo has joined #openstack-qa11:27
*** safchain has joined #openstack-qa11:28
*** achanda has quit IRC11:29
mkodererandreaf: k +2 :)11:29
*** Poornima has quit IRC11:29
*** pal has joined #openstack-qa11:32
palafter installation of openstack I am getting this error 'ERROR: openstack Could not determine a suitable URL for the plugin' Can anyone help me11:33
*** dkusidlo has quit IRC11:38
*** dkusidlo has joined #openstack-qa11:46
*** dmorita has quit IRC11:46
*** hop|2 has quit IRC11:47
*** jaypipes has joined #openstack-qa11:54
*** ChanServ sets mode: +o jaypipes11:54
*** pal has quit IRC11:54
*** k4n0 has quit IRC12:03
*** e0ne is now known as e0ne_12:08
*** rfolco has joined #openstack-qa12:08
*** anshul has quit IRC12:10
*** e0ne_ is now known as e0ne12:12
*** aysyd has joined #openstack-qa12:18
*** mpaolino has joined #openstack-qa12:19
*** e0ne_ has joined #openstack-qa12:25
*** coolsvap|afk is now known as coolsvap|away12:27
*** gszasz has quit IRC12:27
*** e0ne has quit IRC12:28
*** gszasz has joined #openstack-qa12:28
openstackrecheckopenstack/tempest change: https://review.openstack.org/193376 failed because of: gate-tempest-dsvm-nova-v21-full: https://bugs.launchpad.net/bugs/1252947 https://bugs.launchpad.net/bugs/1355573 https://bugs.launchpad.net/bugs/145150612:41
openstackLaunchpad bug 1252947 in OpenStack Compute (nova) "libvirtError: Cannot recv data: Connection reset by peer" [Undecided,Confirmed]12:41
openstackLaunchpad bug 1355573 in grenade "grenade volume scenarios periodically fail /w SSHTimeout" [Undecided,New]12:41
openstackLaunchpad bug 1451506 in OpenStack Compute (nova) "spawn failed with "libvirtError: internal error: received hangup / error event on socket" in the gate" [Undecided,Confirmed]12:41
*** jordanP has quit IRC12:44
*** hogepodge has quit IRC12:46
*** VanL has joined #openstack-qa12:47
*** hogepodge has joined #openstack-qa12:48
*** Longgeek has quit IRC12:49
*** Longgeek has joined #openstack-qa12:49
openstackgerritJoseph Lanoux proposed openstack/tempest: Migrate compute tests to the ssh-auth-strategy  https://review.openstack.org/16550412:54
*** jaypipes is now known as leakypipes13:01
openstackgerritJoseph Lanoux proposed openstack/tempest: DO NOT MERGE - test ssh-auth-strategy in the gate  https://review.openstack.org/16920413:05
*** e0ne has joined #openstack-qa13:05
*** mriedem has quit IRC13:07
*** e0ne_ has quit IRC13:08
*** dpaterson has joined #openstack-qa13:08
*** _dpaterson has joined #openstack-qa13:11
*** nzeer has quit IRC13:12
*** nzeer has joined #openstack-qa13:12
*** Longgeek_ has joined #openstack-qa13:14
*** Longgeek_ has quit IRC13:15
*** Longgeek has quit IRC13:15
*** Longgeek has joined #openstack-qa13:16
*** dboik has joined #openstack-qa13:16
*** gszasz has quit IRC13:20
*** dboik has quit IRC13:20
*** neeti has quit IRC13:24
*** dpaterson has quit IRC13:27
*** dkusidlo has quit IRC13:27
*** VanL has quit IRC13:31
*** VanL has joined #openstack-qa13:34
*** kir has joined #openstack-qa13:34
*** dkusidlo has joined #openstack-qa13:35
openstackgerritJoseph Lanoux proposed openstack/tempest: Migrate compute tests to the ssh-auth-strategy  https://review.openstack.org/16550413:38
openstackgerritJoseph Lanoux proposed openstack/tempest: DO NOT MERGE - test ssh-auth-strategy in the gate  https://review.openstack.org/16920413:39
*** apevec has quit IRC13:41
*** jlanoux has joined #openstack-qa13:45
*** amotoki has quit IRC13:47
*** jlanoux_ has quit IRC13:48
*** achanda has joined #openstack-qa13:51
*** VanL has quit IRC14:03
*** VanL has joined #openstack-qa14:04
*** samueldmq has quit IRC14:05
*** VanL_ has joined #openstack-qa14:08
*** VanL has quit IRC14:08
*** samueldmq has joined #openstack-qa14:11
*** yamahata has joined #openstack-qa14:29
*** achanda has quit IRC14:31
*** rossella_s has quit IRC14:36
*** rossella_s has joined #openstack-qa14:37
*** VanL_ has quit IRC14:40
*** SridharG has left #openstack-qa14:41
*** e0ne is now known as e0ne_14:44
*** e0ne_ is now known as e0ne14:46
*** VanL has joined #openstack-qa14:47
*** sslypushenko has quit IRC14:49
*** VanL has quit IRC14:55
openstackgerritYaroslav Lobankov proposed openstack/tempest: Adding negative test cases for subnets  https://review.openstack.org/19839415:05
*** annashen has joined #openstack-qa15:07
*** artom has joined #openstack-qa15:09
openstackgerritYaroslav Lobankov proposed openstack/tempest: Adding negative test cases for subnets  https://review.openstack.org/19839415:10
*** achanda has joined #openstack-qa15:10
*** kbaikov has quit IRC15:13
*** dkusidlo has quit IRC15:13
*** cdent has quit IRC15:16
*** annashen has quit IRC15:18
*** yamamoto has quit IRC15:18
*** achanda has quit IRC15:22
*** afazekas has quit IRC15:26
*** bnemec has quit IRC15:27
*** yamamoto has joined #openstack-qa15:28
*** bnemec has joined #openstack-qa15:28
*** VanL has joined #openstack-qa15:31
*** davideagnello has joined #openstack-qa15:33
*** armax has joined #openstack-qa15:36
*** yog__ has quit IRC15:41
*** yfried__ has quit IRC15:44
*** marrusl has joined #openstack-qa15:45
*** e0ne has quit IRC15:45
*** amotoki has joined #openstack-qa15:49
*** VanL has quit IRC15:50
*** cody-somerville has joined #openstack-qa15:53
*** marrusl has quit IRC16:01
*** markus_z has quit IRC16:02
*** dtantsur is now known as dtantsur|afk16:04
*** armax has quit IRC16:04
*** jlanoux has quit IRC16:05
*** dims_ has quit IRC16:08
*** kir has quit IRC16:14
*** artom has quit IRC16:22
openstackgerritHirofumi Ichihara proposed openstack-dev/devstack: Set 0 to disable_ipv6 in sysctl  https://review.openstack.org/19842816:26
*** davideagnello has quit IRC16:30
*** achanda has joined #openstack-qa16:31
*** yamamoto has quit IRC16:32
*** yamamoto has joined #openstack-qa16:33
*** safchain has quit IRC16:34
*** gfidente has quit IRC16:36
*** achanda has quit IRC16:41
*** laughterwym has quit IRC16:49
*** tosky has quit IRC16:50
*** dims_ has joined #openstack-qa16:51
*** Sukhdev has joined #openstack-qa16:53
*** mpaolino has quit IRC16:54
*** tosky has joined #openstack-qa16:58
*** dims_ has quit IRC17:01
*** achanda has joined #openstack-qa17:15
openstackgerritYaroslav Lobankov proposed openstack/tempest: Adding negative test cases for subnets  https://review.openstack.org/19839417:18
*** mmedvede has joined #openstack-qa17:18
openstackgerritYaroslav Lobankov proposed openstack/tempest: Adding negative test cases for subnets  https://review.openstack.org/19839417:19
openstackgerritYaroslav Lobankov proposed openstack/tempest: Adding negative test cases for ports  https://review.openstack.org/19843617:24
*** tosky has quit IRC17:27
*** kaisers has quit IRC17:32
*** achanda has quit IRC17:36
*** erlon has joined #openstack-qa17:49
*** yamamoto has quit IRC17:49
*** achanda has joined #openstack-qa17:50
*** jecarey has joined #openstack-qa17:56
*** armax has joined #openstack-qa18:09
*** bkopilov has quit IRC18:09
*** _dpaterson has quit IRC18:10
*** boris-42 has quit IRC18:12
*** zigo has quit IRC18:18
*** bkopilov has joined #openstack-qa18:19
*** davideagnello has joined #openstack-qa18:19
*** zigo has joined #openstack-qa18:22
*** armax has quit IRC18:22
*** bnemec has quit IRC18:23
*** davideagnello has quit IRC18:23
*** bnemec has joined #openstack-qa18:24
*** bkopilov has quit IRC18:31
*** dkusidlo has joined #openstack-qa18:31
*** rfolco has quit IRC18:35
*** rfolco has joined #openstack-qa18:36
*** rossella_s has quit IRC18:36
*** rossella_s has joined #openstack-qa18:37
*** zhiyan has quit IRC18:41
*** zhiyan has joined #openstack-qa18:42
*** Sukhdev_ has joined #openstack-qa18:42
*** Sukhdev has quit IRC18:44
*** bkopilov has joined #openstack-qa18:46
*** rbak has joined #openstack-qa18:48
*** yamamoto has joined #openstack-qa18:50
*** yamamoto has quit IRC18:55
-openstackstatus- NOTICE: etherpad.openstack.org is offline for scheduled database maintenance, ETA 19:30 UTC19:04
*** ChanServ changes topic to "etherpad.openstack.org is offline for scheduled database maintenance, ETA 19:30 UTC"19:04
openstackgerritAndrea Frittoli  proposed openstack/tempest: Rename isolated creds to dynamic creds  https://review.openstack.org/18508019:06
*** achanda has quit IRC19:12
openstackgerritAndrea Frittoli  proposed openstack/tempest: Rename accounts to preprovisioned accounts  https://review.openstack.org/18508219:13
*** artom has joined #openstack-qa19:24
*** bkopilov has quit IRC19:26
-openstackstatus- NOTICE: etherpad.openstack.org is still offline for scheduled database maintenance, ETA 19:45 UTC19:32
*** ChanServ changes topic to "etherpad.openstack.org is still offline for scheduled database maintenance, ETA 19:45 UTC"19:32
*** bkopilov has joined #openstack-qa19:33
*** armax has joined #openstack-qa19:37
*** bkopilov has quit IRC19:42
*** ChanServ changes topic to "All Things QA..."19:53
*** bkopilov has joined #openstack-qa19:57
*** mpaolino has joined #openstack-qa19:58
*** davideagnello has joined #openstack-qa20:08
*** bkopilov has quit IRC20:11
*** davideagnello has quit IRC20:12
*** mpaolino has joined #openstack-qa20:20
*** Sukhdev_ has quit IRC20:23
*** bkopilov has joined #openstack-qa20:25
*** Longgeek has quit IRC20:44
*** Longgeek has joined #openstack-qa20:45
*** marrusl has joined #openstack-qa20:49
*** Longgeek has quit IRC20:49
*** mtanino has joined #openstack-qa21:01
*** rfolco has quit IRC21:03
openstackrecheckopenstack/ceilometer change: https://review.openstack.org/153949 failed because of: gate-tempest-dsvm-neutron-full: https://bugs.launchpad.net/bugs/135557321:04
openstackLaunchpad bug 1355573 in grenade "grenade volume scenarios periodically fail /w SSHTimeout" [Undecided,New]21:04
*** amotoki has quit IRC21:05
*** pglass has joined #openstack-qa21:09
*** aysyd has quit IRC21:11
*** Longgeek has joined #openstack-qa21:46
*** dkusidlo has quit IRC21:48
*** erlon has quit IRC21:50
*** mlavalle has joined #openstack-qa21:55
openstackgerritlifeless proposed openstack-dev/devstack: Fix library runs.  https://review.openstack.org/19818821:56
*** mmedvede has quit IRC21:56
*** davideagnello has joined #openstack-qa21:56
*** Longgeek has quit IRC21:58
*** davideagnello has quit IRC22:01
*** pglass has quit IRC22:16
*** rushiagr is now known as rushiagr_away22:23
*** jhenner has quit IRC22:25
*** dboik has joined #openstack-qa22:47
*** dboik has quit IRC22:51
*** Longgeek has joined #openstack-qa22:55
*** dims_ has joined #openstack-qa23:01
*** marrusl has quit IRC23:03
*** dims_ has quit IRC23:07
*** mlavalle has quit IRC23:12
*** dims_ has joined #openstack-qa23:14
*** Longgeek has quit IRC23:17
*** dims_ has quit IRC23:18
*** davideagnello has joined #openstack-qa23:45
*** davideagnello has quit IRC23:50
*** auld has quit IRC23:58
*** auld has joined #openstack-qa23:59

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