Friday, 2014-12-19

mtreinishranger81: all that error means is that python can't find the tempest code. What I'd recommend is with a new shell and using the default PYTHONPATH trying: 1. clone a new copy of the tempest repo from: git://git.openstack.org/openstack/tempest 2. copy your config file from the old repo into the new clone and 3. run ./run_tempest.sh from the new repo00:01
mtreinishI have a feeling your messing with a venv and PYTHONPATH manually has confused things, but without looking I can't be sure00:01
ranger81mtreinish: PYTHONPATH is empty in my system now00:01
*** mlavalle has quit IRC00:01
mtreinishoh ammend 3. to be ./run_tempest.sh -n00:02
mtreinishranger81: that's fine00:02
openstackgerritAndrew Lazarev proposed openstack/tempest: Added orchestration tests for sahara resources  https://review.openstack.org/14263200:03
ranger81mtreinish: thanks. Now tests are running. but they fail with InvalidConfiguration: Invalid Configuration . I will have to set correct identity uri etc. Let me do that00:10
*** dims__ has joined #openstack-qa00:14
hogepodgemtreinish I finally finished up a draft of that group doc generation patch for oslo. I marked it as WIP. I expect to iterate on it based on the style and needs of the oslo group. https://review.openstack.org/#/c/142935/200:15
mtreinishhogepodge: awesome, I'll take a look00:16
mtreinishjust an fyi if it's WIP I doubt anyone else will look at it00:16
hogepodgeOk, I'll remove the -1 then.00:16
hogepodgeI wondered about that.00:16
*** wuhg has joined #openstack-qa00:17
mtreinishhogepodge: the wip blocks the merge, most people will just use it to share prototype code instead of linking a github branch around or something else00:17
mtreinishit basically is used to say not ready for review00:17
mtreinishand I think most of the dashboard views ignore them00:18
mtreinishhogepodge: heh or the more common use case is to run tests on something so you don't have to setup a local env :)00:19
hogepodgeWell, I'm still not 100% on the tool actually working. Just unit testing, no integration testing.00:20
hogepodgeyup, does not work.  :-/ so WIP is the way to mark it00:22
hogepodgeI'm not a fan of how oslo-config-generator is mocking.00:24
*** Yingxin has joined #openstack-qa00:25
*** Masahiro has joined #openstack-qa00:25
mtreinishhogepodge: how is it doing it?00:28
hogepodgeIt's creating a bunch of mocks to test, but there's no point where it actually just pulls in a configuration namespace and generates a config from it.00:29
*** Masahiro has quit IRC00:29
hogepodgeSo I have to install some other project and run the config-generator to check integration tests00:30
hogepodge(which I just did, and it threw the exception I was afraid it would throw)00:30
*** ranger81_ has joined #openstack-qa00:31
*** ranger81 has quit IRC00:35
*** dmorita has joined #openstack-qa00:39
hogepodgemtreinish I thought I had hacked around the problem, but turns out it's deeper that I originally thought. Option objects are returned from the list_opts, but only group names are. In order to expose group help we need the group objects, but this would require significant effort across every project that uses oslo.conf00:39
hogepodgeI thought the groups might be registered globally, but that doesn't appear to be the case.00:40
mtreinishhogepodge: hmm, ok. Yeah every list_opts would have to be updated I guess.00:41
mtreinishand I guess it's not working with a complete CONF just what ever it gets in the tuple from list_opts00:42
hogepodgeyeah.00:42
hogepodgeKind of partially defeats the purpose of having a help string attached to the group.00:42
mtreinishhogepodge: I guess you could bring it up with the oslo team, to see how they want to proceed00:43
hogepodgeI'll do that.00:43
hogepodgeTomorrow. It's nearly beer:00, I mean 5:00 here.00:43
mtreinishpersonally I would have the generator accept both a string or a OptGroup object in the tuple and go from there00:44
mtreinishhogepodge: heh, sure. I'm already 2 beers in for today :)00:44
hogepodgemtreinish That seems to be the right way to go. That way nothing breaks but groups can update their projects to adopt the 'new' style.00:44
mtreinishyeah that's what I was thinking00:45
mtreinishhogepodge: thanks for driving this00:45
hogepodgeIt's a good learning experience wrt to oslo. Less so with tempest. That starts soon.00:45
hogepodgeI'm happy to do it. Feels good to be digging into core code after so much time in stackforge and operator land00:45
*** yamamoto has joined #openstack-qa00:49
hogepodgemtreinish it seems like something I should write up a spec for. you think so?00:50
hogepodgethanks for all your help by the way.00:50
mtreinishhogepodge: I would ping dhellmann about it tomorrow, see what he thinks. Every project has a different req for what needs a spec. I imagine this probably will00:52
mtreinishhogepodge: sure, np happy to help00:52
mtreinishsince it'll require an api change for using the configurator00:52
*** dims__ has quit IRC00:55
*** dims__ has joined #openstack-qa00:55
*** dims__ has quit IRC00:59
*** dims__ has joined #openstack-qa01:00
*** Masahiro has joined #openstack-qa01:01
*** yamamoto has quit IRC01:06
*** tosky has quit IRC01:06
vaidymtreinish, ping01:06
vaidymtreinish, i was trying it01:06
vaidymtreinish, but was unsuccessful01:06
vaidymtreinish, '((^tempest.api.compute.admin.test_flavors.FlavorsAdminTestJSON).(?!.\bcreate\b.*|list))'01:06
vaidymtreinish, i was trying to ignore create tests and run only list tests01:07
vaidymtreinish,  testr run '((^tempest.api.compute.admin.test_flavors.FlavorsAdminTestJSON).(?!.\bcreate\b.*|list))'01:07
*** markmcclain has joined #openstack-qa01:08
ranger81_mtreinish: all my tests fail - http://paste.openstack.org/show/152960/01:09
*** suneelb has quit IRC01:09
mtreinishvaidy: oh, what would be easier is to just do testr run list. That will only run tests which have list in the test id everything else will be skipped01:11
mtreinishvaidy: it just does a regex match for that string, the negative case is only needed if the you want to remove a subset from another filter01:12
vaidymtreinish, i feel there should be a better way to handle this.. because if we need to ignore different third party storage and networking components then my defaults tests needs to be ignored and that is going to be pain01:14
mtreinishranger81_: to get around that you need to set the lock_path in the DEFAULT section of you config file.01:16
vaidymtreinish, and also we need to have control over individual tests while we run them01:17
mtreinishranger81_: although arguably that's a bug in tempest that it fails like that without throwing a config error. If you want to open one here: https://bugs.launchpad.net/tempest01:17
mtreinishvaidy: I agree the testr exclude ui leaves something to be desired, we're working on getting around it with: https://review.openstack.org/134717 and https://review.openstack.org/13878501:18
mtreinishbut until that work is done there is a script from a triple-o project you can use to generate the regex easily01:19
mtreinishgive me a sec and I'll get you a link01:19
vaidymtreinish, sure01:19
mtreinishvaidy: https://github.com/openstack/tripleo-image-elements/blob/master/elements/tempest/tests2skip.py01:22
mtreinishvaidy: your other option is use testr run --load-list which will only run tests specified in a list file01:23
vaidyyeah i have tried the load list but i dont want to do that because i need to get the tests on runtime01:23
vaidymtreinish, so will tryout the regex script from triple-o01:24
mtreinishvaidy: for an example of how tripleo uses it in there tests see: https://github.com/openstack/tripleo-image-elements/blob/master/elements/tempest/bin/run-tempest#L12201:25
mtreinishsince it'll just print out a giant regex to stdout01:25
vaidymtreinish, makes sense01:29
vaidymtreinish, let me try it out01:29
*** markmcclain has quit IRC01:34
*** salv-orlando has quit IRC01:35
openstackgerritMerged openstack/tempest: Change neutron client methods to return one value and update tests  https://review.openstack.org/14115201:37
*** ranger81_ has quit IRC01:39
*** oomichi has joined #openstack-qa01:39
*** markmcclain has joined #openstack-qa01:42
*** amotoki has joined #openstack-qa01:52
*** oomichi has quit IRC01:55
*** mriedem has joined #openstack-qa02:02
*** shashankhegde has quit IRC02:10
*** adalbas has quit IRC02:14
*** yamamoto_ has joined #openstack-qa02:17
*** nosnos has joined #openstack-qa02:18
*** Stone07 has joined #openstack-qa02:31
*** salv-orlando has joined #openstack-qa02:36
*** salv-orlando has quit IRC02:41
*** rushiagr_away is now known as rushiagr02:49
openstackgerritDavanum Srinivas (dims) proposed openstack-infra/devstack-gate: Run post_test_hook even when GATE_RETVAL != 0  https://review.openstack.org/14296303:03
*** patrickeast has quit IRC03:08
*** ranger81 has joined #openstack-qa03:08
*** nosnos has quit IRC03:10
*** nosnos has joined #openstack-qa03:11
*** nosnos has quit IRC03:16
openstackgerritJamie Lennox proposed openstack-dev/devstack: Configure auth_token middleawre by auth plugin  https://review.openstack.org/14296703:23
*** ranger81 has quit IRC03:32
vaidymtreinish, ping03:33
*** mriedem has quit IRC03:43
*** ianw has quit IRC03:44
*** ianw has joined #openstack-qa03:44
*** melwitt has quit IRC03:44
*** harlowja_ is now known as harlowja_away03:51
*** dims__ has quit IRC04:00
*** dims__ has joined #openstack-qa04:01
*** rushiagr is now known as rushiagr_away04:02
*** nosnos has joined #openstack-qa04:02
*** dims__ has quit IRC04:05
*** ranger81 has joined #openstack-qa04:14
*** achanda has joined #openstack-qa04:20
*** Madan has joined #openstack-qa04:29
*** ranger81 has quit IRC04:29
*** markmcclain has quit IRC04:30
*** rushiagr_away is now known as rushiagr04:32
*** liusheng has quit IRC04:43
*** liusheng has joined #openstack-qa04:44
*** andreaf has quit IRC04:44
*** andreaf has joined #openstack-qa04:45
*** achanda has quit IRC04:48
*** chandankumar has joined #openstack-qa04:49
*** achanda has joined #openstack-qa04:49
openstackgerritxu-haiwei proposed openstack/tempest: Add test case for floating_ip response body  https://review.openstack.org/14298004:50
*** achanda has quit IRC04:53
openstackgerritJamie Lennox proposed openstack-dev/devstack: Configure auth_token middleawre by auth plugin  https://review.openstack.org/14296704:58
openstackgerritJamie Lennox proposed openstack-dev/devstack: Configure auth_token middleware by auth plugin  https://review.openstack.org/14296704:59
*** chandankumar has quit IRC05:00
*** SridharG has joined #openstack-qa05:06
*** ranger81 has joined #openstack-qa05:09
*** ranger81 has quit IRC05:09
*** salv-orlando has joined #openstack-qa05:26
*** salv-orlando has quit IRC05:31
openstackgerritvenkata anil proposed openstack/tempest: Avoid overlapping subnets in class NetworksTestJSON  https://review.openstack.org/13827305:33
*** anshul has joined #openstack-qa05:52
*** naggappan has joined #openstack-qa05:53
*** yamamoto_ has quit IRC06:01
*** ranger81_ has joined #openstack-qa06:07
*** dims__ has joined #openstack-qa06:09
*** vigneshvar has joined #openstack-qa06:11
*** shashankhegde has joined #openstack-qa06:11
*** dims__ has quit IRC06:13
*** pcrews has quit IRC06:16
*** chandankumar has joined #openstack-qa06:23
*** jamielennox is now known as jamielennox|away06:25
*** k4n0 has joined #openstack-qa06:30
*** SridharG has quit IRC06:32
*** shashankhegde has quit IRC06:44
*** pcaruana has joined #openstack-qa06:49
openstackgerritSergey Kraynev proposed openstack-dev/devstack: Adding installation Heat package after cloning  https://review.openstack.org/14204507:07
*** yamamoto_ has joined #openstack-qa07:08
*** spw is now known as sweston07:21
*** sweston is now known as sweston_away07:21
naggappani see that to run tempest we can use "tox",nosetest, testr . Which is the better one to use and which one does the community test use . Also i want to know how to create a virtual environment and runt the test from the virtual environment07:26
naggappani just need to test basic_ops scenarios07:26
*** neeti has joined #openstack-qa07:26
*** boris-42 has quit IRC07:33
*** yfried has quit IRC07:37
*** andreykurilin has joined #openstack-qa07:43
*** SridharG has joined #openstack-qa07:50
*** salv-orlando has joined #openstack-qa07:58
*** grafuls|gone is now known as grafuls07:59
*** salv-orlando has quit IRC08:03
*** ranger81_ has quit IRC08:04
*** ranger81 has joined #openstack-qa08:05
*** andreykurilin has quit IRC08:08
*** ranger81 has quit IRC08:09
*** yamamoto_ has quit IRC08:10
*** nosnos has quit IRC08:16
*** nosnos has joined #openstack-qa08:17
*** nosnos has quit IRC08:22
*** e0ne has joined #openstack-qa08:25
*** madhuri has joined #openstack-qa08:28
*** madhuri has quit IRC08:29
*** Longgeek has joined #openstack-qa08:31
openstackgerritSridhar Gaddam proposed openstack/tempest: Fix dhcpv6-stateful tempest test to validate only valid use-case  https://review.openstack.org/14301408:31
*** salv-orlando has joined #openstack-qa08:35
*** yamamoto_ has joined #openstack-qa08:37
*** e0ne has quit IRC08:38
*** SridharG has quit IRC08:38
*** jlanoux has joined #openstack-qa08:41
chandankumargmann: Hello08:44
chandankumargmann: i am trying to reporduce the issue https://bugs.launchpad.net/tempest/+bug/1334297 on devstack08:45
*** yamamoto_ has quit IRC08:46
chandankumarby running the tests tempest.api.compute.server.test_server_group08:46
chandankumarbut not able to reproduce the issue08:47
chandankumargmann: as per the bug delete call for os-server-group is not giving expected http response08:48
chandankumari have checked the rest client code,08:48
chandankumarbut not able to figure out what is the issue08:48
chandankumarplease help me on this,08:48
*** yamamoto_ has joined #openstack-qa08:50
*** dbel_ has quit IRC08:54
gmannchandankumar: let me check08:55
*** mcornea has joined #openstack-qa08:56
*** gfidente has joined #openstack-qa08:57
*** mpaolino has joined #openstack-qa08:58
gmannchandankumar, yes, that bug occurred due to some other bug in tempest, where delete server group call was not correct08:59
*** jpich has joined #openstack-qa09:00
gmannchandankumar, https://review.openstack.org/#/c/102333/09:04
chandankumargmann: but the link which is linked to it https://bugs.launchpad.net/tempest/+bug/1333965 is fixed09:04
chandankumars/link/bug09:05
*** ranger81 has joined #openstack-qa09:06
gmannchandankumar, when server group delete was called with bad request (passing body instead of id), 200 status code comes in tempest rest client09:06
*** armax has quit IRC09:07
gmannchandankumar, so if you want to reproduce this issue you can pass body in delete server group call09:07
gmannchandankumar, cyeoh has written a very good analysis there, please refer that09:08
*** yamamoto_ has quit IRC09:08
chandankumargmann: got that09:08
chandankumargmann: let me reproduce that and send a fix for that :)09:08
chandankumargmann: Thanks :)09:08
gmannchandankumar, cool :)09:08
*** yamamoto has joined #openstack-qa09:09
*** yamamoto has quit IRC09:10
openstackgerritAbhishek G M proposed openstack/tempest: Router test enhancements  https://review.openstack.org/13957109:12
*** yamamoto has joined #openstack-qa09:15
*** jordanP has joined #openstack-qa09:17
*** dmorita has quit IRC09:17
openstackgerrityalei wang proposed openstack-dev/devstack: recheck LIBS_FROM_GIT when RECLONE=yes  https://review.openstack.org/14302009:21
openstackgerrityalei wang proposed openstack-dev/devstack: recheck LIBS_FROM_GIT when RECLONE=yes  https://review.openstack.org/14302009:24
*** yamamoto has quit IRC09:25
openstackgerrityalei wang proposed openstack-dev/devstack: recheck LIBS_FROM_GIT when RECLONE=yes  https://review.openstack.org/14302009:26
naggappanhi has any one ran tempest for opensuse. when i try to install test-requirements.txt and requirements.txt it throughs me gcc compilation error09:26
*** rdekel has joined #openstack-qa09:29
*** david-ly_ has quit IRC09:32
*** aix has joined #openstack-qa09:33
*** rdekel has quit IRC09:33
*** david-lyle has joined #openstack-qa09:33
openstackgerritPeter Penchev proposed openstack-dev/devstack: Actually run all the Cinder cert tests.  https://review.openstack.org/14302209:35
*** e0ne has joined #openstack-qa09:35
*** david-lyle has quit IRC09:38
*** zz_johnthetubagu is now known as johnthetubaguy09:39
*** dimtruck is now known as zz_dimtruck09:42
*** dims__ has joined #openstack-qa09:46
*** dims__ has quit IRC09:50
*** andreaf has quit IRC10:05
*** andreaf has joined #openstack-qa10:05
*** ranger81 has quit IRC10:05
*** neeti has quit IRC10:11
*** neeti has joined #openstack-qa10:14
*** subscope has joined #openstack-qa10:14
*** tochi has quit IRC10:16
*** Longgeek has quit IRC10:23
*** Longgeek has joined #openstack-qa10:23
*** yamamoto has joined #openstack-qa10:25
*** yamamoto has quit IRC10:31
kashyapOn a fresh setup, is there a way I can ask DevStack to setup everything only via pip (and not use any packaging system?)10:48
* kashyap reads the local.conf file, etc meanwhile10:48
*** Masahiro has quit IRC10:59
*** aix has quit IRC11:00
*** vigneshvar has quit IRC11:10
*** vigneshvar has joined #openstack-qa11:12
openstackgerritKen'ichi Ohmichi proposed openstack/tempest: Add IdentityV3Client for cleanup  https://review.openstack.org/14238711:14
openstackgerritKen'ichi Ohmichi proposed openstack/tempest: Add VolumeClient for cleanup  https://review.openstack.org/14238511:14
openstackgerritKen'ichi Ohmichi proposed openstack/tempest: Add ObjectStorageClient for cleanup  https://review.openstack.org/14238411:14
openstackgerritKen'ichi Ohmichi proposed openstack/tempest: Add ComputeClient for cleanup  https://review.openstack.org/14130811:14
*** aix has joined #openstack-qa11:21
*** aysyd has joined #openstack-qa11:23
*** mpaolino has quit IRC11:29
*** adalbas has joined #openstack-qa11:34
*** dims__ has joined #openstack-qa11:37
*** yamamoto has joined #openstack-qa11:42
*** e0ne is now known as e0ne_11:42
*** e0ne_ is now known as e0ne11:46
*** gszasz has joined #openstack-qa11:46
*** yamamoto has quit IRC11:47
openstackgerritJoe Hakim Rahme proposed openstack/tempest: Improves documentation formatting of cleanup.py  https://review.openstack.org/14305711:56
*** Masahiro has joined #openstack-qa11:59
*** mwagner_lap has quit IRC12:04
*** Masahiro has quit IRC12:04
*** dims__ has quit IRC12:05
*** andreaf has quit IRC12:06
*** andreaf has joined #openstack-qa12:08
*** jhenner has joined #openstack-qa12:09
*** dims__ has joined #openstack-qa12:10
openstackgerritsarad patel proposed openstack-dev/devstack: Fix typo errors in devstack documentation  https://review.openstack.org/14306512:11
*** Madan has quit IRC12:13
*** subscope has quit IRC12:21
*** jaypipes has quit IRC12:22
*** k4n0 has quit IRC12:23
*** vigneshvar has quit IRC12:23
*** Stone07 has quit IRC12:23
*** e0ne is now known as e0ne_12:27
*** vigneshvar has joined #openstack-qa12:28
*** andreaf has quit IRC12:28
*** tkammer has joined #openstack-qa12:33
*** jordanP has quit IRC12:35
*** jordanP has joined #openstack-qa12:35
*** e0ne_ has quit IRC12:37
openstackgerritRajkumar proposed openstack/tempest:  Test port update with new security group  https://review.openstack.org/14241412:44
*** tteggel_ has quit IRC12:45
*** aysyd has quit IRC12:46
*** tteggel has joined #openstack-qa12:47
*** aysyd has joined #openstack-qa12:47
*** neeti has quit IRC12:48
*** cdent has joined #openstack-qa12:55
openstackgerritMerged openstack/tempest: Add IdentityV3Client for cleanup  https://review.openstack.org/14238712:59
*** Masahiro has joined #openstack-qa13:01
*** mpaolino has joined #openstack-qa13:02
*** Masahiro has quit IRC13:06
openstackgerritSean Dague proposed openstack-dev/devstack: Implement devstack external plugins  https://review.openstack.org/14280513:09
openstackgerritSean Dague proposed openstack-dev/devstack: WIP: attempt to test plugin interface  https://review.openstack.org/14281513:09
*** Ananci has joined #openstack-qa13:12
*** safchain has joined #openstack-qa13:13
*** e0ne has joined #openstack-qa13:21
*** salv-orlando has quit IRC13:28
openstackgerritJoseph Lanoux proposed openstack/tempest: Change volume client methods to return one value  https://review.openstack.org/14280913:34
*** vigneshvar has quit IRC13:34
openstackgerritDonagh McCabe proposed openstack-dev/devstack: Allow swift keystoneauth reseller_prefix in sample file  https://review.openstack.org/14308513:35
*** boris-42 has joined #openstack-qa13:38
*** yamamoto has joined #openstack-qa13:44
*** SridharG has joined #openstack-qa13:45
*** dkranz has joined #openstack-qa13:49
*** yamamoto has quit IRC13:49
cdentsdague++13:49
*** gszasz has quit IRC13:51
openstackgerritDonald Stufft proposed openstack-dev/devstack: WIP - DO NOT MERGE - Test pre-release pip  https://review.openstack.org/14309413:56
*** fandi has joined #openstack-qa13:59
kashyapcdent, Hey,  if you have a minute -14:02
cdentI probably do, what's up kashyap ?14:02
kashyapcdent, By any chance do you if it's possible to setup everything in DevStack (a minimal setup) with just pip and no package manager involved?14:03
kashyapI doubt that - since I was told there's possible some non-python RPMs (at-least on Fedora) are needed  - so it can't possibly be done via just 'pip'14:03
cdentI don't _think_ so, but I'm not certain.14:03
kashyapRight, thanks for the response14:04
cdentIt certainly does use either apt or yum a great deal14:05
cdentto get databases, apache, etc14:05
cdentIf you already have all that stuff I suppose there would be a way to just skip that part14:05
cdentbut all its binary dependencies are checked via package handling14:06
cdentWhat are you hoping to do kashyap ?14:06
* kashyap reading the scroll now.14:06
*** achanda has joined #openstack-qa14:06
kashyapcdent, Yeah, yeah, it does. I use DevStack exclusively in my testing14:06
kashyape.g.14:07
kashyapFor a minimal Fedora 21, *without* setting up DevStack, total number of RPMS:14:07
kashyap28614:07
kashyap*After* setting up DevStack, the number goes to:  675 (!)14:07
kashyapcdent, My goal is to create as minimal a footprint disk image *with* DevStack :-)14:08
kashyapcdent, If you're interested, I can let you know what I end up with.14:08
* kashyap goes out for a walk - fresh air time14:08
cdentYeah, please do, I'm curious.14:08
cdentdevstack definitely errs on the side of fecundity14:09
*** dims__ has quit IRC14:12
*** dims__ has joined #openstack-qa14:12
*** dims__ has quit IRC14:16
*** mpaolino has quit IRC14:17
*** enikanorov has joined #openstack-qa14:17
*** chandankumar has quit IRC14:25
*** andreaf has joined #openstack-qa14:25
*** salv-orlando has joined #openstack-qa14:29
openstackgerritSergey Shnaidman proposed openstack/tempest: Support for IPv6 for API (part 2)  https://review.openstack.org/13723914:29
*** mpaolino has joined #openstack-qa14:30
sergshafazekas_pto, mtreinish, take a look at short test, please, in your time: https://review.openstack.org/#/c/136316/14:32
sergshdkranz, andreaf, can you please re-review the fixed blueprint? https://review.openstack.org/#/c/135896/14:34
*** salv-orlando has quit IRC14:34
*** anshul has quit IRC14:36
dkranzsergsh: Yes14:36
*** jaypipes has joined #openstack-qa14:37
*** ChanServ sets mode: +o jaypipes14:37
*** rushiagr is now known as rushiagr_away14:38
*** jaypipes is now known as leakypipes14:41
*** achanda has quit IRC14:41
*** sergsh is now known as sergsh_away14:45
*** kirshil has quit IRC14:46
*** mpaolino has quit IRC14:46
*** dansmith is now known as superdan14:50
*** Masahiro has joined #openstack-qa14:50
*** Masahiro has quit IRC14:55
openstackgerritMerged openstack-infra/devstack-gate: Add manila and python-manilaclient to the projects list  https://review.openstack.org/13413514:57
jlanouxHi. I'm seeing the deployment of Devstack failing with: Endpoint type data_processing is available, service sahara should be set as available in the config file.15:00
jlanouxSame error message with Trove and Heat.15:01
jlanouxAnyobdy else seeing that?15:01
mtreinishjlanoux: do you have a paste of the traceback? it sounds to me like the verify_tempest_config call in devstack's lib/tempest is failing15:02
mtreinishjlanoux: there should be a tempest.log saved where you ran stack.sh from if that's the case15:02
*** rbak has joined #openstack-qa15:02
jlanouxmtreinish: http://logs.openstack.org/09/142809/2/check/check-tempest-dsvm-full/4fb2fce/logs/devstacklog.txt.gz15:03
jlanouxmtreinish: at the end15:03
mtreinishjlanoux: yep, it's because you're changing the volume extension client without updating the verify_tempest_config script. You need to update here too in your patch: http://git.openstack.org/cgit/openstack/tempest/tree/tempest/cmd/verify_tempest_config.py#n16315:05
mtreinishjlanoux: also if you get a sec it's probably worth adding on to devstack-gate to capture the tempest log file from the devstack dir and copy it over as well15:06
jlanouxmtreinish: oh ok - thank you very much!15:06
mtreinishbecause I just figured that out by reading your patch, not from the logs...15:07
jlanouxmtreinish: ok15:07
*** SridharG has quit IRC15:09
*** e0ne is now known as e0ne_15:13
*** e0ne_ is now known as e0ne15:14
*** esmute has quit IRC15:14
*** rushiagr_away is now known as rushiagr15:16
openstackgerritClaudiu Belu proposed openstack/tempest: Enhanced connectivity check using multiple protocols  https://review.openstack.org/11752015:16
openstackgerritJoseph Lanoux proposed openstack/tempest: Change volume client methods to return one value  https://review.openstack.org/14280915:18
*** esmute has joined #openstack-qa15:18
*** yamamoto has joined #openstack-qa15:25
openstackgerritClaudiu Belu proposed openstack/tempest: Adds Telemetry compute metrics collection scenario  https://review.openstack.org/14075015:32
*** naggappan has quit IRC15:33
openstackgerritPrzemyslaw Czesnowicz proposed openstack-dev/devstack: Fix add default images to IMAGE_URLS  https://review.openstack.org/14311315:35
*** achanda has joined #openstack-qa15:35
openstackgerritJoseph Lanoux proposed openstack/tempest: Change volume client methods to return one value  https://review.openstack.org/14280915:42
*** yamamoto has quit IRC15:48
openstackgerritJoseph Lanoux proposed openstack/tempest: Change volume client methods to return one value  https://review.openstack.org/14280915:52
*** eezhova has quit IRC15:54
*** enikanorov_ has quit IRC15:54
*** zz_dimtruck is now known as dimtruck15:55
*** ilyashakhat has quit IRC15:55
*** eezhova has joined #openstack-qa15:58
*** sabeen has joined #openstack-qa15:58
*** pcaruana has quit IRC15:59
*** atiwari has joined #openstack-qa16:01
*** ilyashakhat has joined #openstack-qa16:01
*** enikanorov_ has joined #openstack-qa16:01
mtreinishvaidy: pong16:06
*** mcornea has quit IRC16:08
*** chandankumar has joined #openstack-qa16:15
*** pcrews has joined #openstack-qa16:15
*** tkammer has quit IRC16:17
*** chandankumar has quit IRC16:22
*** dims__ has joined #openstack-qa16:24
*** dims__ has quit IRC16:24
*** dims__ has joined #openstack-qa16:24
openstackgerritJoseph Lanoux proposed openstack/tempest: Change volume client methods to return one value  https://review.openstack.org/14280916:25
*** adalbas has quit IRC16:26
*** bnemec is now known as beekneemech16:31
*** grafuls is now known as grafuls|gone16:31
*** boris-42 has quit IRC16:33
*** chandankumar has joined #openstack-qa16:36
*** safchain has quit IRC16:36
*** salv-orlando has joined #openstack-qa16:36
*** grafuls|gone has quit IRC16:37
*** Masahiro has joined #openstack-qa16:39
*** Masahiro has quit IRC16:43
*** SridharG has joined #openstack-qa16:46
*** SridharG has left #openstack-qa16:46
*** yamamoto has joined #openstack-qa16:48
*** yamamoto has quit IRC16:53
*** dims__ is now known as dimsum__16:56
*** Ananci has quit IRC16:56
*** e0ne is now known as e0ne_16:58
*** e0ne_ is now known as e0ne16:59
*** jlanoux has quit IRC17:00
*** e0ne has quit IRC17:01
openstackgerritEmily Hugenbruch proposed openstack/tempest: Split resource_setup for security-group tests  https://review.openstack.org/14290917:03
openstackgerritEmily Hugenbruch proposed openstack/tempest: Update compute base test to split up resource_setup  https://review.openstack.org/14142417:03
*** achanda has quit IRC17:04
*** adalbas has joined #openstack-qa17:05
*** achanda has joined #openstack-qa17:07
*** shashankhegde has joined #openstack-qa17:08
*** sweston_away is now known as spw17:17
*** jordanP has quit IRC17:18
*** jpich has quit IRC17:21
*** Sukhdev has joined #openstack-qa17:24
openstackgerritMatthew Treinish proposed openstack-infra/devstack-gate: Copy tempest.log from verify-tempest-config  https://review.openstack.org/14314217:25
mtreinishjlanoux: ^^^17:26
*** achanda has quit IRC17:28
*** achanda has joined #openstack-qa17:28
*** aix has quit IRC17:30
*** achanda has quit IRC17:33
*** melwitt has joined #openstack-qa17:35
*** atiwari has quit IRC17:37
*** suneelb has joined #openstack-qa17:39
*** achanda has joined #openstack-qa17:40
*** armax has joined #openstack-qa17:45
*** mwagner_lap has joined #openstack-qa17:50
*** salv-orlando has quit IRC17:50
*** mlavalle has joined #openstack-qa17:51
*** melwitt has quit IRC17:51
*** melwitt has joined #openstack-qa17:52
*** anshul has joined #openstack-qa17:55
*** johnthetubaguy is now known as zz_johnthetubagu18:00
openstackgerritMerged openstack/tempest: Reorder setup and cleanup functions for readability  https://review.openstack.org/14258418:04
*** harlowja_away is now known as harlowja_18:05
*** gfidente has quit IRC18:06
*** Ananci has joined #openstack-qa18:07
*** luqas has quit IRC18:09
*** dmellado has joined #openstack-qa18:10
*** cdent has quit IRC18:17
*** markmcclain has joined #openstack-qa18:22
*** Masahiro has joined #openstack-qa18:27
*** Masahiro has quit IRC18:32
*** melwitt has quit IRC18:37
*** melwitt has joined #openstack-qa18:37
*** e0ne has joined #openstack-qa18:41
*** ranger81 has joined #openstack-qa18:43
*** salv-orl_ has joined #openstack-qa18:44
*** toure_ has joined #openstack-qa18:45
*** salv-orl_ has quit IRC18:47
*** salv-orlando has joined #openstack-qa18:48
*** salv-orlando has quit IRC18:50
*** salv-orlando has joined #openstack-qa18:51
*** patrickeast has joined #openstack-qa18:55
*** toure_ has quit IRC18:55
openstackgerritKyle Mestery proposed openstack-dev/devstack: Update the default ODL to Helium SR1.1  https://review.openstack.org/14315518:56
ranger81All my tempest tests fail with error - AttributeError: 'NoneType' object has no attribute 'endswith'18:57
ranger81can anyone help with my problem?19:00
*** openstack has joined #openstack-qa19:09
*** dougwig has joined #openstack-qa19:09
*** openstackstatus has joined #openstack-qa19:10
*** ChanServ sets mode: +v openstackstatus19:10
*** Sukhdev_ has joined #openstack-qa19:20
*** Sukhdev has quit IRC19:21
openstackgerritMatthew Treinish proposed openstack/tempest: Add support for roles to credentials providers  https://review.openstack.org/14315919:25
mtreinishandreaf: ^^^ I got a little bored so I started to doodle on that19:25
openstackgerritEmily Hugenbruch proposed openstack/tempest: Update compute base test to split up resource_setup  https://review.openstack.org/14142419:27
openstackgerritEmily Hugenbruch proposed openstack/tempest: Split resource_setup for limit tests  https://review.openstack.org/14316019:27
*** e0ne has quit IRC19:27
rushiagrcan somebody make me happy for this weekend by reviewing this? https://review.openstack.org/#/c/142732/ is a small dozen-line patch.. just cleans up some tests which are causing failures on my nova patches...19:28
rushiagrthanks :)19:29
openstackgerritDavanum Srinivas (dims) proposed openstack-infra/devstack-gate: WIP: Just checking if any jobs fail with ImportError in zuul_swift_upload.py  https://review.openstack.org/14316119:29
openstackgerritDavanum Srinivas (dims) proposed openstack-infra/devstack-gate: WIP: Just checking if any jobs fail with ImportError in zuul_swift_upload.py  https://review.openstack.org/14316119:30
*** ranger81 has quit IRC19:33
*** melwitt1 has quit IRC19:35
*** ranger81 has joined #openstack-qa19:36
*** melwitt has joined #openstack-qa19:36
*** melwitt has joined #openstack-qa19:37
*** melwitt has quit IRC19:38
*** melwitt has joined #openstack-qa19:39
*** achanda has quit IRC19:40
*** chandankumar has quit IRC19:43
*** yamamoto has joined #openstack-qa19:51
ranger81mtreinish: Can you look into my problem with tempest?19:53
*** rushiagr is now known as rushiagr_away19:55
*** yamamoto has quit IRC19:56
*** tkammer has quit IRC20:05
*** ranger81_ has joined #openstack-qa20:05
*** ranger81 has quit IRC20:08
openstackgerritMerged openstack-dev/devstack: Comment option to enable Setuptools warnings  https://review.openstack.org/14285520:10
*** Masahiro has joined #openstack-qa20:16
*** e0ne has joined #openstack-qa20:20
*** Longgeek has quit IRC20:20
*** Masahiro has quit IRC20:20
*** Longgeek has joined #openstack-qa20:22
*** Longgeek has quit IRC20:27
*** suneelb1 has quit IRC20:33
*** e0ne has quit IRC20:34
*** salv-orlando has quit IRC20:36
*** melwitt has quit IRC20:43
*** hemnafk is now known as hemna20:50
*** andreykurilin_ has joined #openstack-qa20:53
*** andreykurilin_ has quit IRC21:02
*** andreykurilin_ has joined #openstack-qa21:02
*** salv-orlando has joined #openstack-qa21:03
*** aysyd has quit IRC21:10
mtreinishranger81_: what problem with tempest21:14
*** sabeen1 has joined #openstack-qa21:18
*** sabeen has quit IRC21:18
*** Sukhdev_ has quit IRC21:19
*** ranger81_ has quit IRC21:23
*** ranger81_ has joined #openstack-qa21:35
*** ranger8__ has joined #openstack-qa21:36
*** ranger81_ has quit IRC21:36
*** ranger81 has joined #openstack-qa21:38
*** ranger81_ has joined #openstack-qa21:39
*** ranger___ has joined #openstack-qa21:40
*** ranger8__ has quit IRC21:41
*** ranger___ has quit IRC21:42
*** ranger8__ has joined #openstack-qa21:42
*** ranger81_ has quit IRC21:42
*** ranger81 has quit IRC21:43
*** ranger81 has joined #openstack-qa21:43
*** dkranz has quit IRC21:46
*** ranger8__ has quit IRC21:46
*** ranger81 has quit IRC21:47
*** ranger81 has joined #openstack-qa21:49
*** ranger81_ has joined #openstack-qa21:51
*** ranger8__ has joined #openstack-qa21:52
*** ranger81 has quit IRC21:54
*** ranger81_ has quit IRC21:54
*** ranger8__ has quit IRC21:54
*** ranger81_ has joined #openstack-qa21:55
*** ranger81_ has quit IRC21:56
*** Ananci has quit IRC21:57
*** ranger81 has joined #openstack-qa21:57
*** ranger81 has quit IRC21:57
*** ranger81 has joined #openstack-qa21:58
*** ranger81 has quit IRC22:02
*** Masahiro has joined #openstack-qa22:05
*** ranger81 has joined #openstack-qa22:07
*** Masahiro has quit IRC22:09
*** shashankhegde has quit IRC22:11
ranger81mtreinish: I get the error - http://paste.openstack.org/show/153292/22:12
*** ajo_ has quit IRC22:13
mtreinishranger81: that means you didn't specify any credentials (or invalid/incomplete set of creds) in the configuration file22:15
*** sabeen1 has quit IRC22:18
*** dimsum__ has quit IRC22:23
*** andreykurilin_ has quit IRC22:29
*** btully has quit IRC22:43
*** shashankhegde has joined #openstack-qa22:44
*** yamamoto has joined #openstack-qa22:53
ranger81mtreinish: my conf file is here - http://paste.openstack.org/show/153307/ can you please take a quick look22:55
*** yamamoto has quit IRC22:58
*** jordanP has joined #openstack-qa22:59
*** jordanP has quit IRC22:59
mtreinishranger81: so your missing the tenant name for the regular user23:03
mtreinishranger81: also if your using admin you should enable tenant_isolation in the auth section23:04
ranger81mtreninish; Just fyi, I am running tempest in my dev machine and openstack is running in different host. I hope this setup should work. Please confirm23:05
mtreinishranger81: yeah thats fine. Tempest is designed to support that use case23:06
andreafmtreinish: cool :)23:06
ranger81mtreninish: under which section tenant name for regular use is given23:07
mtreinishranger81: identity, and the field is tenant_name23:08
*** ajo has joined #openstack-qa23:10
ranger81mtreinish: I gave tenant_name = admin because that is the project I am working on , but still it fails23:10
mtreinishranger81: and password too23:10
ranger81mtreinish: did not help23:12
ranger81mtreinish: It will be good to have a sample conf file with all values conifgured somewhere23:13
mtreinishranger81: you can't because they're deployment specific23:14
mtreinishthe sample config outlines all the options23:14
mtreinishlet me pull a devstack example for you so you can see what's in a working config23:14
mtreinishranger81: http://logs.openstack.org/59/143159/1/check/check-tempest-dsvm-full/279d217/logs/tempest_conf.txt.gz23:15
ranger81mtreinish: http://paste.openstack.org/show/153319/ what else could I be missing23:15
ranger81I am using port 35357 in uri23:16
ranger81whereas your link has 5000 uri = http://127.0.0.1:5000/v2.0/23:16
mtreinishranger81: it depends on the port your keystone is running on23:17
ranger81mtreinish: admin is 35357..so it should be fine23:19
*** Longgeek has joined #openstack-qa23:23
*** Longgeek has quit IRC23:23
mtreinishranger81: are you still getting the same traceback as before?23:24
*** ranger81_ has joined #openstack-qa23:24
mtreinishthe invalid configuration raised on L564 of auth.py?23:24
*** ranger81 has quit IRC23:24
ranger81_mtreinish: yes23:25
*** ranger81_ has left #openstack-qa23:26
*** ranger81_ has joined #openstack-qa23:26
mtreinishranger81_: that only appears if you have a required credential field not set23:27
mtreinishranger81_: look at the auth section in the link I pasted above and see if you're missing any credential fields23:27
ranger81_mtreinish: ok23:28
mtreinishsorry the identity section23:28
*** salv-orlando has quit IRC23:29
*** salv-orlando has joined #openstack-qa23:31
*** fandi has quit IRC23:32
openstackgerritMatthew Treinish proposed openstack/tempest: Add support for roles to credentials providers  https://review.openstack.org/14315923:39
ranger81_mtreinish: after setting isolation, test started running. Now they fail with different error -23:39
ranger81_  File "/home/arun/tempest1/tempest/tempest/common/rest_client.py", line 503, in _error_checker23:39
ranger81_    raise exceptions.Conflict(resp_body)23:39
ranger81_Conflict: An object with that identifier already exists23:39
ranger81_Details: {u'message': u'Conflict occurred attempting to store role - Duplicate Entry', u'code': 409, u'title': u'Conflict'}23:39
mtreinishranger81_: which test?23:39
*** ajo has quit IRC23:40
ranger81_I ran "testr run --parallel"23:40
ranger81_even if I run single test, it fails with same error23:40
ranger81_Conflict: An object with that identifier already exists23:40
*** dimsum__ has joined #openstack-qa23:41
mtreinishranger81_: I can't help you debug that if I don't know what is making the api call that recieved a 409 response23:42
mtreinishranger81_: can you check the tempest.log file23:42
ranger81_mtreinish: where does it log23:42
mtreinishranger81_: it's specified in the config file with the log_file option23:44
mtreinishif you didn't specify one I think it doesn't log correctly23:44
ranger81_let me specify23:45
openstackgerritMatthew Treinish proposed openstack/tempest: Improve error message on exception raised by get_default  https://review.openstack.org/14321923:49
*** Masahiro has joined #openstack-qa23:54
*** Masahiro has quit IRC23:58

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