*** yamamoto has joined #openstack-rally | 00:03 | |
*** yamamoto has quit IRC | 00:08 | |
*** kambiz has quit IRC | 00:10 | |
*** kambiz has joined #openstack-rally | 00:13 | |
*** itlinux has quit IRC | 00:17 | |
openstackgerrit | chenhb proposed openstack/rally master: WIP: add more debug msg to cli tests https://review.openstack.org/485519 | 00:31 |
---|---|---|
*** LindaWang has joined #openstack-rally | 00:42 | |
*** dave-mccowan has joined #openstack-rally | 00:57 | |
*** jkilpatr has quit IRC | 00:58 | |
*** dave-mcc_ has joined #openstack-rally | 01:00 | |
*** itlinux has joined #openstack-rally | 01:02 | |
*** dave-mccowan has quit IRC | 01:02 | |
openstackgerrit | zhangzhihui proposed openstack/rally master: Add nova.BootServerAttachVolumeAndUpdateAttachment scenario https://review.openstack.org/418171 | 01:28 |
openstackgerrit | Ma Xinjian proposed openstack/rally master: Add NovaServerGroups.create_and_delete_server_group https://review.openstack.org/436429 | 01:44 |
*** ilbot3 has quit IRC | 01:46 | |
*** ilbot3 has joined #openstack-rally | 01:49 | |
*** itlinux has quit IRC | 01:49 | |
*** itlinux has joined #openstack-rally | 02:04 | |
openstackgerrit | Ma Xinjian proposed openstack/rally master: Add NovaServerGroups.create_and_delete_server_group https://review.openstack.org/436429 | 02:19 |
rallydev-bot | [From Gitter] shihai1991 : @andreykurilin Hi, andrey. Do you know OpenStack Performance Work-Group's job content? | 02:33 |
rallydev-bot | [From Gitter] shihai1991 : Do they have the SLO's goal? | 02:33 |
*** yamamoto has joined #openstack-rally | 02:36 | |
*** dave-mcc_ has quit IRC | 02:42 | |
*** r-daneel has joined #openstack-rally | 03:07 | |
*** yamamoto has quit IRC | 03:08 | |
r-daneel | hi all, just saw that rally now can run with 'ordinary' users. I created a setup from scratch and added a deployment with --fromenv. do I need to build a configuration file to benefit from that mode ? | 03:12 |
r-daneel | or can someone point me to a documentation ? (I know the code for this new feature has nerged only a couple of weeks back) | 03:13 |
rallydev-bot | [From Gitter] shihai1991 : r-daneel: Hi. Using config file or fromenv is the same behavior. Just the input is different. | 03:30 |
r-daneel | shihai1991, what needs to be changed ? I'm ready to build a file is needed | 03:31 |
r-daneel | s/is/if/ | 03:32 |
rallydev-bot | [From Gitter] shihai1991 : It looks don't effect previous behavior. | 03:32 |
rallydev-bot | [From Gitter] shihai1991 : About creating deployment from config, we can ref those samples:https://github.com/openstack/rally/tree/master/samples/deployments | 03:34 |
r-daneel | great, that is ok. as for the new feature that requires no admin user, do I just remove the admin section ? | 03:36 |
rallydev-bot | [From Gitter] shihai1991 : https://review.openstack.org/#/c/474143/11/tests/ci/rally_gate_functions.sh | 03:43 |
rallydev-bot | [From Gitter] shihai1991 : Looks the config in rally_gate_functions.sh could resolve your probleam. | 03:45 |
r-daneel | last question: from what version is the admin-less mode supported, I'm on 0.9.1~dev459 | 03:45 |
rallydev-bot | [From Gitter] shihai1991 : looks you are in latest developing master and this patch should be obtained. | 03:50 |
r-daneel | you mean, it's included or not ? | 03:55 |
r-daneel | I just tested, rally deployment check seems to agree, thanks a lot ! | 04:00 |
boris-42____ | @r-daneel yep we are going to make soon new release | 04:24 |
boris-42____ | @r-daneel sorry for delays but we need to deprecate some more pieces of rally | 04:24 |
boris-42____ | before we cut the release | 04:24 |
r-daneel | It looks great, I was able to run a test successfully. however, seems that cleanup raises an exception still | 04:25 |
r-daneel | 2017-07-21 04:18:50.405 161 WARNING rally.plugins.openstack.cleanup.manager [-] Seems like rally.plugins.openstack.cleanup.resources.NovaServerGroups.list(self) method is broken. It shouldn't raise any exceptions.: NotFound: Not found (HTTP 404) (Request-ID: req-60d18918-be64-4ee3-906c-1ee7f4f19960) | 04:26 |
boris-42____ | @r-daneel hm maybe you just don't have that API? | 04:26 |
r-daneel | novaclient receives a 404 | 04:26 |
boris-42____ | @r-daneel ya which means that API is not supported | 04:27 |
boris-42____ | @r-daneel we can fix that actually by checking whatever API exists | 04:27 |
boris-42____ | @r-daneel before trying to perform list | 04:27 |
boris-42____ | @r-daneel but it shouldn't actually cause any problem/damage to your cloud | 04:27 |
r-daneel | list is just a nova list (or openstack server list) I guess ? | 04:28 |
r-daneel | is it possible that it tries to use servergroups ? | 04:28 |
r-daneel | I saw that it actually di not fail the rally run, and as it is run as a simple user, it indeed cannot hurt | 04:29 |
boris-42____ | @r-daneel no this is servers group | 04:29 |
boris-42____ | @r-daneel its' no the same as "servers" | 04:30 |
boris-42____ | @r-daneel https://developer.openstack.org/api-ref/compute/ | 04:30 |
boris-42____ | https://developer.openstack.org/api-ref/compute/#list-server-groups | 04:31 |
boris-42____ | @r-daneel ^ you see | 04:31 |
r-daneel | yep, I think we do not support that feature, just sad it triggers an exception | 04:32 |
boris-42____ | @r-daneel wanna fix this/) | 04:32 |
r-daneel | but for what I need it for it will be ok :) | 04:33 |
boris-42____ | @r-daneel so wanna fix it?) | 04:33 |
boris-42____ | @r-daneel so you see this is causing the problem https://github.com/openstack/rally/blob/master/rally/plugins/openstack/cleanup/resources.py#L164-L167 | 04:35 |
boris-42____ | @r-daneel so you need to override this method https://github.com/openstack/rally/blob/master/rally/plugins/openstack/cleanup/resources.py#L164-L167 | 04:35 |
boris-42____ | @r-daneel that will check that API exists first | 04:36 |
boris-42____ | @r-daneel e.g. if 404 code returned just ingore and return empty list | 04:36 |
boris-42____ | @r-daneel very simple patch =) | 04:36 |
r-daneel | is there an example where something similar is done ? I really am not a dev, more an op, this will probably take a bit more time for me to delve into | 04:37 |
boris-42____ | @r-daneel I already send you two links where everything is doen | 04:37 |
r-daneel | it'S twice the same link, no ? | 04:38 |
boris-42____ | https://github.com/openstack/rally/blob/master/rally/plugins/openstack/cleanup/resources.py#L154-L156 | 04:38 |
boris-42____ | oh this is second * | 04:38 |
boris-42____ | sorry about that | 04:38 |
r-daneel | ;) | 04:38 |
boris-42____ | @r-daneel so this second one contains list method | 04:38 |
boris-42____ | @r-daneel you basically need to do try - except =) | 04:38 |
boris-42____ | @r-daneel and check if except is related to 404 return empty list | 04:39 |
*** yamamoto has joined #openstack-rally | 04:39 | |
r-daneel | boris-42____, so, I buid a try catch around the content of the list method, if I catch an exception, I try to figure out if it's a 404 and return an empty list, right ? | 04:41 |
boris-42____ | @r-daneel ya | 04:47 |
boris-42____ | @r-daneel but you need to make the method in the link 2 | 04:47 |
boris-42____ | @r-daneel not change that one that exists* | 04:47 |
*** yamamoto has quit IRC | 04:48 | |
r-daneel | ok, I'll try to check that. it's a bit late now (close to 1 am) but I'll try to check it out on the weekend. thanks for the indication | 04:49 |
*** yamamoto has joined #openstack-rally | 04:51 | |
openstackgerrit | zhangzhihui proposed openstack/rally master: Add nova.BootServerAttachVolumeAndListAttachemnt https://review.openstack.org/418240 | 04:52 |
boris-42____ | @r-daneel ya sure take your time | 04:52 |
boris-42____ | we don't hurry up =) | 04:52 |
r-daneel | thanks, good night ! | 04:57 |
*** r-daneel has quit IRC | 05:01 | |
*** r-daneel has joined #openstack-rally | 05:02 | |
*** yamamoto has quit IRC | 05:15 | |
*** rcernin has quit IRC | 05:22 | |
*** rcernin has joined #openstack-rally | 05:36 | |
*** anshul has joined #openstack-rally | 05:47 | |
*** oanufrii has joined #openstack-rally | 06:06 | |
openstackgerrit | Boris Pavlovic proposed openstack/rally master: Improve deprecation warnings https://review.openstack.org/485986 | 06:22 |
openstackgerrit | zhangzhihui proposed openstack/rally master: Add nova.BootServerAttachVolumeAndListAttachemnt https://review.openstack.org/418240 | 06:41 |
*** rcernin has quit IRC | 06:58 | |
*** rcernin has joined #openstack-rally | 06:58 | |
*** shasha_t_ has quit IRC | 07:08 | |
*** mpotdar has quit IRC | 07:08 | |
*** aojea has joined #openstack-rally | 07:16 | |
*** tesseract has joined #openstack-rally | 07:16 | |
openstackgerrit | Boris Pavlovic proposed openstack/rally master: Empty change for testing https://review.openstack.org/486017 | 07:17 |
*** oanufrii has quit IRC | 07:17 | |
*** bhagyashris has quit IRC | 07:18 | |
openstackgerrit | Boris Pavlovic proposed openstack/rally master: Empty change for testing https://review.openstack.org/486017 | 07:18 |
*** yamamoto has joined #openstack-rally | 07:20 | |
*** alexchadin has joined #openstack-rally | 07:26 | |
*** itlinux has quit IRC | 07:26 | |
*** yamamoto has quit IRC | 07:42 | |
openstackgerrit | Boris Pavlovic proposed openstack/rally master: Improve deprecation warnings https://review.openstack.org/485986 | 08:07 |
*** serlex has joined #openstack-rally | 08:28 | |
openstackgerrit | Boris Pavlovic proposed openstack/rally master: Move tests.unit.test_logging to tests.unit.common.test_logging https://review.openstack.org/486045 | 08:34 |
openstackgerrit | Andrey Kurilin proposed openstack/rally master: [ci] Use not the latest xdist package https://review.openstack.org/486050 | 08:47 |
*** bhagyashris has joined #openstack-rally | 09:19 | |
*** lpetrut has joined #openstack-rally | 09:23 | |
*** reveller has quit IRC | 09:38 | |
openstackgerrit | Boris Pavlovic proposed openstack/rally master: Move tests.unit.test_logging to tests.unit.common.test_logging https://review.openstack.org/486045 | 09:41 |
openstackgerrit | Boris Pavlovic proposed openstack/rally master: Improve deprecation warnings https://review.openstack.org/485986 | 09:41 |
*** alexchadin has quit IRC | 10:11 | |
*** jkilpatr has joined #openstack-rally | 10:27 | |
*** jkilpatr has quit IRC | 10:33 | |
*** yamamoto_ has joined #openstack-rally | 10:48 | |
*** rook has quit IRC | 10:57 | |
*** sai_ has quit IRC | 10:57 | |
*** sai has joined #openstack-rally | 10:58 | |
*** rook has joined #openstack-rally | 10:58 | |
*** rook is now known as Guest11562 | 10:59 | |
*** jkilpatr has joined #openstack-rally | 11:09 | |
*** aojea has quit IRC | 11:22 | |
*** aojea has joined #openstack-rally | 11:30 | |
*** yamamoto_ has quit IRC | 11:32 | |
*** aojea has quit IRC | 11:34 | |
*** aojea has joined #openstack-rally | 11:39 | |
*** aojea has quit IRC | 11:43 | |
openstackgerrit | Andrey Kurilin proposed openstack/rally master: [ci] Use not the latest xdist package https://review.openstack.org/486050 | 11:47 |
*** aojea has joined #openstack-rally | 11:48 | |
*** yamamoto has joined #openstack-rally | 11:52 | |
*** aojea has quit IRC | 11:53 | |
*** yamamoto has quit IRC | 11:56 | |
*** aojea has joined #openstack-rally | 11:57 | |
*** rallydev-bot2 has joined #openstack-rally | 11:59 | |
*** rallydev-bot2 has quit IRC | 12:00 | |
*** rallydev-bot2 has joined #openstack-rally | 12:00 | |
*** rallydev-bot2 has quit IRC | 12:00 | |
*** rallydev-bot2 has joined #openstack-rally | 12:01 | |
*** rallydev-bot2 has quit IRC | 12:01 | |
*** rallydev-bot2 has joined #openstack-rally | 12:01 | |
*** aojea has quit IRC | 12:01 | |
*** rallydev-bot2 has quit IRC | 12:02 | |
*** rallydev-bot2 has joined #openstack-rally | 12:02 | |
*** rallydev-bot2 has quit IRC | 12:03 | |
*** rallydev-bot2 has joined #openstack-rally | 12:03 | |
*** rallydev-bot2 has quit IRC | 12:04 | |
*** rallydev-bot2 has joined #openstack-rally | 12:06 | |
*** aojea has joined #openstack-rally | 12:06 | |
*** aojea has quit IRC | 12:09 | |
*** aojea has joined #openstack-rally | 12:09 | |
*** rallydev-bot2 has quit IRC | 12:33 | |
*** rallydev-bot2 has joined #openstack-rally | 12:33 | |
*** rallydev-bot2 has joined #openstack-rally | 12:34 | |
*** rallydev-bot2 has quit IRC | 12:35 | |
*** rallydev-bot2 has joined #openstack-rally | 12:35 | |
*** rallydev-bot2 has quit IRC | 12:36 | |
*** rallydev-bot2 has joined #openstack-rally | 12:36 | |
*** rallydev-bot2 has quit IRC | 12:36 | |
*** rallydev-bot2 has joined #openstack-rally | 12:36 | |
*** rallydev-bot2 has quit IRC | 12:40 | |
*** rallydev-bot2 has joined #openstack-rally | 12:40 | |
*** dave-mccowan has joined #openstack-rally | 12:41 | |
*** rallydev-bot2 has quit IRC | 12:41 | |
*** yamamoto has joined #openstack-rally | 12:42 | |
*** dave-mcc_ has joined #openstack-rally | 12:46 | |
*** rallydev-bot has quit IRC | 12:46 | |
*** dave-mccowan has quit IRC | 12:48 | |
*** yamamoto has quit IRC | 12:52 | |
*** yamamoto has joined #openstack-rally | 12:52 | |
*** rallydev-bot has joined #openstack-rally | 12:57 | |
*** rallydev-bot has quit IRC | 12:57 | |
*** rallydev-bot has joined #openstack-rally | 12:58 | |
*** rallydev-bot has quit IRC | 12:58 | |
*** LindaWang has quit IRC | 13:02 | |
openstackgerrit | Andrey Kurilin proposed openstack/rally master: [db] Do not load unused fields https://review.openstack.org/482259 | 13:08 |
openstackgerrit | Andrey Kurilin proposed openstack/rally master: [db] Optimize a db migration https://review.openstack.org/484434 | 13:08 |
*** catintheroof has joined #openstack-rally | 13:25 | |
*** alexchadin has joined #openstack-rally | 13:25 | |
*** catinthe_ has joined #openstack-rally | 13:26 | |
*** yamamoto_ has joined #openstack-rally | 13:28 | |
*** yamamoto_ has quit IRC | 13:28 | |
*** yamamoto has quit IRC | 13:28 | |
*** reveller has joined #openstack-rally | 13:28 | |
*** catintheroof has quit IRC | 13:30 | |
*** lpetrut has quit IRC | 13:35 | |
*** anshul has quit IRC | 13:38 | |
*** alexchadin has quit IRC | 13:44 | |
*** yamamoto has joined #openstack-rally | 13:47 | |
*** anshul has joined #openstack-rally | 14:01 | |
*** anshul has quit IRC | 14:03 | |
*** anshul has joined #openstack-rally | 14:03 | |
openstackgerrit | Merged openstack/rally master: Add nova.BootServerAttachVolumeAndListAttachemnt https://review.openstack.org/418240 | 14:08 |
*** Guest11562 is now known as rook | 14:19 | |
*** r-daneel has quit IRC | 14:27 | |
*** anshul has quit IRC | 14:39 | |
*** serlex has quit IRC | 14:50 | |
*** anshul has joined #openstack-rally | 14:54 | |
*** itlinux has joined #openstack-rally | 15:11 | |
*** anshul has quit IRC | 15:14 | |
*** rcernin has quit IRC | 15:14 | |
*** r-daneel has joined #openstack-rally | 15:20 | |
*** aarefiev is now known as aarefiev_afk | 15:23 | |
*** aojea has quit IRC | 15:30 | |
*** aojea has joined #openstack-rally | 15:30 | |
*** anshul has joined #openstack-rally | 15:31 | |
*** aojea has quit IRC | 15:35 | |
*** yamamoto has quit IRC | 15:44 | |
*** yamamoto has joined #openstack-rally | 15:44 | |
*** yamamoto has quit IRC | 15:49 | |
*** itlinux has quit IRC | 16:03 | |
*** anshul has quit IRC | 16:27 | |
*** itlinux has joined #openstack-rally | 16:29 | |
*** itlinux has quit IRC | 16:31 | |
*** lpetrut has joined #openstack-rally | 16:33 | |
*** anshul has joined #openstack-rally | 16:42 | |
*** r-daneel has quit IRC | 16:47 | |
*** dave-mccowan has joined #openstack-rally | 16:48 | |
*** dave-mcc_ has quit IRC | 16:50 | |
*** yamamoto has joined #openstack-rally | 16:50 | |
*** r-daneel has joined #openstack-rally | 16:59 | |
*** rallydev-bot has joined #openstack-rally | 17:04 | |
*** rallydev-bot has quit IRC | 17:05 | |
*** rallydev-bot has joined #openstack-rally | 17:05 | |
*** yamamoto has quit IRC | 17:05 | |
rallydev-bot | [From Gitter] andreykurilin : test | 17:06 |
andreykurilin | test | 17:06 |
-openstackstatus- NOTICE: Restarting Gerrit for our weekly memory leak cleanup. | 17:06 | |
*** lpetrut has quit IRC | 17:16 | |
*** dave-mccowan has quit IRC | 17:23 | |
*** anshul has quit IRC | 17:25 | |
*** dave-mccowan has joined #openstack-rally | 17:26 | |
*** psuriset has quit IRC | 17:31 | |
*** jkilpatr has quit IRC | 17:36 | |
*** jkilpatr has joined #openstack-rally | 17:40 | |
*** rallydev-bot has quit IRC | 17:42 | |
*** rallydev-bot has joined #openstack-rally | 17:47 | |
*** rallydev-bot has quit IRC | 17:47 | |
*** rallydev-bot has joined #openstack-rally | 17:48 | |
*** psuriset has joined #openstack-rally | 17:48 | |
openstackgerrit | Merged openstack/rally master: Improve deprecation warnings https://review.openstack.org/485986 | 18:31 |
openstackgerrit | Merged openstack/rally master: Move tests.unit.test_logging to tests.unit.common.test_logging https://review.openstack.org/486045 | 18:32 |
-openstackstatus- NOTICE: docs.o.o is currently broken, we're investigating | 18:39 | |
*** MasterOfBugs has joined #openstack-rally | 18:45 | |
*** jkilpatr has quit IRC | 18:47 | |
*** jkilpatr has joined #openstack-rally | 18:50 | |
openstackgerrit | Merged openstack/rally master: [ci] Use not the latest xdist package https://review.openstack.org/486050 | 19:56 |
*** catinthe_ has quit IRC | 19:58 | |
*** aojea has joined #openstack-rally | 20:01 | |
*** dave-mccowan has quit IRC | 20:02 | |
*** jkilpatr has quit IRC | 20:03 | |
*** lpetrut has joined #openstack-rally | 20:15 | |
*** boris-42____ has quit IRC | 20:28 | |
*** jkilpatr has joined #openstack-rally | 20:52 | |
*** lpetrut has quit IRC | 21:22 | |
openstackgerrit | Boris Pavlovic proposed openstack/rally master: Rename namespace -> platform in context & validators plugins https://review.openstack.org/486229 | 21:26 |
openstackgerrit | Boris Pavlovic proposed openstack/rally master: Fix Designate job https://review.openstack.org/486230 | 21:31 |
*** rallydev-bot has quit IRC | 21:40 | |
openstackgerrit | Boris Pavlovic proposed openstack/rally master: Fix Designate job https://review.openstack.org/486230 | 21:53 |
openstackgerrit | Boris Pavlovic proposed openstack/rally master: Rename namespace -> platform in context & validators plugins https://review.openstack.org/486229 | 22:08 |
openstackgerrit | Boris Pavlovic proposed openstack/rally master: Remove namespace from osclient https://review.openstack.org/486239 | 22:08 |
openstackgerrit | Boris Pavlovic proposed openstack/rally master: Remove namespace in osclient module https://review.openstack.org/486239 | 22:09 |
*** tesseract has quit IRC | 22:25 | |
*** aojea has quit IRC | 22:51 | |
*** aojea has joined #openstack-rally | 22:52 | |
*** aojea has quit IRC | 22:56 | |
*** rallydev-bot has joined #openstack-rally | 23:20 | |
*** rallydev-bot has joined #openstack-rally | 23:23 | |
*** rallydev-bot has quit IRC | 23:23 | |
*** rallydev-bot has joined #openstack-rally | 23:25 | |
*** rallydev-bot has quit IRC | 23:26 | |
*** rallydev-bot has joined #openstack-rally | 23:27 | |
*** rallydev-bot has quit IRC | 23:28 | |
*** rallydev-bot has joined #openstack-rally | 23:30 | |
*** rallydev-bot has quit IRC | 23:31 | |
*** r-daneel has quit IRC | 23:31 | |
*** rallydev-bot has joined #openstack-rally | 23:34 | |
*** rallydev-bot has joined #openstack-rally | 23:34 | |
*** rallydev-bot has quit IRC | 23:35 | |
*** rallydev-bot has joined #openstack-rally | 23:39 | |
*** catintheroof has joined #openstack-rally | 23:58 |
Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!