openstackgerrit | Tim Buckley proposed openstack/stackviz: Add missing DI annotations and enable strictDi. https://review.openstack.org/263484 | 00:04 |
---|---|---|
gmann | ddieterly: gerrit link ? | 00:04 |
*** aalam has joined #openstack-qa | 00:05 | |
*** rbak has quit IRC | 00:06 | |
ddieterly | gmann: https://review.openstack.org/#/c/254425/ | 00:08 |
openstackrecheck | Console logs not available after 13:23s for gate-tempest-dsvm-full 260586,3,019f554 | 00:09 |
*** ddieterly has quit IRC | 00:11 | |
*** slowrie has quit IRC | 00:13 | |
*** tochi has quit IRC | 00:15 | |
*** asselin_ has joined #openstack-qa | 00:15 | |
gmann | ddieterly: seems like no configured credential - username and password. which i cannot see in conf | 00:16 |
*** tochi has joined #openstack-qa | 00:20 | |
openstackgerrit | melanie witt proposed openstack-infra/elastic-recheck: Remove query for bug 1501435 https://review.openstack.org/263488 | 00:22 |
openstack | bug 1501435 in python-novaclient "osc 1.7 no longer can boot a server from volume" [Critical,Fix released] https://launchpad.net/bugs/1501435 - Assigned to melanie witt (melwitt) | 00:22 |
openstackrecheck | Console logs not available after 13:22s for gate-cinder-pep8 263404,1,5f82321 | 00:22 |
*** mspreitz_ has quit IRC | 00:23 | |
*** Swami_ has quit IRC | 00:26 | |
*** jasonsb has joined #openstack-qa | 00:28 | |
*** sabeen3 has quit IRC | 00:30 | |
*** dims has joined #openstack-qa | 00:33 | |
*** dims_ has quit IRC | 00:34 | |
openstackrecheck | Console logs not available after 13:24s for gate-grenade-dsvm-multinode 259515,3,3b8550f | 00:36 |
*** tosky has quit IRC | 00:37 | |
gmann | ddieterly: you are using deprecated cred which are removed from devstack now. - https://review.openstack.org/#/c/256164/ | 00:37 |
*** ccneill has quit IRC | 00:38 | |
*** rm_work has joined #openstack-qa | 00:39 | |
*** cdent has quit IRC | 00:40 | |
rm_work | anyone aware of something changing recently that would cause "tempest_lib.exceptions.InvalidCredentials: Invalid Credentials" on every test we run? | 00:40 |
rm_work | (neutron-lbaas) | 00:40 |
jroll | rm_work: what I've been seeing today is use of deprecated tempest options, https://review.openstack.org/#/c/256164/ | 00:41 |
rm_work | looks like none of the values are set, which means I assume it's either looking for a new config we aren't prepared to set up, or else we've somehow stopped setting up the config that used to work | 00:41 |
jroll | monasca hit it a little bit ago https://gist.github.com/ddieterly/a05fc3db93c7201c6c14 | 00:41 |
rm_work | hmm | 00:41 |
rm_work | that looks different | 00:42 |
rm_work | https://gist.github.com/rm-you/8520340b2f5ef95ba1a2 is what we see | 00:42 |
jroll | seems like it could be similar thuogh | 00:42 |
rm_work | which is basically "none of these things are set at all" | 00:43 |
jroll | the auth configs changed https://review.openstack.org/#/c/256164/3/lib/tempest | 00:43 |
rm_work | hmmm | 00:45 |
gmann | jroll: rm_work : yea noe devstack does not set the deprecated cred options | 00:45 |
gmann | noe- > now | 00:45 |
gmann | those were already deprecated and used by Legacy CredentialsProvider | 00:45 |
rm_work | but if those options were just "removed", why would IT still be looking for them? | 00:45 |
gmann | so those using Legacy CredentialsProvider, will fail like monasca | 00:46 |
rm_work | ah hmmm | 00:46 |
rm_work | LegacyCredentialsProvider? where is it set which to use, in a config or in the code (probably base test class?) | 00:46 |
gmann | rm_work: removed from devstack setting, in Tempest those are still in deprecated state | 00:46 |
rm_work | ah | 00:46 |
gmann | rm_work: while getting the cred which you need to pass in Manager class in base tests | 00:47 |
gmann | rm_work: you can use either dynamic or pre-provisioned cred now | 00:48 |
gmann | rm_work: your is Monasca or any other tests ? | 00:48 |
*** zz_dimtruck is now known as dimtruck | 00:49 | |
gmann | ddieterly: replied on patches about failure | 00:49 |
rm_work | Neutron-LBaaS | 00:50 |
rm_work | http://logs.openstack.org/10/262910/1/gate/gate-neutron-lbaasv2-dsvm-loadbalancer/5d32043/console.html | 00:50 |
openstackrecheck | Console logs not available after 13:25s for gate-grenade-dsvm-neutron 193894,8,48a7585 | 00:50 |
rm_work | yeah so that devstack change merged this morning | 00:54 |
rm_work | and lines up with our issue | 00:54 |
rm_work | so is probably the cause of all our gates breaking T_T | 00:54 |
gmann | andreaf: mtreinish : seems like many projects broken with Legacy CredentialsProvider. Should we keep devstack setting till we remove from Tempest ? | 00:54 |
rm_work | well, making assumptions about devstack setting values would technically be the real cause :P | 00:54 |
rm_work | I will be willing to try to merge a gate-fix CR in our project, if someone can tell me what needs to be done | 00:55 |
*** hemna is now known as hemnafk | 00:55 | |
rm_work | what am I even looking for | 00:55 |
gmann | rm_work: yea, those options were deprecated long back and other two options can be used here - dynamic cred or pre provisioned | 00:55 |
rm_work | I'm tracing code paths back and forth trying to find where the provider is actually SET | 00:56 |
rm_work | this is like a maze | 00:56 |
gmann | rm_work: use dynamic cred instead for what failure jobs sets | 00:56 |
rm_work | err, not sure I follow | 00:56 |
*** eil397 has quit IRC | 00:57 | |
rm_work | lol thee last time this code was touched was 2014 | 00:57 |
gmann | https://github.com/openstack/tempest/blob/master/tempest/common/credentials_factory.py#L153 | 00:58 |
rm_work | gmann: is there a string I can search for in this project to find the place where I need to actually update code? | 00:58 |
gmann | rm_work: this one - dynamic_creds.DynamicCredentialProvider | 00:58 |
rm_work | the string "DynamicCredentialProvider" does not exist in this project | 00:59 |
gmann | rm_work: search with either using "LegacyCredentialProvider" or "get_configured_credentials" | 00:59 |
gmann | rm_work: both usage should be replaced | 00:59 |
rm_work | the first does not exist, get_configured_credentials does | 00:59 |
gmann | rm_work: both of those depends on deprecated cred options which are removed now | 01:00 |
rm_work | ok so what do I replace get_configured_credentials with? | 01:00 |
rm_work | that method looks like it actually exists *in our codebase*? | 01:00 |
rm_work | neutron_lbaas/tests/tempest/lib/common/cred_provider.py | 01:00 |
rm_work | this is "managed copy/paste" code? lol | 01:01 |
*** hoangcx has joined #openstack-qa | 01:01 | |
openstackrecheck | Console logs not available after 13:23s for gate-tempest-dsvm-full 260587,3,52b3a74 | 01:04 |
gmann | rm_work: heh, thats is funny. and yes neutron has copy paste code of tempest but m surprise they have lib one too :) | 01:04 |
rm_work | should I actually replace all of this code with updated lib code from somewhere? | 01:04 |
rm_work | or ... remove it and actually *include tempest*? | 01:04 |
rm_work | s/include/import/ | 01:05 |
gmann | rm_work: well, import tempest you can do but Tempest interface can be changed removed anytime as it is not lib | 01:06 |
rm_work | ok | 01:06 |
gmann | rm_work: all stable interfaces present in lib are stable | 01:06 |
rm_work | so... should I get an updated copy of this lib code from somewhere? | 01:06 |
rm_work | will this fix the problem? | 01:07 |
gmann | rm_work: and we are in progress of moving all common functionality from Tempest to lib | 01:07 |
rm_work | get_configured_credentials only appears in the lib code... | 01:07 |
gmann | rm_work: for this issue just use the dynamic cred instead of configured one | 01:07 |
gmann | rm_work: let me pull some example one | 01:07 |
*** mtanino has quit IRC | 01:08 | |
rm_work | that would require changing the tempest lib code? | 01:08 |
gmann | oh, is it? | 01:08 |
gmann | i thought it is being used in test cases too | 01:08 |
rm_work | hmm | 01:08 |
gmann | let me check lbaas | 01:08 |
rm_work | maybe one | 01:08 |
rm_work | ah possibly, it is a very high level class | 01:08 |
rm_work | so instead of get_configured_credentials() I would use dynamic_creds.DynamicCredentialProvider and then it should "just work"? :P | 01:09 |
rm_work | an example would be awesome, thanks | 01:09 |
gmann | rm_work: there lib is something else not tempest-lib :) | 01:10 |
rm_work | O_o | 01:11 |
*** eliqiao has quit IRC | 01:12 | |
gmann | rm_work: basically problem is with get_configured_credentials('user') or credential_type='alt_user' | 01:12 |
gmann | https://github.com/openstack/neutron-lbaas/blob/4ef9bb7ccd105bf30a93083b0e13733d6fe70cc6/neutron_lbaas/tests/tempest/lib/manager.py#L44 | 01:13 |
gmann | https://github.com/openstack/neutron-lbaas/blob/4ef9bb7ccd105bf30a93083b0e13733d6fe70cc6/neutron_lbaas/tests/tempest/lib/common/accounts.py#L325 | 01:13 |
rm_work | so that code did NOT come from tempest-lib? | 01:13 |
*** eliqiao has joined #openstack-qa | 01:13 | |
gmann | rm_work: no that is from tempest and they kept in /lib | 01:14 |
openstackgerrit | Alan proposed openstack/tempest: Fix grammatical mistake, Changed word from "an" to "a" in below file: https://review.openstack.org/263204 | 01:14 |
gmann | rm_work: they have old class name | 01:14 |
rm_work | so, do you think this is fixable? or do we need to completely overhaul the tempest code in lbaas? | 01:14 |
gmann | rm_work: so issue is with get_configured_credentials('user') and where they use NotLockingAccounts | 01:14 |
gmann | rm_work: they should always use the tempest-lib interfaces | 01:15 |
*** pvaneck has quit IRC | 01:15 | |
gmann | rm_work: it is always issue maintaining the copy paste tempest code which gets changed | 01:15 |
gmann | rm_work: it is fixable not big issue | 01:16 |
gmann | rm_work: so where they use get_configured_credentials('user') or NotLockingAccounts | 01:16 |
gmann | rm_work: replace those with dynamic cred | 01:16 |
rm_work | do you have an example of dynamic cred use? | 01:17 |
openstackrecheck | Console logs not available after 13:22s for gate-nova-python34 242626,12,d5943ea | 01:17 |
gmann | like - https://github.com/openstack/manila/blob/master/manila_tempest_tests/tests/api/base.py#L129 | 01:17 |
gmann | rm_work: ^^, Manila one | 01:18 |
rm_work | ok | 01:18 |
*** jecarey has joined #openstack-qa | 01:19 | |
rm_work | gmann: i see that still passes the get_configured_credentials through? | 01:19 |
rm_work | or rather, it is used in the call for DynamicCreds | 01:20 |
rm_work | from tempest.common import credentials_factory as common_creds | 01:21 |
rm_work | ommon_creds.get_configured_credentials('user') | 01:22 |
rm_work | is still used | 01:22 |
rm_work | https://github.com/openstack/manila/blob/master/manila_tempest_tests/clients_share.py#L44 | 01:22 |
rm_work | maybe I can just use that? | 01:23 |
openstackgerrit | Ken'ichi Ohmichi proposed openstack-dev/devstack: Enable SameHostFilter and DifferentHostFilter https://review.openstack.org/258882 | 01:28 |
openstackgerrit | Ken'ichi Ohmichi proposed openstack-dev/devstack: Enable SameHostFilter and DifferentHostFilter https://review.openstack.org/258882 | 01:29 |
gmann | rm_work: but that will give you admin cred, so tests needs to use non admin cred, should use either 'user' or 'alt_user' | 01:30 |
rm_work | yes | 01:30 |
rm_work | I think I am going to test bypassing the problem :P | 01:30 |
gmann | mkoderer: ^^ you need to change Manila not to depends on deprecated cred :) | 01:30 |
openstackrecheck | Console logs not available after 13:23s for gate-nova-python27 263434,1,61b2972 | 01:31 |
rm_work | gmann: so I am testing this currently to see if using an updated version of the code just "fixes it" | 01:34 |
*** dimtruck is now known as zz_dimtruck | 01:34 | |
rm_work | https://review.openstack.org/263516 | 01:34 |
rm_work | will see what happens | 01:34 |
*** asselin_ has quit IRC | 01:34 | |
rm_work | ah, forgot to ... include tempest. I hope it will be there anyway :P | 01:34 |
gmann | rm_work: it would not work for credential_type 'user' and 'alt_usr' | 01:35 |
rm_work | no? | 01:35 |
rm_work | hmm | 01:36 |
gmann | rm_work: common_creds.get_configured_credentials() still looks for deprecated options in conf | 01:36 |
rm_work | even in tempest/master? | 01:36 |
gmann | rm_work: which will not be there as devstack does not set now | 01:36 |
*** weshay has quit IRC | 01:36 | |
rm_work | why wouldn't the interface just be fixed | 01:36 |
gmann | rm_work: There is no change in tempest, only issue is those cred are not present in tempest conf which used to be set by devstack | 01:37 |
gmann | rm_work: well tempest still has those as deprecated. those are not removed from tempest | 01:37 |
*** Liuqing has joined #openstack-qa | 01:37 | |
gmann | rm_work: only conf setting is being removed | 01:37 |
gmann | rm_work: so Tempest says to use the other 2 options for cred | 01:38 |
rm_work | so the conf settings are being deprecated, but the interface is not? | 01:38 |
gmann | rm_work: https://github.com/openstack/tempest/blob/master/doc/source/configuration.rst#credential-provider-mechanisms | 01:38 |
gmann | rm_work: interface too. it is documented ^^ | 01:38 |
rm_work | ah | 01:38 |
gmann | rm_work: https://github.com/openstack/tempest/blob/master/doc/source/configuration.rst#legacy-test-accounts-aka-credentials-config-options | 01:39 |
gmann | rm_work: and m sure mtreinish has idea to remove from devstack so that people stop using deprecated way of cred, otherwise its never gonna happen :) | 01:40 |
gmann | And not just lbaas, Manila, congress, monasca needs to update too | 01:41 |
rm_work | ok, I wonder if we need to remove the entire tempest/lib/ folder | 01:42 |
rm_work | and just include from tempest | 01:42 |
rm_work | while I am fixing this | 01:42 |
openstackrecheck | Console logs not available after 13:21s for gate-tempest-dsvm-full-ceph 231468,2,8f6e867 | 01:44 |
gmann | rm_work: yea, you can do that but still import everything from tempest is not good idea as we can change interfaces | 01:45 |
rm_work | ah | 01:45 |
rm_work | so that is why this was copy/pasted in probably? | 01:45 |
gmann | rm_work: another issue is lbaas does not have plugin, they just maintain copy paste code :) | 01:45 |
rm_work | but, we do not have the code for the dynamic provider... | 01:45 |
gmann | rm_work: yes | 01:45 |
*** amotoki has quit IRC | 01:45 | |
gmann | rm_work: ohh, yes then you need to wither switch to plugin as good solution or again maintain the latest copy paste code | 01:46 |
rm_work | switch to plugin? | 01:46 |
gmann | wither-> either | 01:46 |
rm_work | like, git submodules? | 01:46 |
rm_work | or | 01:46 |
gmann | rm_work: tempest provide plugin to write tempest like test | 01:46 |
rm_work | is that a different project? | 01:47 |
gmann | rm_work: https://github.com/openstack/tempest/blob/master/doc/source/plugin.rst | 01:47 |
gmann | rm_work: so same way devstack provides plugin feature | 01:47 |
gmann | rm_work: Manila, Congress, Sahara, Monasca use the same | 01:47 |
rm_work | err | 01:48 |
*** dave-mccowan has quit IRC | 01:48 | |
gmann | rm_work: example - https://github.com/openstack/manila/tree/master/manila_tempest_tests | 01:48 |
rm_work | the tests in there import directly from tempesrt | 01:48 |
rm_work | *tempest | 01:49 |
rm_work | https://github.com/openstack/manila/blob/master/manila_tempest_tests/tests/api/base.py#L23 | 01:49 |
rm_work | so far all of the examples i have seen do this :/ | 01:49 |
rm_work | but you say this is not a good idea? | 01:49 |
*** hoangcx has quit IRC | 01:50 | |
gmann | rm_work: yea, because we do nto have all interfaces in lib yet, that is in progress | 01:52 |
*** Poornima has quit IRC | 01:52 | |
rm_work | ok | 01:52 |
rm_work | so ... I am still not clear on what to do | 01:52 |
gmann | rm_work: manila has way to cap the Tempest commit-id so that they do not break with any change in tempest | 01:52 |
rm_work | it looks like importing directly from tempest is what every other project is doing? | 01:52 |
rm_work | ah | 01:52 |
gmann | rm_work: you can do and use dynamic cred will fix the issue | 01:53 |
rm_work | ok, that makes sense then | 01:53 |
rm_work | DynamicCredentialsProvider does not take a credential_type? | 01:56 |
openstackrecheck | Console logs not available after 13:24s for gate-horizon-npm-run-lint 72024,22,67d96a6 | 01:57 |
rm_work | I don't think this is going to be a quick fix... | 01:58 |
rm_work | I'm going to have to look at this tomorrow | 01:58 |
gmann | rm_work: other way you can just use credential_factory->get_credentials_provider which gives the appropriate cred based on conf | 01:59 |
rm_work | hmm | 02:00 |
rm_work | I might just add the removed iniset code back to our devstack plugin <_< | 02:00 |
gmann | rm_work: which gives you credential provider and then you can get primary or alt cred | 02:01 |
rm_work | not willing to have our gate broken for the amount of time which it will take to fix this properly :/ | 02:01 |
*** zz_dimtruck is now known as dimtruck | 02:04 | |
*** bochi-michael has joined #openstack-qa | 02:05 | |
openstackrecheck | Console logs not available after 13:24s for gate-devstack-bashate 263463,1,532ba90 | 02:11 |
*** hoangcx has joined #openstack-qa | 02:12 | |
*** rfolco_ has joined #openstack-qa | 02:18 | |
*** rfolco_ has quit IRC | 02:18 | |
*** Kennan has joined #openstack-qa | 02:19 | |
*** yangyapeng has joined #openstack-qa | 02:21 | |
Kennan | hi does anyone know when tempest config (tempest.conf) in identity section, not any username and tenant_name | 02:23 |
Kennan | where are they now ? | 02:23 |
openstackrecheck | Console logs not available after 13:23s for gate-nova-python27 263368,4,4273e49 | 02:24 |
*** dims has quit IRC | 02:25 | |
gmann | Kennan: those were deprecated option and now devstack does nto set those | 02:25 |
gmann | Kennan: https://review.openstack.org/#/c/256164/ | 02:26 |
Kennan | hi gmann: how to use that and find them ? let me check your link | 02:26 |
gmann | Kennan: which project, you were using? | 02:26 |
Kennan | Magnum, I found tempest failed in that | 02:26 |
Kennan | gmann: here the link | 02:27 |
Kennan | http://logs.openstack.org/98/262898/3/check/gate-functional-dsvm-magnum-api/1ae6446/console.html | 02:27 |
gmann | Kennan: ok, you need to use dynamic cred instead of deprecated one | 02:28 |
gmann | Kennan: let me check there | 02:28 |
Kennan | Ok. Thanks let me know how to make that to work | 02:28 |
gmann | Kennan: you are using those deprecated options directly - https://github.com/openstack/magnum/blob/master/magnum/tests/functional/common/config.py#L32 | 02:35 |
gmann | Kennan: that way of credential is not supported from devstack | 02:36 |
gmann | Kennan: you need to use dynamic cred - http://docs.openstack.org/developer/tempest/configuration.html#credential-provider-mechanisms | 02:36 |
Kennan | yes gmann: one guy worked on that. Then how to use dymanic ways ? how to get dymanic user credential ? | 02:36 |
openstackrecheck | Console logs not available after 13:23s for gate-tempest-dsvm-postgres-full 256273,37,5a41946 | 02:38 |
gmann | Kennan: this is fix for Monasca - https://review.openstack.org/#/c/263529/1 | 02:40 |
gmann | Kennan: with that you can get the dynamic cred provider and fetch primary, alt or admin cred | 02:40 |
gmann | Kennan: but it is strange for me that magnum using options from tempest conf directly | 02:41 |
gmann | Kennan: either it should have in magnum conf or use tempest functionality using tempest plugin etc | 02:41 |
Kennan | ok. let me check with the guy who worked that before. | 02:42 |
Kennan | gmann: you mentioned in magnum conf, do you mean such tempest configuration can be put in magnum conf ? | 02:43 |
gmann | Kennan: no necessary, but directly parsing tempest conf is not good idea | 02:44 |
Kennan | ok. seems need much change for make that work. as I not find dynamic in magnum now | 02:45 |
*** dims has joined #openstack-qa | 02:46 | |
gmann | Kennan: yea it is not there | 02:47 |
*** dimtruck is now known as zz_dimtruck | 02:47 | |
*** zz_dimtruck is now known as dimtruck | 02:48 | |
openstackrecheck | Console logs not available after 13:22s for gate-nova-pep8 153038,68,768d948 | 02:51 |
*** dimtruck is now known as zz_dimtruck | 02:55 | |
*** zz_dimtruck is now known as dimtruck | 02:56 | |
*** dimtruck is now known as zz_dimtruck | 03:00 | |
*** artom has joined #openstack-qa | 03:03 | |
openstackrecheck | Console logs not available after 13:27s for gate-keystone-python34 249958,17,cf672f0 | 03:04 |
*** zz_dimtruck is now known as dimtruck | 03:06 | |
*** aalam has quit IRC | 03:07 | |
*** dims has quit IRC | 03:14 | |
*** yangyapeng has quit IRC | 03:16 | |
openstackrecheck | Console logs not available after 13:23s for gate-nova-python34 248963,18,25df1a6 | 03:18 |
*** jecarey has quit IRC | 03:21 | |
openstackgerrit | Jacky_lei_zhang proposed openstack/tempest: Move backups_clients code to v2 directory https://review.openstack.org/261215 | 03:21 |
*** nicholasgoracke has joined #openstack-qa | 03:23 | |
*** pcrews has quit IRC | 03:29 | |
*** pcrews has joined #openstack-qa | 03:30 | |
openstackrecheck | Console logs not available after 13:29s for gate-nova-pep8 256569,4,e1ad63d | 03:31 |
*** yamahata has quit IRC | 03:33 | |
openstackgerrit | John L. Villalovos proposed openstack-infra/devstack-gate: Update README.rst on how users can reproduce gate issues https://review.openstack.org/263548 | 03:35 |
openstackrecheck | Console logs not available after 13:22s for gate-tempest-dsvm-full 234232,7,3b6f862 | 03:45 |
*** amotoki has joined #openstack-qa | 03:54 | |
*** amotoki has quit IRC | 03:58 | |
openstackrecheck | Console logs not available after 13:26s for gate-nova-pep8 258191,6,0bfdfa9 | 03:58 |
*** amotoki has joined #openstack-qa | 03:59 | |
*** yamahata has joined #openstack-qa | 04:01 | |
*** asselin_ has joined #openstack-qa | 04:03 | |
*** artom has quit IRC | 04:06 | |
openstackrecheck | Console logs not available after 13:26s for gate-nova-python34 252687,12,925e41c | 04:12 |
*** nicholasgoracke has quit IRC | 04:18 | |
*** jecarey has joined #openstack-qa | 04:21 | |
*** armax has joined #openstack-qa | 04:22 | |
*** Poornima has joined #openstack-qa | 04:25 | |
openstackrecheck | Console logs not available after 13:23s for gate-keystone-python27 231872,10,6d0724e | 04:25 |
*** jecarey has quit IRC | 04:26 | |
*** nicholasgoracke has joined #openstack-qa | 04:27 | |
openstackrecheck | Console logs not available after 13:22s for gate-nova-python27 253793,14,2c5c345 | 04:38 |
openstackgerrit | Jacky_lei_zhang proposed openstack/tempest: Move backups_clients code to v2 directory https://review.openstack.org/261215 | 04:43 |
*** nicholasgoracke has quit IRC | 04:46 | |
*** nicholasgoracke has joined #openstack-qa | 04:50 | |
*** nicholasgoracke has quit IRC | 04:50 | |
*** nicholasgoracke has joined #openstack-qa | 04:50 | |
openstackrecheck | Console logs not available after 13:25s for gate-nova-pep8 253747,14,d540008 | 04:52 |
*** jecarey has joined #openstack-qa | 04:55 | |
openstackgerrit | Merged openstack-dev/devstack: Fix get_plugin_packages when multiple plugins are in use https://review.openstack.org/263057 | 04:55 |
*** asselin_ has quit IRC | 04:57 | |
*** asselin_ has joined #openstack-qa | 04:58 | |
*** jecarey has quit IRC | 04:59 | |
*** Liuqing has quit IRC | 05:05 | |
openstackrecheck | Console logs not available after 13:22s for gate-tempest-dsvm-full 263458,1,6db5948 | 05:05 |
*** Liuqing has joined #openstack-qa | 05:06 | |
*** tochi has quit IRC | 05:10 | |
openstackrecheck | Console logs not available after 13:22s for gate-grenade-dsvm-multinode 261883,2,eb9f044 | 05:19 |
openstackrecheck | openstack/nova change: https://review.openstack.org/254196 failed gate-nova-python34 in the gate queue with an unrecognized error | 05:19 |
*** nikil89_ has joined #openstack-qa | 05:31 | |
*** nicholasgoracke has quit IRC | 05:31 | |
*** nicholasgoracke has joined #openstack-qa | 05:32 | |
openstackrecheck | Console logs not available after 13:22s for gate-nova-python27 235637,3,394e8ed | 05:33 |
*** nikil89_ is now known as naggappan | 05:39 | |
*** Poornima has quit IRC | 05:41 | |
openstackrecheck | Console logs not available after 13:26s for gate-keystone-python27 263113,2,5ec7593 | 05:46 |
*** Liuqing has quit IRC | 05:51 | |
*** SridharG has joined #openstack-qa | 05:57 | |
*** Poornima has joined #openstack-qa | 05:58 | |
openstackrecheck | Console logs not available after 13:44s for gate-tempest-dsvm-neutron-full 247395,2,73981db | 06:00 |
*** coolsvap|away is now known as coolsvap | 06:02 | |
*** nicholasgoracke has quit IRC | 06:02 | |
openstackrecheck | openstack/nova change: https://review.openstack.org/263296 failed gate-nova-python34 in the gate queue with an unrecognized error | 06:02 |
openstackrecheck | openstack/nova change: https://review.openstack.org/229574 failed because of: gate-tempest-dsvm-neutron-full: https://bugs.launchpad.net/bugs/1349617 | 06:04 |
openstack | Launchpad bug 1349617 in OpenStack Compute (nova) "SSHException: Error reading SSH protocol banner[Errno 104] Connection reset by peer" [Undecided,Incomplete] | 06:04 |
openstackgerrit | Einst Crazy proposed openstack/tempest: Use assertTrue/False instead of assertEqual(T/F) https://review.openstack.org/263571 | 06:09 |
gmann | mkoderer: regarding https://bugs.launchpad.net/manila/+bug/1531049 | 06:17 |
openstack | Launchpad bug 1531049 in Monasca "Devstack stop supporting Temepst deprecated cred options" [Undecided,New] - Assigned to Ghanshyam Mann (ghanshyammann) | 06:17 |
*** coolsvap is now known as coolsvap|away | 06:17 | |
gmann | mkoderer: looks like Manila needs lot of refactoring for using dynamic cred | 06:17 |
*** coolsvap|away is now known as coolsvap | 06:20 | |
*** yfried_ has quit IRC | 06:20 | |
*** viktor_nokia has left #openstack-qa | 06:22 | |
*** shausy has joined #openstack-qa | 06:24 | |
*** bochi-michael has quit IRC | 06:30 | |
gmann | mkoderer: any specific reason running most of the tests with force_tenant_isolation = False | 06:31 |
openstackgerrit | Jacky_lei_zhang proposed openstack/tempest: Move backups_clients code to v2 directory https://review.openstack.org/261215 | 06:37 |
*** bochi-michael has joined #openstack-qa | 06:39 | |
openstackgerrit | Mike Spreitzer proposed openstack-dev/devstack: Do not fail with Tox 2.3.1 https://review.openstack.org/263463 | 06:43 |
*** aopincar has joined #openstack-qa | 06:46 | |
mkoderer | gmann: good morning. yeah currently the manila gate is blocked because of that | 06:48 |
mkoderer | vponomaryov: ^^ do you know why we do force_tenant_isolation = False? | 06:48 |
gmann | mkoderer: yea, as manila needs to use dynamic or pre provisioned cred, I think tests needs to be re-factored to use the force_tenant_isolation as True | 06:50 |
*** neeti has joined #openstack-qa | 06:50 | |
gmann | mkoderer: and Manager class can be instantiated in base class and fetch client from them instead of creating Manager obj in each tests class | 06:51 |
*** jecarey has joined #openstack-qa | 06:55 | |
*** tochi has joined #openstack-qa | 06:56 | |
*** jecarey has quit IRC | 07:00 | |
*** itzikb_ has joined #openstack-qa | 07:06 | |
*** yfried has joined #openstack-qa | 07:13 | |
openstackrecheck | Console logs not available after 13:22s for gate-tempest-dsvm-neutron-full 201500,23,f3d1451 | 07:15 |
*** oomichi has quit IRC | 07:24 | |
*** hoangcx_ has joined #openstack-qa | 07:25 | |
*** hoangcx has quit IRC | 07:26 | |
openstackrecheck | Console logs not available after 13:23s for gate-tempest-dsvm-full 263249,3,390be66 | 07:29 |
openstackrecheck | Console logs not available after 13:23s for gate-tempest-dsvm-neutron-dvr 263571,1,aaf9791 | 07:43 |
*** anshul has joined #openstack-qa | 07:43 | |
*** e0ne has joined #openstack-qa | 07:43 | |
mkoderer | gmann: yep agree | 07:43 |
*** salv-orlando has joined #openstack-qa | 07:44 | |
openstackgerrit | Jacky_lei_zhang proposed openstack/tempest: Move backups_clients code to v2 directory https://review.openstack.org/261215 | 07:46 |
gmann | mkoderer: sdague mtreinish andreaf - please have look on microversion testing patches - https://review.openstack.org/#/q/status:open+project:openstack/tempest+branch:master+topic:bp/api-microversions-testing-support | 07:50 |
*** _nadya_ has joined #openstack-qa | 07:52 | |
*** _nadya_ has quit IRC | 07:53 | |
*** aopincar has quit IRC | 07:53 | |
openstackgerrit | Ken'ichi Ohmichi proposed openstack/tempest: Add different_host test on multiple nodes https://review.openstack.org/257660 | 07:56 |
openstackrecheck | Console logs not available after 13:25s for gate-tempest-dsvm-full 261126,2,8fa0831 | 07:56 |
*** gamado has joined #openstack-qa | 07:56 | |
*** safchain has joined #openstack-qa | 07:58 | |
*** coolsvap is now known as coolsvap|away | 08:00 | |
*** salv-orl_ has joined #openstack-qa | 08:01 | |
*** salv-orlando has quit IRC | 08:05 | |
*** salv-orl_ has quit IRC | 08:05 | |
*** ifarkas has joined #openstack-qa | 08:07 | |
openstackrecheck | Console logs not available after 13:23s for gate-tempest-dsvm-full 259677,18,66a6be1 | 08:10 |
openstackgerrit | Merged openstack-dev/devstack: Write volume API version into clouds.yaml https://review.openstack.org/262831 | 08:18 |
openstackrecheck | Console logs not available after 13:25s for gate-tempest-dsvm-neutron-full-kilo 262371,2,c3f3eb0 | 08:23 |
openstackgerrit | Federico Ressi proposed openstack-dev/devstack: Don't reinstall package just after installing. https://review.openstack.org/262074 | 08:24 |
openstackgerrit | Federico Ressi proposed openstack-dev/devstack: Preserve result returned by apt-get and pip https://review.openstack.org/248349 | 08:24 |
openstackgerrit | Federico Ressi proposed openstack-dev/devstack: Don't die when yum fails. https://review.openstack.org/263061 | 08:24 |
*** armax has quit IRC | 08:28 | |
*** shardy has joined #openstack-qa | 08:33 | |
*** mpaolino has joined #openstack-qa | 08:35 | |
chmouel | mkoderer: pong | 08:36 |
openstackrecheck | Console logs not available after 13:22s for gate-tempest-dsvm-full 257693,19,83e83e6 | 08:37 |
mkoderer | chmouel: sdague already took care about my issue :) thanks anyway | 08:39 |
openstackgerrit | Yair Fried proposed openstack/tempest: Security Groups multi-node scenario https://review.openstack.org/259746 | 08:44 |
*** jlanoux has joined #openstack-qa | 08:48 | |
*** _nadya_ has joined #openstack-qa | 08:53 | |
*** jecarey has joined #openstack-qa | 08:57 | |
*** _nadya_ has quit IRC | 08:58 | |
*** jecarey has quit IRC | 09:01 | |
*** jordanP has joined #openstack-qa | 09:05 | |
*** _nadya_ has joined #openstack-qa | 09:06 | |
*** _nadya_ has quit IRC | 09:08 | |
openstackgerrit | Merged openstack-dev/devstack: Adding cue to plugin registry https://review.openstack.org/260661 | 09:11 |
openstackgerrit | Yair Fried proposed openstack/tempest: Security Groups multi-node scenario https://review.openstack.org/259746 | 09:13 |
openstackgerrit | Merged openstack-dev/devstack: Removed starting of nova-ec2-api service https://review.openstack.org/263187 | 09:13 |
openstackgerrit | Merged openstack-dev/devstack: Fix heat config when using keystone v3 https://review.openstack.org/261398 | 09:13 |
*** bochi-michael has quit IRC | 09:15 | |
*** jecarey has joined #openstack-qa | 09:17 | |
openstackgerrit | Yair Fried proposed openstack/tempest: Security Groups multi-node scenario https://review.openstack.org/259746 | 09:17 |
*** coolsvap|away is now known as coolsvap | 09:17 | |
openstackgerrit | Merged openstack/tempest-lib: Change LOG.warn to LOG.warning https://review.openstack.org/263125 | 09:19 |
openstackrecheck | Console logs not available after 13:25s for gate-tempest-dsvm-neutron-full 255385,6,eebe4ee | 09:21 |
*** jecarey has quit IRC | 09:22 | |
*** hop has joined #openstack-qa | 09:23 | |
*** drptbl has joined #openstack-qa | 09:23 | |
openstackgerrit | Daniel Mellado proposed openstack/tempest: Split users_client from keystone client v2. https://review.openstack.org/255385 | 09:24 |
openstackgerrit | Joseph Lanoux proposed openstack/tempest: WIP - DO NOT REVIEW https://review.openstack.org/259515 | 09:26 |
openstackrecheck | Console logs not available after 13:22s for gate-tempest-dsvm-neutron-full 263592,1,aa12d16 | 09:35 |
yfried | gmann: masayukig: afazekas: could you please review https://review.openstack.org/259746 Security Groups multi-node scenario? | 09:36 |
yfried | dmellado: ^ | 09:36 |
openstackgerrit | Yair Fried proposed openstack/tempest: Security Groups multi-node scenario https://review.openstack.org/259746 | 09:41 |
openstackrecheck | Console logs not available after 13:25s for gate-tempest-dsvm-ceilometer-mysql-neutron-full 261215,8,38a7b1a | 09:49 |
vponomaryov | gmann, mkoderer: Manila does require fixed set of creds | 10:01 |
vponomaryov | gmann, mkoderer: having only "dynamic" completely not suitable | 10:01 |
vponomaryov | gmann, mkoderer: Manila uses heavy resources under created tenant, and will b forced to recreate heavy resources all the time. | 10:02 |
openstackrecheck | Console logs not available after 13:23s for gate-tempest-dsvm-ceilometer-mysql-neutron-full 262389,1,71a73ac | 10:02 |
vponomaryov | gmann, mkoderer: so, key "force_tenant_isolation=False" should be set for most of manila tests | 10:03 |
*** boris-42 has quit IRC | 10:03 | |
vponomaryov | gmann, mkoderer: acording to description of https://bugs.launchpad.net/manila/+bug/1531049 manila can not be fixed using latest devstack and tempest | 10:05 |
openstack | Launchpad bug 1531049 in Mistral "Devstack stop supporting Temepst deprecated cred options" [Undecided,In progress] - Assigned to hardik (hardik-parekh047) | 10:05 |
vponomaryov | gmann, mkoderer: because "preprovisioned credentials" does not work yet and "legacy credentials" already removed | 10:06 |
vponomaryov | gmann, mkoderer: the only workaround I see now - set tempest config opts by manila's devstack hooks | 10:06 |
vponomaryov | gmann, mkoderer: and continue use legacy code | 10:07 |
vponomaryov | gmann, mkoderer: until "preprovisioned credentials" starts work | 10:07 |
gmann | vponomaryov: i see, so until pre provisioned cred works fine you can set configured cred (deprecated one) in devstack from plugin | 10:07 |
gmann | vponomaryov: which will unblock the issue as of now | 10:07 |
*** _nadya_ has joined #openstack-qa | 10:09 | |
vponomaryov | gmann: legacy way should have not been removed in this case, until "preprovisioned credentials" | 10:09 |
vponomaryov | gmann: so, I think, the correct way is to revert devstack's change with opts removal | 10:09 |
*** yamahata has quit IRC | 10:10 | |
vponomaryov | until "preprovisioned credentials" are usable | 10:11 |
gmann | vponomaryov: yea | 10:11 |
gmann | vponomaryov: not revert, you can set from manila devstack plugin itself | 10:12 |
vponomaryov | gmann: manila not the only project that suffer | 10:12 |
openstackgerrit | Merged openstack/tempest: Correct wrong message in configuration doc https://review.openstack.org/263172 | 10:14 |
*** _nadya_ has quit IRC | 10:14 | |
*** hoangcx_ has quit IRC | 10:15 | |
openstackrecheck | Console logs not available after 13:22s for gate-tempest-dsvm-full-liberty 261408,2,d071815 | 10:15 |
*** tosky has joined #openstack-qa | 10:22 | |
*** sshnaidm_ has joined #openstack-qa | 10:25 | |
*** dtantsur|afk is now known as dtantsur | 10:28 | |
openstackrecheck | Console logs not available after 13:25s for gate-tempest-dsvm-large-ops 263061,3,42c13e1 | 10:29 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/tempest: Updated from global requirements https://review.openstack.org/262923 | 10:31 |
openstackgerrit | tanyy proposed openstack/tempest-lib: Remove MANIFEST.in https://review.openstack.org/263668 | 10:42 |
openstackrecheck | Console logs not available after 13:23s for gate-tempest-dsvm-ceilometer-mysql-neutron-full 257660,11,f899a77 | 10:42 |
*** salv-orlando has joined #openstack-qa | 10:44 | |
*** dims has joined #openstack-qa | 10:47 | |
*** yamamoto has joined #openstack-qa | 10:56 | |
openstackrecheck | Console logs not available after 13:22s for gate-horizon-pep8 245662,2,7bc69c2 | 10:56 |
openstackrecheck | openstack/nova change: https://review.openstack.org/263238 failed because of: gate-grenade-dsvm-multinode: https://bugs.launchpad.net/bugs/1446583 | 10:56 |
openstack | Launchpad bug 1446583 in oslo.service "services no longer reliably stop in stable/liberty / master" [Critical,Fix released] - Assigned to Marian Horban (mhorban) | 10:56 |
*** cdent has joined #openstack-qa | 11:02 | |
*** lucas-dinner is now known as lucasagomes | 11:03 | |
*** yamamoto has quit IRC | 11:04 | |
openstackrecheck | Console logs not available after 13:29s for experimental-tempest-dsvm-neutron-full-dibtest 257660,11,b97866b | 11:09 |
hop | jordanP: hi, could you please review this small patch https://review.openstack.org/#/c/259424/ ? | 11:09 |
*** _nadya_ has joined #openstack-qa | 11:10 | |
*** tochi has quit IRC | 11:13 | |
*** salv-orlando has quit IRC | 11:13 | |
*** nicholasgoracke has joined #openstack-qa | 11:14 | |
*** salv-orlando has joined #openstack-qa | 11:14 | |
*** _nadya_ has quit IRC | 11:15 | |
hop | jordanP: thank you! | 11:15 |
jordanP | no probelm | 11:16 |
*** salv-orlando has quit IRC | 11:16 | |
*** salv-orlando has joined #openstack-qa | 11:17 | |
*** jecarey has joined #openstack-qa | 11:18 | |
*** salv-orlando has quit IRC | 11:18 | |
*** nicholasgoracke has quit IRC | 11:18 | |
*** salv-orlando has joined #openstack-qa | 11:20 | |
*** salv-orl_ has joined #openstack-qa | 11:21 | |
*** salv-orlando has quit IRC | 11:21 | |
*** jecarey has quit IRC | 11:23 | |
*** salv-orl_ has quit IRC | 11:23 | |
*** salv-orlando has joined #openstack-qa | 11:23 | |
*** salv-orlando has quit IRC | 11:24 | |
openstackrecheck | Console logs not available after 13:31s for gate-nova-python34 258813,4,e199a43 | 11:25 |
*** aix has quit IRC | 11:25 | |
*** dimtruck is now known as zz_dimtruck | 11:25 | |
*** salv-orlando has joined #openstack-qa | 11:26 | |
openstackgerrit | Sean Dague proposed openstack-dev/devstack: set the validation path to fixed for n-net https://review.openstack.org/263685 | 11:26 |
*** salv-orlando has quit IRC | 11:29 | |
*** salv-orlando has joined #openstack-qa | 11:29 | |
*** salv-orlando has quit IRC | 11:30 | |
*** salv-orlando has joined #openstack-qa | 11:32 | |
*** salv-orlando has quit IRC | 11:35 | |
*** salv-orlando has joined #openstack-qa | 11:36 | |
openstackrecheck | Console logs not available after 13:32s for gate-grenade-dsvm 253732,8,43ef0a8 | 11:38 |
*** salv-orlando has quit IRC | 11:43 | |
*** salv-orl_ has joined #openstack-qa | 11:43 | |
*** salv-orl_ has quit IRC | 11:46 | |
*** salv-orlando has joined #openstack-qa | 11:47 | |
*** salv-orlando has quit IRC | 11:47 | |
*** salv-orl_ has joined #openstack-qa | 11:51 | |
openstackrecheck | Console logs not available after 13:22s for gate-grenade-dsvm 263598,1,147b9ee | 11:51 |
*** salv-orl_ has quit IRC | 11:53 | |
*** coolsvap is now known as coolsvap|away | 11:54 | |
*** salv-orl_ has joined #openstack-qa | 11:55 | |
*** salv-orl_ has quit IRC | 11:56 | |
*** salv-orlando has joined #openstack-qa | 11:57 | |
*** salv-orlando has quit IRC | 11:58 | |
openstackgerrit | Sean Dague proposed openstack-dev/devstack: Update ssh setup for live migration default config https://review.openstack.org/221200 | 11:58 |
*** Poornima has quit IRC | 11:59 | |
*** mpaolino has quit IRC | 12:00 | |
kashyap | afazekas: Heya, just got back to this again, as you say 'no need', but it doesn't hurt either as it's not relevant anyway, no? - https://review.openstack.org/#/c/251980/1/tools/fixup_stuff.sh | 12:00 |
*** salv-orlando has joined #openstack-qa | 12:04 | |
*** zz_dimtruck is now known as dimtruck | 12:04 | |
openstackrecheck | Console logs not available after 13:22s for experimental-tempest-dsvm-multinode-full-dibtest 255385,7,7d4cfa1 | 12:05 |
*** salv-orlando has quit IRC | 12:05 | |
openstackrecheck | openstack/tempest change: https://review.openstack.org/261924 failed gate-grenade-dsvm-multinode in the gate queue with an unrecognized error | 12:06 |
*** erlon has joined #openstack-qa | 12:06 | |
openstackgerrit | Kashyap Chamarthy proposed openstack-dev/devstack: Remove support for Fedora 21 (EOL); add F22 where appropriate https://review.openstack.org/251980 | 12:08 |
*** salv-orlando has joined #openstack-qa | 12:10 | |
sdague | kashyap: thanks for that patch, I was just looking for it | 12:10 |
sdague | because I was surprised f21 was still in the code | 12:11 |
*** salv-orlando has quit IRC | 12:12 | |
*** salv-orl_ has joined #openstack-qa | 12:12 | |
*** salv-orl_ has quit IRC | 12:13 | |
kashyap | sdague: Sorry for not getting back to it, missed to notice it. | 12:15 |
*** dimtruck is now known as zz_dimtruck | 12:15 | |
openstackrecheck | Console logs not available after 13:23s for gate-tempest-dsvm-neutron-dvr 259746,8,85fc556 | 12:19 |
afazekas | kashyap: np | 12:31 |
kashyap | afazekas: Thanks for taking a look :-) | 12:31 |
afazekas | BTW in the elasticsearch.sh we might need to distinguish centos/rhel from fedora | 12:32 |
openstackrecheck | Console logs not available after 13:23s for gate-tempest-dsvm-full-ceph 258984,10,1fd94d1 | 12:32 |
afazekas | the fedora version implicitly a switch between centos ~ 7 , fedora ~ 23 | 12:33 |
openstackgerrit | Yair Fried proposed openstack/tempest: Security Groups multi-node scenario https://review.openstack.org/259746 | 12:37 |
yfried | bkopilov: ^ tnx. used your fix | 12:37 |
*** rfolco has joined #openstack-qa | 12:39 | |
bkopilov | yfried, ok . | 12:40 |
*** aopincar has joined #openstack-qa | 12:42 | |
openstackgerrit | Sean Dague proposed openstack-dev/devstack: Use keystone[ldap] for ldap packages https://review.openstack.org/208153 | 12:42 |
openstackgerrit | Sean Dague proposed openstack-dev/devstack: Support extra dependencies when setup_develop https://review.openstack.org/208584 | 12:42 |
*** gfidente has joined #openstack-qa | 12:45 | |
*** gfidente has quit IRC | 12:45 | |
*** gfidente has joined #openstack-qa | 12:45 | |
*** bkopilov has quit IRC | 12:46 | |
openstackrecheck | Console logs not available after 13:23s for gate-horizon-python34 263657,1,b1fda5c | 12:46 |
*** salv-orlando has joined #openstack-qa | 12:47 | |
*** salv-orlando has quit IRC | 12:48 | |
*** moravec has quit IRC | 12:54 | |
*** aopincar has quit IRC | 12:55 | |
*** moravec has joined #openstack-qa | 12:56 | |
*** bkopilov has joined #openstack-qa | 12:58 | |
openstackrecheck | Console logs not available after 13:21s for gate-nova-pep8 263353,2,9383767 | 12:59 |
sdague | bknudson_: when you get around, see if you are ok with those respins? | 13:01 |
sdague | I know this has been a long time coming, so I want to figure out what everyone's good with to land | 13:02 |
*** zz_dimtruck is now known as dimtruck | 13:07 | |
openstackgerrit | Sean Dague proposed openstack-infra/elastic-recheck: ovh cirros crashing bug https://review.openstack.org/263722 | 13:11 |
*** _nadya_ has joined #openstack-qa | 13:12 | |
openstackrecheck | Console logs not available after 13:22s for experimental-tempest-dsvm-full-dibtest 259746,8,c9525f9 | 13:13 |
*** aix has joined #openstack-qa | 13:14 | |
kashyap | afazekas: Missed your comment, yeah, can look into it as a follow up | 13:15 |
*** _nadya_ has quit IRC | 13:16 | |
*** jecarey has joined #openstack-qa | 13:19 | |
*** dimtruck is now known as zz_dimtruck | 13:20 | |
*** moravec has quit IRC | 13:22 | |
*** jecarey has quit IRC | 13:23 | |
*** moravec has joined #openstack-qa | 13:25 | |
openstackrecheck | Console logs not available after 13:22s for gate-tempest-dsvm-postgres-full 259515,4,9c26d1d | 13:27 |
*** edmondsw has joined #openstack-qa | 13:27 | |
*** TuanNguyen has joined #openstack-qa | 13:28 | |
*** weshay_xchat has joined #openstack-qa | 13:34 | |
*** weshay_xchat is now known as weshay | 13:34 | |
*** anshul has quit IRC | 13:35 | |
openstackgerrit | Merged openstack-infra/elastic-recheck: ovh cirros crashing bug https://review.openstack.org/263722 | 13:36 |
*** openstackrecheck has quit IRC | 13:39 | |
*** openstackrecheck has joined #openstack-qa | 13:39 | |
openstackgerrit | Sean Dague proposed openstack-dev/devstack: set the validation path to fixed for n-net https://review.openstack.org/263685 | 13:40 |
*** moravec has quit IRC | 13:42 | |
*** gamado has quit IRC | 13:44 | |
*** TuanNguyen has quit IRC | 13:45 | |
*** shardy has quit IRC | 13:47 | |
openstackgerrit | Mauro Rodrigues proposed openstack-dev/devstack: Check for network id before create probe for neutron's network https://review.openstack.org/251911 | 13:48 |
*** shardy has joined #openstack-qa | 13:49 | |
*** mpaolino has joined #openstack-qa | 13:52 | |
*** dtantsur is now known as dtantsur|brb | 13:54 | |
openstackgerrit | Merged openstack/tempest: Add logic to select the request microversion https://review.openstack.org/244439 | 13:56 |
*** neeti has quit IRC | 13:58 | |
*** lucasagomes is now known as lucas-hungry | 14:00 | |
*** amotoki has quit IRC | 14:00 | |
openstackgerrit | Mauro Rodrigues proposed openstack-dev/devstack: Check for network id before create probe for neutron's network https://review.openstack.org/251911 | 14:02 |
*** dkranz has joined #openstack-qa | 14:02 | |
bknudson_ | sdague: I'll check when I get in to the office in a few mins. The keystone code hasn't changed so the old devstack change should still be good. | 14:03 |
sdague | bknudson_: yeh, I just tweaked a couple of things | 14:03 |
*** zz_dimtruck is now known as dimtruck | 14:04 | |
sdague | but I want to make sure you are ok with the changes | 14:04 |
openstackgerrit | Davanum Srinivas (dims) proposed openstack-dev/grenade: [WIP] Remove ec2 during upgrade https://review.openstack.org/263741 | 14:07 |
*** krtaylor has joined #openstack-qa | 14:17 | |
pc_m | Hi testers! I'm trying to run py34 target (locally) in neutron-vpnaas repo with no changes and see a strange error (that is not seen in gate). Wondering if anyone has ideas on this? | 14:18 |
*** woodster_ has joined #openstack-qa | 14:19 | |
pc_m | Essentialy the run says 497 tests pass, no failures, and then shows an invocation error message on pretty_tox.sh (the test used) and indicates failure. | 14:19 |
pc_m | http://paste.openstack.org/show/483030/ | 14:21 |
pc_m | Anyone have an idea how to diagnose this? | 14:21 |
*** dimtruck is now known as zz_dimtruck | 14:29 | |
*** _nadya_ has joined #openstack-qa | 14:29 | |
hop | pc_m: hi, did you try to remove .tox directory and run tox again ? | 14:34 |
*** regXboi has joined #openstack-qa | 14:34 | |
pc_m | hop: not recently. Will try... | 14:34 |
pc_m | hop: I see neutron uses ostestr and not pretty_tox.sh, which uses testr. Is there a preference for one over the other? | 14:37 |
pc_m | hop: I get the exact same error. | 14:39 |
pc_m | It passes and then shows an error. | 14:39 |
openstackrecheck | Console logs not available after 13:26s for gate-tempest-dsvm-cells 197569,29,685f5d8 | 14:39 |
*** shausy has quit IRC | 14:40 | |
*** jecarey has joined #openstack-qa | 14:41 | |
hop | pc_m: hm, it's strange. sorry, I have no idea | 14:42 |
*** jecarey has quit IRC | 14:42 | |
*** jecarey has joined #openstack-qa | 14:43 | |
*** jecarey_ has joined #openstack-qa | 14:44 | |
*** dtantsur|brb is now known as dtantsur | 14:44 | |
*** moravec has joined #openstack-qa | 14:46 | |
*** erlon has quit IRC | 14:46 | |
pc_m | hop: Thanks. Must be some difference in my local environment, as it works in the gate. | 14:46 |
*** jecarey has quit IRC | 14:47 | |
*** mriedem_away is now known as mriedem | 14:48 | |
*** nicholasgoracke has joined #openstack-qa | 14:48 | |
*** malini has joined #openstack-qa | 14:49 | |
*** dkranz has quit IRC | 14:49 | |
*** dkranz has joined #openstack-qa | 14:50 | |
*** obutenko has joined #openstack-qa | 14:53 | |
openstackrecheck | Console logs not available after 13:22s for experimental-tempest-dsvm-full-dibtest 259746,9,d690f81 | 14:53 |
*** zz_dimtruck is now known as dimtruck | 14:53 | |
*** rbak has joined #openstack-qa | 14:57 | |
*** sbadia has left #openstack-qa | 14:58 | |
openstackgerrit | Merged openstack/tempest: Change LOG.warn to LOG.warning https://review.openstack.org/263131 | 14:59 |
*** SridharG has quit IRC | 15:03 | |
*** lucas-hungry is now known as lucasagomes | 15:05 | |
openstackrecheck | Console logs not available after 13:23s for gate-tempest-dsvm-nova-v20-api 257995,11,5945833 | 15:06 |
*** mfisher_ora has joined #openstack-qa | 15:10 | |
kashyap | Is current DevStack Git working fine for folks? I see it failing saying how '-c' is not an option for 'pip install', which is clearly nonsense as '-c' *is* a valid option that means "Constrain versions using the given constraints file. This option can be used multiple times." | 15:11 |
kashyap | afazekas: ^ | 15:11 |
kashyap | (Or anyone) | 15:11 |
sdague | mriedem: are we tracking this yet - http://logstash.openstack.org/#dashboard/file/logstash.json?query=message%3A%5C%22bash%3A%20install_package%3A%20command%20not%20found%5C%22 | 15:14 |
sdague | kashyap: you using an old pip? | 15:14 |
kashyap | Oh, likely - I was using Fedora 22 | 15:15 |
*** yfried has quit IRC | 15:15 | |
kashyap | sdague: I'm using this version python-pip-6.0.8-1.fc22.noarch | 15:15 |
mriedem | sdague: i haven't seen that | 15:16 |
kashyap | $ pip help install | grep -i constraint -c, --constraint <file> Constrain versions using the given constraints file. This option can be used multiple times. | 15:16 |
sdague | kashyap: you need 7 I thought | 15:16 |
sdague | kashyap: we did just merge the change to not uninstall pip from package | 15:16 |
kashyap | sdague: Okay, I'll upgrade the darn machine to F23 | 15:16 |
sdague | so you might have 2 there | 15:16 |
kashyap | Thanks for the detail | 15:16 |
mtreinish | gmann: so there isn't any need to revert that devstack patch. It's a simple matter to either fix the plugins which break to use the abstracted credential provider (the right way as this will be moved to lib soon) or add the creds back in with a devstack plugin | 15:18 |
mtreinish | gmann: also force_tenant_isolation doesn't do what you think it does, it's for tests where an cleanly created tenant is required only (like quota testing) | 15:19 |
openstackgerrit | Davanum Srinivas (dims) proposed openstack-dev/grenade: [WIP] Remove ec2 during upgrade https://review.openstack.org/263741 | 15:19 |
afazekas | sdague, kashyap : the do not remove should be applied only on f23 not on f22 | 15:19 |
openstackrecheck | Console logs not available after 13:21s for gate-nova-python34 263343,2,19a8ab8 | 15:20 |
mtreinish | gmann: it's just to avoid code duplication and is different from the configured credentials | 15:20 |
*** nicholasgoracke has quit IRC | 15:20 | |
sdague | afazekas: ok, I guess it didn't merge yet - https://review.openstack.org/#/c/246618/2/tools/install_pip.sh | 15:21 |
afazekas | kashyap: at the moment I am blind about what is working, I'll check it later, hopefully tomorrow | 15:21 |
sdague | if you want to comment there, please do | 15:21 |
*** nicholasgoracke has joined #openstack-qa | 15:21 | |
sdague | honestly, f21 was all that was running in the gate, that broke, went EOL | 15:21 |
sdague | nothing else has ever been made to work in the gate yet | 15:21 |
kashyap | afazekas: Looking (/me trying to context switching while reading some libvirt code and this) | 15:22 |
afazekas | sdague, The script expected to install the latest pip anyway | 15:22 |
afazekas | kashyap, is devstack removed python-2.7 from your system ? | 15:25 |
openstackgerrit | Sean Dague proposed openstack-infra/elastic-recheck: add bug for subnode failing to come up https://review.openstack.org/263769 | 15:25 |
kashyap | afazekas: Afraid, I'm at a no point of return -- my multi-node DevStack F22 env is now upgrading to F23 | 15:25 |
*** pglass has joined #openstack-qa | 15:32 | |
openstackrecheck | Console logs not available after 13:21s for gate-tempest-dsvm-nova-v20-api 258441,2,db789fb | 15:33 |
*** shardy has quit IRC | 15:35 | |
*** naggappan has quit IRC | 15:41 | |
*** cdent has quit IRC | 15:42 | |
*** shardy has joined #openstack-qa | 15:44 | |
openstackrecheck | Console logs not available after 13:23s for gate-tempest-dsvm-postgres-full 263318,1,df3c4db | 15:46 |
*** malini has left #openstack-qa | 15:52 | |
ekarlso | hey guys, did you change anything in the tempest lib ? Designate's gate is blowing up | 15:53 |
*** Guest20726 has joined #openstack-qa | 15:53 | |
*** cdent has joined #openstack-qa | 15:53 | |
*** artom has joined #openstack-qa | 15:53 | |
*** aix has quit IRC | 15:55 | |
openstackgerrit | Merged openstack-infra/elastic-recheck: add bug for subnode failing to come up https://review.openstack.org/263769 | 15:56 |
clarkb | ekarlso: the change is in devstack no longer using deprecated config options | 15:56 |
clarkb | ekarlso: neutron ran into it also, if you want to see how they are dealing with it | 15:56 |
vponomaryov | ekarlso: https://bugs.launchpad.net/manila/+bug/1531049 | 15:57 |
openstack | Launchpad bug 1531049 in Mistral "Devstack stop supporting Tempest deprecated cred options" [Undecided,In progress] - Assigned to hardik (hardik-parekh047) | 15:57 |
vponomaryov | ekarlso: if you think it is suitable for designate too, then add your project there too | 15:58 |
*** weshay_xchat has joined #openstack-qa | 15:58 | |
openstackrecheck | Console logs not available after 13:23s for gate-tempest-dsvm-full 257956,11,be570f9 | 16:00 |
*** mtanino has joined #openstack-qa | 16:00 | |
openstackgerrit | Eric Fried proposed openstack/tempest: Typos and consistency in configuration.rst https://review.openstack.org/257582 | 16:01 |
*** mragupat has joined #openstack-qa | 16:01 | |
*** weshay has quit IRC | 16:01 | |
jswarren | mtreinish: Do you know when the QA code sprint for mitaka will be scheduled? Not when it'll be (unless you already know), but rather when the decision will be made when and where it'll be. | 16:02 |
*** itzikb_ has quit IRC | 16:03 | |
mtreinish | jswarren: so we have things tenatively scheduled already: https://wiki.openstack.org/wiki/QA/CodeSprintMitakaBoston I'm waiting for final confirmation before I announce it and make it official | 16:04 |
*** nicholasgoracke has quit IRC | 16:04 | |
openstackgerrit | Merged openstack-infra/subunit2sql: Stop using implict joins https://review.openstack.org/261771 | 16:06 |
mtreinish | I hope to annouce it this week (or early next week at the latest) | 16:06 |
mtreinish | david-lyle: any thoughts on: https://review.openstack.org/#/c/259646/ ? | 16:07 |
*** openstackrecheck has quit IRC | 16:08 | |
*** openstackrecheck has joined #openstack-qa | 16:08 | |
*** cdent has quit IRC | 16:09 | |
*** austin81 has joined #openstack-qa | 16:14 | |
*** dave-mccowan has joined #openstack-qa | 16:15 | |
ekarlso | so what are dynamic credentials ? | 16:16 |
openstackgerrit | Joe Hakim Rahme proposed openstack/tempest: Silences Javelin UT https://review.openstack.org/263791 | 16:17 |
*** hemnafk is now known as hemna | 16:18 | |
ekarlso | clarkb: / vponomaryov | 16:18 |
sdague | mtreinish: why does ostestr vomit out subunit here - http://logs.openstack.org/96/263296/1/gate/gate-nova-python34/c5e5dec/console.html#_2016-01-05_04_16_06_335 ? | 16:18 |
mtreinish | sdague: I'm not sure, I've not seen that before | 16:21 |
ekarlso | noone really ? | 16:21 |
ekarlso | :p | 16:21 |
openstackrecheck | Console logs not available after 13:22s for gate-tempest-dsvm-full 193135,59,811ea59 | 16:21 |
sdague | it seems to do it when we've raced on python 34 unit tests | 16:21 |
*** nicholasgoracke has joined #openstack-qa | 16:21 | |
clarkb | ekarlso: I do not know and would have to look it up myself | 16:22 |
clarkb | ekarlso: google says http://docs.openstack.org/developer/tempest/configuration.html#dynamic-credentials | 16:22 |
ekarlso | clarkb: hmmms | 16:22 |
mtreinish | ekarlso: http://docs.openstack.org/developer/tempest/configuration.html#credential-provider-mechanisms | 16:22 |
mtreinish | sdague: oh, it's actually running subunit discover in the tox.ini | 16:24 |
*** slowrie has joined #openstack-qa | 16:24 | |
mtreinish | sdague: https://github.com/openstack/nova/blob/master/tox.ini#L49 | 16:24 |
*** ccneill has joined #openstack-qa | 16:25 | |
*** woodster_ has quit IRC | 16:26 | |
*** hop has quit IRC | 16:26 | |
*** vgridnev has joined #openstack-qa | 16:27 | |
mtreinish | sdague: so the output should always be there, I'm not sure why you do that (or why it wouldn't be printed in some cases | 16:27 |
*** nicholasgoracke has quit IRC | 16:28 | |
sdague | dims: ^^ ? | 16:29 |
*** vgridnev_ has joined #openstack-qa | 16:32 | |
sdague | I wonder if that was meant to only be a short term issue when discovery wasn't running | 16:32 |
*** cdent has joined #openstack-qa | 16:32 | |
*** vgridnev has quit IRC | 16:32 | |
mtreinish | sdague: the patch that added it seems to indicate that: https://review.openstack.org/#/c/204723/ | 16:34 |
openstackrecheck | Console logs not available after 13:21s for gate-grenade-dsvm 263756,1,1be640f | 16:35 |
sdague | dims: any reason I can't remove that, it does some pretty goofy things to logstash | 16:35 |
dims | sdague : it was added to make sure that we catch py34 incompat changes in tests we were not running | 16:37 |
dims | sdague : sure | 16:37 |
sdague | dims: actually mtreinish pushed a patch | 16:39 |
sdague | now that we're doing ostestr it should do that for us already | 16:39 |
dims | +1 sdague | 16:40 |
openstackgerrit | Merged openstack/stackviz: Add missing DI annotations and enable strictDi. https://review.openstack.org/263484 | 16:41 |
*** tosky has quit IRC | 16:42 | |
*** tosky has joined #openstack-qa | 16:42 | |
*** aix has joined #openstack-qa | 16:44 | |
*** weshay__xchat has joined #openstack-qa | 16:44 | |
openstackgerrit | Henrique Truta proposed openstack-dev/devstack: Adding ENABLE_IDENTITY_V2 on docs https://review.openstack.org/263801 | 16:45 |
openstackgerrit | Davanum Srinivas (dims) proposed openstack/os-testr: Support comments in whitelist files https://review.openstack.org/263803 | 16:45 |
dims | mtreinish : sdague : ^^ | 16:46 |
dims | mtreinish : we need to add comments in nova's whitelist file so folks don't re-add tests that are flaky | 16:46 |
mtreinish | dims: I'll trade you: https://review.openstack.org/263465 | 16:46 |
mtreinish | dims: sure, that makes sense | 16:46 |
dims | mtreinish : cool looking | 16:46 |
*** weshay_xchat has quit IRC | 16:47 | |
mtreinish | dims: +2 | 16:48 |
mtreinish | dims: the only thing with my patch is I also proposed adding the missing feature to subunit-output upstream | 16:49 |
mtreinish | so I'm not sure whether we want to add it to os-testr or not | 16:49 |
dims | mtreinish : am ok to roll with what you have :) +2 | 16:52 |
mtreinish | ok cool | 16:52 |
mtreinish | dims: well hopefully sdague will slam both through soon | 16:52 |
dims | sounds good mtreinish | 16:53 |
mtreinish | otherwise I'll just +A them in a day or 2 | 16:53 |
dims | y | 16:53 |
*** armax has joined #openstack-qa | 16:53 | |
sdague | +A | 16:53 |
mtreinish | cool, thanks | 16:58 |
mtreinish | dims: I can plan to push a release today if we need it | 16:58 |
dims | mtreinish : +1 | 16:58 |
openstackgerrit | Merged openstack/os-testr: Add tool to create a subunit stream https://review.openstack.org/263465 | 17:00 |
*** ttx has quit IRC | 17:00 | |
*** ttx has joined #openstack-qa | 17:01 | |
*** jlanoux has quit IRC | 17:05 | |
openstackgerrit | James E. Blair proposed openstack-infra/devstack-gate: Use qemu everywhere https://review.openstack.org/263810 | 17:07 |
*** nicholasgoracke has joined #openstack-qa | 17:08 | |
*** e0ne has quit IRC | 17:11 | |
openstackgerrit | Brian Haley proposed openstack-dev/devstack: Delete OVS port on unstack to retain system connectivity https://review.openstack.org/246725 | 17:12 |
*** safchain has quit IRC | 17:14 | |
openstackrecheck | Console logs not available after 13:24s for gate-nova-pep8 153038,69,cd218ee | 17:17 |
*** drptbl has quit IRC | 17:17 | |
*** moravec has quit IRC | 17:18 | |
openstackgerrit | Sean M. Collins proposed openstack-dev/grenade: Call worlddump when SSH verification fails https://review.openstack.org/263813 | 17:18 |
sc68cal | sdague: fyi I just +2+A'd https://review.openstack.org/263611 | 17:22 |
sc68cal | sdague: pbr fix for bashate | 17:22 |
openstackgerrit | Merged openstack/os-testr: Support comments in whitelist files https://review.openstack.org/263803 | 17:24 |
*** vgridnev_ has quit IRC | 17:24 | |
*** moravec has joined #openstack-qa | 17:27 | |
*** moravec has quit IRC | 17:27 | |
*** dims has quit IRC | 17:29 | |
openstackgerrit | Merged openstack/tempest: Fix password not strong enough for identity test_groups https://review.openstack.org/259424 | 17:31 |
openstackgerrit | Merged openstack-dev/devstack: Do not fail with Tox 2.3.1 https://review.openstack.org/263463 | 17:31 |
openstackrecheck | Console logs not available after 13:34s for gate-nova-tox-functional 245921,18,90e6736 | 17:31 |
openstackgerrit | Merged openstack-dev/devstack: Add existing devstack plugins to the devstack plugin list https://review.openstack.org/247991 | 17:32 |
*** shardy has quit IRC | 17:34 | |
*** dims has joined #openstack-qa | 17:36 | |
*** shardy has joined #openstack-qa | 17:36 | |
*** aix has quit IRC | 17:38 | |
*** moravec has joined #openstack-qa | 17:39 | |
*** moravec1 has joined #openstack-qa | 17:40 | |
*** austin81 has quit IRC | 17:40 | |
*** austin81 has joined #openstack-qa | 17:40 | |
mtreinish | dims: https://pypi.python.org/pypi/os-testr/0.6.0 | 17:41 |
*** nicholasgoracke has quit IRC | 17:41 | |
*** dtantsur is now known as dtantsur|afk | 17:42 | |
dims | mtreinish : should we bump upper-constraints.txt? | 17:43 |
*** moravec has quit IRC | 17:44 | |
mtreinish | dims: well the py34 job is unconstrained right so it won't block you :) | 17:44 |
mtreinish | but it's probably a good idea | 17:44 |
dims | true | 17:44 |
mtreinish | it is a blocker for: https://review.openstack.org/#/c/234232/7 | 17:44 |
*** nicholasgoracke has joined #openstack-qa | 17:44 | |
openstackgerrit | John Warren proposed openstack/tempest: Rename references to compute security group rules client https://review.openstack.org/263825 | 17:46 |
openstackrecheck | Console logs not available after 13:22s for gate-tempest-dsvm-neutron-src-glance_store 253627,2,ddabf4b | 17:48 |
*** Swami has joined #openstack-qa | 17:49 | |
*** yamahata has joined #openstack-qa | 17:49 | |
openstackgerrit | Jordan Pittier proposed openstack/tempest: Scenario manager: don't access glance_client if Glance is not available https://review.openstack.org/242076 | 17:52 |
*** nicholasgoracke has quit IRC | 17:56 | |
*** mragupat has quit IRC | 17:56 | |
*** lezbar has quit IRC | 17:56 | |
sdague | sc68cal: sounds good to me | 17:56 |
*** mragupat has joined #openstack-qa | 17:56 | |
*** nicholasgoracke has joined #openstack-qa | 17:58 | |
sc68cal | sdague: for 248255 - is "C" a reasonable locale in 2016? | 17:58 |
*** nicholasgoracke has quit IRC | 17:58 | |
*** nicholasgoracke has joined #openstack-qa | 17:58 | |
sdague | yeh, should be | 17:58 |
sc68cal | sdague: i'm a little fuzzy on this stuff but I would hope we could at least get a locale that supports UTF8 | 17:58 |
sdague | well, typically we set it to that so that ascii parsing of commands is a constant | 17:58 |
*** jordanP has quit IRC | 17:59 | |
*** sabeen1 has joined #openstack-qa | 18:04 | |
*** e0ne has joined #openstack-qa | 18:05 | |
sc68cal | sdague: gotcha. | 18:06 |
openstackgerrit | Stephen Lowrie proposed openstack/tempest: Add tempest-list-plugins https://review.openstack.org/251542 | 18:06 |
slowrie | mtreinish: put it back up with the fix & a basic unittest. will keep working on making a more complex one but going to take some time | 18:09 |
*** armax has quit IRC | 18:12 | |
*** ccneill has quit IRC | 18:12 | |
mtreinish | slowrie: ok, cool. I'll take a look in a bit | 18:13 |
*** mpaolino has quit IRC | 18:14 | |
openstackrecheck | Console logs not available after 13:21s for gate-nova-pep8 263763,2,214d0f4 | 18:14 |
sc68cal | sdague: if you get a chance can you take a look at https://review.openstack.org/#/c/263813/ ? | 18:17 |
sdague | looking | 18:17 |
sdague | sc68cal: ok, you think if we wait until later we'll have missed a thing? | 18:18 |
sdague | I'm fine throwing more info into the pot, I'm personally kind of stumped on what's going on | 18:18 |
sc68cal | sdague: It's odd though because we don't get any output whatsoever - I don't know much about the structure of grenade but it the output just stops after the last SSH | 18:19 |
* sc68cal grabs link | 18:19 | |
sdague | yeh get me a link | 18:19 |
*** ccneill has joined #openstack-qa | 18:19 | |
sc68cal | sdague: http://logs.openstack.org/35/187235/11/experimental/gate-grenade-dsvm-neutron-multinode/a5af283/logs/grenade.sh.txt.gz#_2015-11-30_20_40_22_744 | 18:20 |
sc68cal | I looked around but I didn't even see the error string that is passed in the die call - "SSH to the client did not work, something very wrong" | 18:21 |
sc68cal | in console.log or anything else. it's odd | 18:21 |
openstackgerrit | Matthew Treinish proposed openstack/tempest: Remove legacy credentials provider https://review.openstack.org/263376 | 18:21 |
sdague | sc68cal: you got hit be a timeout - http://logs.openstack.org/35/187235/11/experimental/gate-grenade-dsvm-neutron-multinode/a5af283/console.html.gz#_2015-11-30_20_41_40_515 | 18:21 |
sc68cal | sdague: oh, LOL. Welp! | 18:22 |
sdague | it looks like every ssh call takes 5 minutes to fail | 18:22 |
sdague | http://logs.openstack.org/35/187235/11/experimental/gate-grenade-dsvm-neutron-multinode/a5af283/logs/grenade.sh.txt.gz#_2015-11-30_19_50_10_584 | 18:23 |
sdague | so, step 1, we should probably make sure we're counting wall clock time in our count down | 18:23 |
sdague | instead of iterations | 18:23 |
*** _nadya_ has quit IRC | 18:23 | |
*** eil397 has joined #openstack-qa | 18:25 | |
sc68cal | yeah. what the heck | 18:25 |
sdague | that would be my next step, then at least you'll fail fast enough to get the dumps | 18:25 |
sc68cal | that's super weird though | 18:25 |
sc68cal | it SSHs - then 5 minutes later we get a connection closed error | 18:25 |
sdague | yeh, so that's networking failing in a funny way I guess? | 18:27 |
openstackrecheck | Console logs not available after 13:29s for gate-tempest-dsvm-nova-v20-api-legacy 235398,7,3722ecb | 18:28 |
*** _nadya_ has joined #openstack-qa | 18:30 | |
sc68cal | sdague: I'm not sure. I mean a connection closed implies that it actually did establish an SSH connection - could it be that it connected, but then never got a shell spawned so we could do that echo? | 18:31 |
sc68cal | sdague: I wonder if I can push a patch to grenade that does 'ssh -v' so we can get more detail | 18:33 |
*** aopincar has joined #openstack-qa | 18:33 | |
sc68cal | sdague: and just use a Depends-On so it only runs on the experimental job | 18:33 |
*** ifarkas has quit IRC | 18:33 | |
openstackgerrit | Merged openstack/stackviz: py26/py33 are no longer supported by Infra's CI https://review.openstack.org/261700 | 18:34 |
openstackgerrit | Merged openstack/stackviz: remove python 2.6 trove classifier https://review.openstack.org/260842 | 18:34 |
openstackgerrit | Merged openstack-dev/devstack: Introduce iniget_sections function https://review.openstack.org/256294 | 18:38 |
*** sabeen1 has quit IRC | 18:46 | |
*** tosky has quit IRC | 18:48 | |
*** nicholasgoracke has quit IRC | 18:49 | |
*** tosky has joined #openstack-qa | 18:50 | |
openstackgerrit | Merged openstack-dev/devstack: Preserve result returned by apt-get and pip https://review.openstack.org/248349 | 18:56 |
openstackrecheck | openstack-dev/devstack change: https://review.openstack.org/262074 failed because of: gate-tempest-dsvm-full: https://bugs.launchpad.net/bugs/1451506 | 18:56 |
openstack | Launchpad bug 1451506 in OpenStack Compute (nova) "spawn failed with "libvirtError: internal error: received hangup / error event on socket" in the gate" [Undecided,Confirmed] | 18:56 |
*** sshnaidm_ has quit IRC | 18:58 | |
*** nicholasgoracke has joined #openstack-qa | 19:00 | |
*** _nadya_ has quit IRC | 19:02 | |
*** dencaval has joined #openstack-qa | 19:08 | |
Swami | kevinbenton: ping | 19:16 |
*** davideagnello has quit IRC | 19:21 | |
openstackgerrit | Merged openstack-dev/devstack: Add 5 time measurement points https://review.openstack.org/254591 | 19:24 |
*** aopincar has quit IRC | 19:27 | |
sdague | I expect that the error is just confusing | 19:31 |
sdague | honestly, start with making the loop work as expected | 19:31 |
sdague | then we'll get a lot of dump info | 19:31 |
*** salv-orlando has joined #openstack-qa | 19:33 | |
sdague | sc68cal: do you need some assistance on that loop? | 19:34 |
sc68cal | sdague: I might. Let me take a look | 19:37 |
openstackgerrit | Merged openstack/tempest: Wrong spelling of existing https://review.openstack.org/263154 | 19:38 |
openstackrecheck | Console logs not available after 13:28s for gate-tempest-dsvm-full-ceph 263804,1,78377cf | 19:38 |
openstackgerrit | Merged openstack/tempest: Fix grammatical mistake, Changed word from "an" to "a" in below file: https://review.openstack.org/263204 | 19:38 |
*** salv-orlando has quit IRC | 19:38 | |
sc68cal | sdague: don't we have a retry function in devstack that is time based? | 19:38 |
*** gfidente has quit IRC | 19:38 | |
sc68cal | sdague: yeah - the test_with_retry function | 19:39 |
sdague | yeh, that seems right | 19:39 |
sdague | I think that came in after this | 19:40 |
openstackgerrit | Sean Dague proposed openstack-dev/grenade: force smaller ssh connect timeout https://review.openstack.org/263877 | 19:42 |
sdague | that will also help | 19:42 |
sdague | and there is no reason why we shouldn't do that as well | 19:42 |
sc68cal | lgtm | 19:44 |
*** sabeen1 has joined #openstack-qa | 19:46 | |
sc68cal | sdague: the other thing is the checks between nova and cinder when it comes to creating an instance are different. The nova piece just pings, cinder pings and ssh's | 19:46 |
sc68cal | sdague: might be worth standardizing, and making a function | 19:46 |
sdague | sc68cal: yeh, we could add the ssh check to the nova side | 19:46 |
sdague | we need it on the cinder side because we put a file in the volume | 19:47 |
*** davideagnello has joined #openstack-qa | 19:47 | |
*** sabeen3 has joined #openstack-qa | 19:47 | |
*** sabeen1 has quit IRC | 19:50 | |
openstackrecheck | Console logs not available after 13:24s for gate-tempest-pep8 262218,1,d5a2478 | 19:51 |
sc68cal | sdague: gotcha | 19:52 |
*** devananda has quit IRC | 19:54 | |
*** weshay__xchat is now known as weshay | 19:59 | |
*** lucasagomes is now known as lucas-dinner | 19:59 | |
*** devananda has joined #openstack-qa | 20:00 | |
*** pglbutt has joined #openstack-qa | 20:03 | |
sdague | I also found that if I didn't check the sshability of the host then I tried to ssh in before the ssh server was up. | 20:03 |
openstackgerrit | Federico Ressi proposed openstack-dev/devstack: Don't reinstall package just after installing. https://review.openstack.org/262074 | 20:03 |
*** pglass_ has joined #openstack-qa | 20:04 | |
openstackgerrit | Sean M. Collins proposed openstack-dev/grenade: [WIP] Refactor cinder tests to use test_with_retry https://review.openstack.org/263884 | 20:04 |
*** pglass has quit IRC | 20:04 | |
openstackgerrit | Merged openstack/tempest: Misspelling in message https://review.openstack.org/261924 | 20:05 |
*** pglbutt has quit IRC | 20:07 | |
sc68cal | sdague: gotcha. I pushed up a wip patch that adds test_with_retry - I'm a little iffy about the way I quoted the ssh command | 20:08 |
sc68cal | more likely than not I got it wrong | 20:08 |
sdague | ok, we'll see how it goes | 20:08 |
sc68cal | string handling in bash makes me cry | 20:08 |
openstackrecheck | Console logs not available after 13:22s for gate-tempest-dsvm-full 263812,1,66ce282 | 20:09 |
sdague | sc68cal: you don't need to copy test_with_retry in | 20:09 |
openstackgerrit | Federico Ressi proposed openstack-dev/devstack: Don't die when yum fails. https://review.openstack.org/263061 | 20:09 |
sdague | we source the devstack new functions | 20:10 |
sdague | so we have access to all of those | 20:10 |
sc68cal | ahhhhhh | 20:10 |
sc68cal | I was going to say I was also not sure about that | 20:10 |
sc68cal | works for me, i'll respin | 20:10 |
sdague | otherwise we were doing copy/paste sync a lot | 20:10 |
sdague | which was terrible | 20:10 |
sc68cal | yeah I just didn't know if we were sourcing it - it was a couple more keystrokes to do git grep vs CTL+P ;) | 20:11 |
openstackgerrit | Sean M. Collins proposed openstack-dev/grenade: [WIP] Refactor cinder tests to use test_with_retry https://review.openstack.org/263884 | 20:12 |
*** krtaylor has quit IRC | 20:19 | |
*** ddieterly has joined #openstack-qa | 20:22 | |
openstackrecheck | Console logs not available after 13:22s for gate-horizon-pep8 263817,1,b0f45b0 | 20:23 |
ddieterly | seeing this import error when trying to run tempest tests https://gist.github.com/ddieterly/5b4dd5a020a9dffae618 | 20:23 |
ddieterly | anyone familiar with why that might be happening? | 20:23 |
ddieterly | ImportError: No module named floating_ips_client | 20:24 |
mtreinish | ddieterly: that sounds like a stale venv | 20:24 |
ddieterly | i just created it about 15 mins ago | 20:24 |
ddieterly | did a get pull on tempest | 20:25 |
ddieterly | the steps i used were 1) clone tempest, 2) create virtual env, 3) pip install requrements | 20:26 |
mtreinish | ddieterly: well: https://github.com/openstack/tempest-lib/blob/master/tempest_lib/services/compute/floating_ips_client.py has been there for 2 releases | 20:27 |
mtreinish | check the version of tempest-lib installed | 20:27 |
ddieterly | sure, i believe you | 20:27 |
ddieterly | not sure why i don't have it in my env | 20:27 |
*** e0ne has quit IRC | 20:28 | |
mtreinish | and tempest has the min version properly set on tempest-lib in requirements (>=0.12.0 which is when that module was added) | 20:28 |
ddieterly | i see tempest_lib and tempest_lib-0.12.0.dist-info in site-packages | 20:28 |
mtreinish | ddieterly: inside the venv you just need to do a pip freeze and see which version is installed | 20:30 |
ddieterly | tempest-lib==0.12.0 | 20:31 |
mtreinish | ok, well that's the right version | 20:31 |
mtreinish | how are you running tempest? | 20:32 |
*** rfolco has quit IRC | 20:32 | |
openstackrecheck | Console logs not available after 13:22s for gate-tempest-dsvm-neutron-full 261034,6,aa59670 | 20:36 |
*** weshay has quit IRC | 20:38 | |
ddieterly | i was using sudo | 20:38 |
ddieterly | that was pointing to the non virtual env python | 20:38 |
openstackgerrit | Merged openstack/openstack-health: Properly display missing data in run graphs https://review.openstack.org/259646 | 20:45 |
mtreinish | ddieterly: ah, ok | 20:46 |
mtreinish | that would do it | 20:46 |
*** Guest20726 has quit IRC | 20:47 | |
mtreinish | andreaf, masayukig: if you get a sec: https://review.openstack.org/#/c/253301/ should be pretty straightforward | 20:48 |
openstackrecheck | Console logs not available after 13:23s for gate-tempest-dsvm-full 234232,7,0f27164 | 20:49 |
*** pglass_ is now known as pglass | 20:51 | |
openstackgerrit | Matthew Treinish proposed openstack-infra/subunit2sql: Add option to use the wall time instead of the sum to run_time_meta https://review.openstack.org/231764 | 20:52 |
openstackgerrit | Matthew Treinish proposed openstack-infra/subunit2sql: WIP: Kinda hacky double sorted run time meta https://review.openstack.org/234494 | 20:52 |
openstackgerrit | Matthew Treinish proposed openstack-infra/subunit2sql: Add new graph time for variance of individual tests https://review.openstack.org/230611 | 20:52 |
openstackgerrit | Matthew Treinish proposed openstack-infra/subunit2sql: Add new graph type to show run_time variance by metadata https://review.openstack.org/210569 | 20:52 |
openstackgerrit | Matthew Treinish proposed openstack-infra/subunit2sql: Add a db api call to provide a rough wall time for a given run https://review.openstack.org/231762 | 20:52 |
openstackgerrit | Matthew Treinish proposed openstack-infra/subunit2sql: Add run_time_meta arge to specify values to use in graph https://review.openstack.org/231763 | 20:52 |
*** weshay has joined #openstack-qa | 20:53 | |
openstackgerrit | Mike Spreitzer proposed openstack-dev/devstack: Ensure link is set to up, when moving IP addresses across interfaces. https://review.openstack.org/263065 | 20:53 |
openstackgerrit | Matthew Treinish proposed openstack-infra/subunit2sql: Add option to use the wall time instead of the sum to run_time_meta https://review.openstack.org/231764 | 20:56 |
openstackgerrit | Matthew Treinish proposed openstack-infra/subunit2sql: WIP: Kinda hacky double sorted run time meta https://review.openstack.org/234494 | 20:56 |
openstackgerrit | Matthew Treinish proposed openstack-infra/subunit2sql: Add new graph time for variance of individual tests https://review.openstack.org/230611 | 20:56 |
openstackgerrit | Matthew Treinish proposed openstack-infra/subunit2sql: Add new graph type to show run_time variance by metadata https://review.openstack.org/210569 | 20:56 |
openstackgerrit | Matthew Treinish proposed openstack-infra/subunit2sql: Add a db api call to provide a rough wall time for a given run https://review.openstack.org/231762 | 20:56 |
openstackgerrit | Matthew Treinish proposed openstack-infra/subunit2sql: Add run_time_meta arge to specify values to use in graph https://review.openstack.org/231763 | 20:56 |
*** mragupat has quit IRC | 20:57 | |
*** mragupat has joined #openstack-qa | 20:58 | |
*** mragupat has quit IRC | 20:59 | |
*** mragupat has joined #openstack-qa | 21:01 | |
*** krtaylor has joined #openstack-qa | 21:02 | |
ddieterly | i've gotten this far https://gist.github.com/ddieterly/19bf049e3ab6f6d377ae | 21:03 |
ddieterly | 2016-01-05 21:02:08.927 927 CRITICAL tempest [-] IOError: [Errno 2] No such file or directory: '/tmp/tmpXWgdf_' | 21:04 |
*** mragupat has quit IRC | 21:05 | |
*** mragupat has joined #openstack-qa | 21:05 | |
*** mragupat has quit IRC | 21:06 | |
*** mragupat has joined #openstack-qa | 21:06 | |
openstackgerrit | Matthew Treinish proposed openstack-infra/subunit2sql: Add option to use the wall time instead of the sum to run_time_meta https://review.openstack.org/231764 | 21:10 |
openstackgerrit | Matthew Treinish proposed openstack-infra/subunit2sql: WIP: Kinda hacky double sorted run time meta https://review.openstack.org/234494 | 21:10 |
openstackgerrit | Matthew Treinish proposed openstack-infra/subunit2sql: Add new graph time for variance of individual tests https://review.openstack.org/230611 | 21:10 |
openstackgerrit | Matthew Treinish proposed openstack-infra/subunit2sql: Add a db api call to provide a rough wall time for a given run https://review.openstack.org/231762 | 21:10 |
openstackgerrit | Matthew Treinish proposed openstack-infra/subunit2sql: Add run_time_meta arge to specify values to use in graph https://review.openstack.org/231763 | 21:10 |
*** mragupat has quit IRC | 21:11 | |
mtreinish | ddieterly: hmm, I don't think I've seen that error before. It looks like an issue with testr | 21:14 |
*** ajmiller has quit IRC | 21:14 | |
ddieterly | ok, got it working now | 21:14 |
*** ajmiller has joined #openstack-qa | 21:17 | |
*** mragupat has joined #openstack-qa | 21:20 | |
*** weshay has quit IRC | 21:26 | |
*** mragupat has quit IRC | 21:30 | |
*** mragupat has joined #openstack-qa | 21:30 | |
openstackgerrit | Merged openstack/tempest: Add set microversion in base compute service client https://review.openstack.org/258868 | 21:31 |
*** mragupat_ has joined #openstack-qa | 21:32 | |
openstackgerrit | Merged openstack-dev/devstack: Remove support for Fedora 21 (EOL); add F22 where appropriate https://review.openstack.org/251980 | 21:32 |
*** mragupat has quit IRC | 21:35 | |
*** weshay has joined #openstack-qa | 21:40 | |
*** jpas has joined #openstack-qa | 21:46 | |
openstackgerrit | Matthew Treinish proposed openstack-infra/subunit2sql: Add option to use the wall time instead of the sum to run_time_meta https://review.openstack.org/231764 | 21:46 |
openstackgerrit | Matthew Treinish proposed openstack-infra/subunit2sql: WIP: Kinda hacky double sorted run time meta https://review.openstack.org/234494 | 21:46 |
openstackgerrit | Matthew Treinish proposed openstack-infra/subunit2sql: Add new graph time for variance of individual tests https://review.openstack.org/230611 | 21:46 |
openstackgerrit | Matthew Treinish proposed openstack-infra/subunit2sql: Add new graph type to show run_time variance by metadata https://review.openstack.org/210569 | 21:46 |
openstackgerrit | Matthew Treinish proposed openstack-infra/subunit2sql: Add a db api call to provide a rough wall time for a given run https://review.openstack.org/231762 | 21:46 |
openstackgerrit | Matthew Treinish proposed openstack-infra/subunit2sql: Add run_time_meta arge to specify values to use in graph https://review.openstack.org/231763 | 21:46 |
openstackrecheck | Console logs not available after 13:21s for gate-nova-python34 257956,11,67da00a | 21:47 |
ddieterly | ok, it looks like the dynamic creds is running our tests in parallel | 21:56 |
timothyb89 | mtreinish: for https://review.openstack.org/#/c/263402 is a 2 year range for day grouping useful? setting the window multiplier to 24 is pulling data from 2014 | 21:56 |
ddieterly | this is causing collision | 21:56 |
ddieterly | is there a way to use dynamic creds serially | 21:57 |
ddieterly | is there a setting or option to force serial execution? | 21:57 |
timothyb89 | mtreinish: (which is actually still pretty quick, I'm just not sure if its helpful at all) | 21:57 |
openstackrecheck | openstack/nova change: https://review.openstack.org/259832 failed gate-tempest-dsvm-full in the gate queue with an unrecognized error | 22:06 |
openstackrecheck | openstack/nova change: https://review.openstack.org/262123 failed gate-nova-python34 in the gate queue with an unrecognized error | 22:07 |
*** moravec1 has quit IRC | 22:09 | |
*** harlowja has quit IRC | 22:09 | |
*** harlowja has joined #openstack-qa | 22:10 | |
mtreinish | timothyb89: heh, for all time :) | 22:10 |
mtreinish | the db only goes back to the first or second week of nov 2014 | 22:10 |
timothyb89 | mtreinish: ah, not quite 2 years, but it is going back to nov '14 | 22:10 |
timothyb89 | mtreinish: er, oh, yes, that :) | 22:11 |
mtreinish | heh, yeah that's probably not too useful | 22:11 |
timothyb89 | mtreinish: a multipler of 12 would give probably 10-12 months in most views, maybe that would be better? | 22:12 |
mtreinish | timothyb89: yeah, that seems a bit more reasonable. Although probably 6months for a single release is all we need | 22:13 |
timothyb89 | mtreinish: hmm, alright, I'll play around with values a bit to aim for that | 22:13 |
*** yfried has joined #openstack-qa | 22:15 | |
mtreinish | timothyb89: you can just hard code it to 6 months for days :) | 22:15 |
mtreinish | it doesnt have to be a multiplier | 22:15 |
mtreinish | although we probably don't want to do that for the job page | 22:15 |
timothyb89 | mtreinish: yep, it's a bit odd to handle all the uses. I'm planning to follow up with something more proper that will handle partial days properly as well | 22:16 |
*** moravec has joined #openstack-qa | 22:17 | |
*** moravec has quit IRC | 22:17 | |
timothyb89 | mtreinish: I figure the multipler is an okay stopgap for now to make it more useful, but definitely handling proper ranges is a goal | 22:17 |
openstackgerrit | Ryan Hsu proposed openstack/tempest: Make glance image creation errors easier to debug https://review.openstack.org/253234 | 22:19 |
openstackgerrit | John Warren proposed openstack/tempest: Rename references to compute security group rules client https://review.openstack.org/263825 | 22:20 |
*** boris-42 has joined #openstack-qa | 22:20 | |
*** dims has quit IRC | 22:20 | |
openstackrecheck | Console logs not available after 13:29s for gate-tempest-dsvm-neutron-full-kilo 263825,1,1547447 | 22:22 |
*** regXboi has quit IRC | 22:22 | |
*** dims has joined #openstack-qa | 22:25 | |
openstackgerrit | Tim Buckley proposed openstack/openstack-health: Add window size multipler for resolution options. https://review.openstack.org/263402 | 22:26 |
*** pglass has quit IRC | 22:27 | |
*** pglass has joined #openstack-qa | 22:27 | |
*** moravec has joined #openstack-qa | 22:31 | |
*** moravec has quit IRC | 22:32 | |
*** edmondsw has quit IRC | 22:33 | |
*** dkranz has quit IRC | 22:34 | |
jpas | mtreinish: Could you please have a look at https://review.openstack.org/262081 (unittest fake config leak issue). | 22:35 |
*** edmondsw has joined #openstack-qa | 22:37 | |
*** dave-mccowan has quit IRC | 22:37 | |
*** edmondsw has quit IRC | 22:37 | |
*** mragupat has joined #openstack-qa | 22:41 | |
*** cdent has quit IRC | 22:41 | |
*** krtaylor has quit IRC | 22:43 | |
*** mragupat_ has quit IRC | 22:44 | |
*** jecarey_ has quit IRC | 22:45 | |
*** jecarey has joined #openstack-qa | 22:46 | |
*** jecarey_ has joined #openstack-qa | 22:49 | |
*** jecarey has quit IRC | 22:52 | |
*** jecarey_ has quit IRC | 22:53 | |
openstackgerrit | John L. Villalovos proposed openstack-infra/devstack-gate: Fix misspelling of connectivity https://review.openstack.org/263938 | 23:01 |
openstackrecheck | Console logs not available after 13:26s for gate-tempest-dsvm-keystone-eventlet-full 263155,2,bb1eccb | 23:02 |
*** woodster_ has joined #openstack-qa | 23:07 | |
*** nicholasgoracke has quit IRC | 23:08 | |
*** mragupat has quit IRC | 23:09 | |
*** pglass has quit IRC | 23:13 | |
openstackrecheck | Console logs not available after 13:23s for gate-tempest-dsvm-ceilometer-mysql-neutron-full 263376,2,dfa7058 | 23:15 |
*** dims has quit IRC | 23:20 | |
*** krtaylor has joined #openstack-qa | 23:23 | |
openstackgerrit | Stephen Lowrie proposed openstack/tempest: Add tempest-list-plugins https://review.openstack.org/251542 | 23:23 |
openstackgerrit | Stephen Lowrie proposed openstack/tempest: Add tempest-list-plugins https://review.openstack.org/251542 | 23:24 |
*** dims has joined #openstack-qa | 23:25 | |
*** dimtruck is now known as zz_dimtruck | 23:29 | |
*** austin81 has left #openstack-qa | 23:29 | |
*** shardy has quit IRC | 23:30 | |
*** weshay has quit IRC | 23:31 | |
*** mriedem has quit IRC | 23:37 | |
*** oomichi has joined #openstack-qa | 23:37 | |
gmann | mtreinish: yea, i also felt the same way. fix the cred in their tests | 23:38 |
*** moravec has joined #openstack-qa | 23:39 | |
gmann | mtreinish: i put a fix in Monasca to use dynamic cred but seems like they have some race condition there | 23:40 |
gmann | mtreinish: we can run tests in serial with dynamic cred too right? so there should not be any issue | 23:40 |
gmann | mtreinish: anyways Thanks for reviewing microversion patches :) | 23:41 |
*** tochi has joined #openstack-qa | 23:42 | |
gmann | mtreinish: more for you - https://review.openstack.org/#/q/status:open+project:openstack/tempest+branch:master+topic:bp/api-microversions-testing-support | 23:42 |
mtreinish | gmann: there is no issue running serially with dynamic creds | 23:45 |
mtreinish | gmann: I'm -1 on the bottom of the stack | 23:45 |
*** sabeen3 has quit IRC | 23:45 | |
mtreinish | dynamic creds is independent from the number of workers used | 23:45 |
gmann | mtreinish: ohk, i will check. Thanks | 23:46 |
*** ccneill has quit IRC | 23:46 | |
gmann | mtreinish: yea. Need to check their gate job whether they are running parallel or serial | 23:48 |
*** eil397 has quit IRC | 23:58 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!