Wednesday, 2018-05-09

*** harlowja has quit IRC00:51
*** username_ has joined #openstack-rally01:22
*** username_ is now known as username__01:23
*** ilbot3 has quit IRC01:45
*** ilbot3 has joined #openstack-rally01:58
openstackgerritGhanshyam Mann proposed openstack/rally master: Gate fix: Cap hacking to avoid gate failure  https://review.openstack.org/56709202:03
openstackgerritGhanshyam Mann proposed openstack/rally-openstack master: Gate fix: Cap hacking to avoid gate failure  https://review.openstack.org/56709302:04
openstackgerritMerged openstack/rally master: change the error_code to 0-255  https://review.openstack.org/55297202:16
*** yamamoto has joined #openstack-rally02:20
*** yamamoto has quit IRC02:24
*** zhangfei has joined #openstack-rally02:34
*** username__ has quit IRC02:35
*** yamamoto has joined #openstack-rally02:37
*** rcernin has quit IRC03:14
*** yamamoto has quit IRC03:31
*** threestrands has joined #openstack-rally03:38
*** yamamoto has joined #openstack-rally03:44
*** dave-mccowan has quit IRC03:48
*** yamamoto has quit IRC05:15
*** aojea has joined #openstack-rally05:17
*** yamamoto has joined #openstack-rally05:20
*** aojea has quit IRC05:31
*** e0ne has joined #openstack-rally05:46
*** e0ne has quit IRC05:50
*** threestrands has quit IRC05:54
*** pcaruana has joined #openstack-rally05:57
*** yamamoto_ has joined #openstack-rally07:10
*** yamamoto has quit IRC07:10
*** alexchadin has joined #openstack-rally07:16
*** tesseract has joined #openstack-rally07:22
*** yamamoto_ has quit IRC07:29
*** yamamoto has joined #openstack-rally07:30
*** tosky has joined #openstack-rally07:37
*** alexchadin has quit IRC07:41
*** alexchadin has joined #openstack-rally07:42
*** yamamoto has quit IRC08:15
*** yamamoto has joined #openstack-rally08:17
*** yamamoto has quit IRC08:55
*** alexchadin has quit IRC08:55
*** yamamoto has joined #openstack-rally09:11
*** serlex has joined #openstack-rally09:28
*** yamamoto has quit IRC10:49
*** yamamoto has joined #openstack-rally10:51
*** zhangfei has quit IRC11:04
*** yamamoto has quit IRC11:25
*** yamamoto has joined #openstack-rally11:31
*** yamamoto has quit IRC11:32
*** yamamoto has joined #openstack-rally11:58
*** pcaruana has quit IRC12:21
*** yamamoto has quit IRC12:39
*** dave-mccowan has joined #openstack-rally12:43
*** yamamoto has joined #openstack-rally12:44
*** yamamoto has quit IRC12:45
*** pcaruana has joined #openstack-rally13:40
*** yamamoto has joined #openstack-rally13:46
*** yamamoto has quit IRC13:56
*** pcaruana has quit IRC14:05
*** pcaruana has joined #openstack-rally14:08
*** nmagnezi_ is now known as nmagnezi14:17
*** pcaruana has quit IRC14:25
*** pcaruana has joined #openstack-rally14:26
*** r-daneel has joined #openstack-rally14:37
*** r-daneel_ has joined #openstack-rally14:41
*** r-daneel has quit IRC14:42
*** r-daneel_ is now known as r-daneel14:42
mvenesioandreykurilin: Hi Andre14:52
mvenesioandreykurilin: i'm having eerors creating servers : "Multiple possible networks found, use a Network ID to be more specific", but i dont really know how to modify the json file for that task to work. Is there some design guide to create the json files for rally tasks ?14:52
*** Leo_m has joined #openstack-rally15:05
*** serlex has quit IRC15:06
*** serlex has joined #openstack-rally15:30
*** serlex has quit IRC15:47
*** tosky has quit IRC15:48
*** tosky has joined #openstack-rally15:48
rallydev-bot[From Gitter] andreykurilin : mvenesio: hi16:11
mvenesioandreykurilin: hi16:11
rallydev-bot[From Gitter] andreykurilin : mvenesio: if you have more than one network, nova fails to boot vm without specifying a network to attach.  There are 2 ways to workaround it with Rally. First of all, you can transmit a net-id of a network to use16:13
rallydev-bot[From Gitter] andreykurilin : Depends on scenario you are using, the arguments for booting VM can be different. For example, "CinderVolumes.create_and_attach_volume" has argument create_vm_params. https://rally.readthedocs.io/en/latest/plugins/plugin_reference.html#scenario-cindervolumes-create-and-attach-volume-create-vm-params16:15
rallydev-bot[From Gitter] andreykurilin : "NovaServers.boot_and_delete_server" accepts additional boot arguments as a root level of scenario arguments16:16
rallydev-bot[From Gitter] andreykurilin : https://rally.readthedocs.io/en/latest/plugins/plugin_reference.html#novaservers-boot-and-delete-server-scenario16:16
rallydev-bot[From Gitter] andreykurilin : what you need is transmit is 'nics: [{"net-id": "NETWORK_ID_TO_USE"}]'16:17
mvenesioandreykurilin: great that's what i need16:17
*** r-daneel has quit IRC16:18
rallydev-bot[From Gitter] andreykurilin : In case if you do not want to use real network, there is another possible solution. It is using networks context (it will create temporary network(s)) + using `auto_assign_nics=True` argument as like nics is used in previous example16:19
mvenesioandreykurilin: i see, so i'll test first passing the specific network16:20
rallydev-bot[From Gitter] andreykurilin : ok16:20
mvenesioandreykurilin: another thing that i observed yesterday when i ran the verification tests on my cloud, is that tempest has left two smoke networks up after finish the tests16:30
rallydev-bot[From Gitter] andreykurilin : mvanesio: the names of networks?16:31
mvenesioandreykurilin: tempest-network-smoke--939296555 and tempest-network-smoke--210599369516:31
rallydev-bot[From Gitter] andreykurilin : ok16:31
rallydev-bot[From Gitter] andreykurilin : mvenesio: so Rally doesn't manage tempest resources itself. Previously, there were not ability to iven identify them (I suppose it is still True for most of tempest resources. So Rally doesn't  provide any cleanup on top of Tempest16:32
mvenesioandreykurilin: do you know if tempest itself provide some cleanup functionality ?16:33
rallydev-bot[From Gitter] andreykurilin : mvenesio: In case of `rally task` we are using pseudo-random names which allowed us to provide the proper cleanup and  do not touch real resources(resources which were created by not-rally)16:34
rallydev-bot[From Gitter] andreykurilin : mvenesio: no. there is no good cleanup in tempest at all16:34
rallydev-bot[From Gitter] andreykurilin : they have a script which just lists openstack resources which exist vefore tempest run and list all openstack resources after tempest run. all new resources will be deleted in such case. But it will clean not only tempest resources, but other one which can be created in parallel by other users16:36
mvenesioandreykurilin: i understand16:37
*** r-daneel has joined #openstack-rally16:54
*** tosky has quit IRC16:57
*** tosky has joined #openstack-rally16:59
openstackgerritAndrey Kurilin proposed openstack/rally master: [evil] Remove OpenStack related plugins  https://review.openstack.org/56689917:02
*** tesseract has quit IRC17:15
*** dmellado has quit IRC17:29
*** r-daneel has quit IRC18:07
*** r-daneel has joined #openstack-rally18:07
*** mvenesio has quit IRC18:20
*** mvenesio has joined #openstack-rally18:21
*** mvenesio has quit IRC18:25
*** mvenesio has joined #openstack-rally18:51
*** dmellado has joined #openstack-rally18:58
*** mvenesio has quit IRC19:00
*** r-daneel_ has joined #openstack-rally19:11
*** r-daneel has quit IRC19:11
*** r-daneel_ is now known as r-daneel19:11
*** mvk has quit IRC19:13
openstackgerritNir Magnezi proposed openstack/rally-openstack master: Port CreateAndListLoadbalancers for Octavia  https://review.openstack.org/55422819:26
*** pcaruana has quit IRC20:59
*** mvenesio has joined #openstack-rally21:10
*** dmellado has quit IRC21:15
*** dave-mccowan has quit IRC21:17
*** dmellado has joined #openstack-rally21:23
*** dave-mccowan has joined #openstack-rally21:23
*** mvenesio has quit IRC21:24
*** dmellado has quit IRC21:27
*** Leo_m has quit IRC21:53
*** zigo has quit IRC22:11
*** zigo has joined #openstack-rally22:11
*** mvk has joined #openstack-rally22:32
*** threestrands has joined #openstack-rally22:33
*** threestrands_ has joined #openstack-rally22:36
*** threestrands_ has quit IRC22:36
*** threestrands_ has joined #openstack-rally22:36
*** threestrands has quit IRC22:38
*** r-daneel has quit IRC22:43
*** tosky has quit IRC23:38

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