greghaynes | clarkb: I think new pbr broke us | 00:00 |
---|---|---|
greghaynes | http://logs.openstack.org/62/142562/1/check-tripleo//check-tripleo-ironic-undercloud-precise-nonha/75dd9e5/console.html#_2014-12-17_23_18_55_454 | 00:01 |
clarkb | greghaynes: huh thats odd | 00:02 |
greghaynes | Agreed | 00:02 |
clarkb | it looks like the entry point for the json writer was registered but then its trying to run out of /opt/stack/new which is stale? | 00:03 |
clarkb | I have no idea what your build package thing does but it looks like stale code somewher | 00:04 |
clarkb | e | 00:04 |
greghaynes | its just cd /opt/stack/new//pbr;git tag -m 999.999.999 999.999.999;python setup.py sdist | 00:05 |
* greghaynes will try and replicate | 00:05 | |
clarkb | "just" | 00:06 |
clarkb | so why tag at all? | 00:06 |
clarkb | that is just confusing and serves no purpose | 00:06 |
clarkb | also I think the issue is you are using new pbr to install old pr | 00:07 |
clarkb | and since . ends up in python paths it finds path to old pbr where entry point does not exist | 00:07 |
greghaynes | aye | 00:07 |
greghaynes | so the tagging is unrelated to that | 00:07 |
clarkb | sure but its hella confusing | 00:08 |
greghaynes | either way we need to use a venv python to build this | 00:08 |
clarkb | and can't be good | 00:08 |
clarkb | why? | 00:08 |
greghaynes | because old pbr apparently exists | 00:08 |
clarkb | I think the fix is to update pbr repo first | 00:08 |
clarkb | oh except lol what are you even doing here | 00:08 |
clarkb | ok heres the thing | 00:08 |
clarkb | pbr master has none of this stuff | 00:08 |
clarkb | so you are taking backported setuptools fixing pbr and using it to install pbr master | 00:09 |
clarkb | when you should just be installing pibr | 00:09 |
clarkb | OR use pbr to install itself | 00:09 |
clarkb | rather than two different sources | 00:10 |
*** greghaynes changes topic to "CI failing: https://bugs.launchpad.net/tripleo/+bug/1403684 | devtest on F20 broken https://bugs.launchpad.net/tripleo/+bug/1401957 | Mid-cycle meetup Feb 18 - 20 in Seattle http://bit.ly/1AiNuMK | Using OpenStack to deploy OpenStack; meetings Tuesday 1900/0800 UTC in #openstack-meeting-alt" | 00:10 | |
*** ChuckC has joined #tripleo | 00:11 | |
clarkb | I think you can do that by doing whatever is going on there before anything else (so that pbr isn't already installed) | 00:11 |
clarkb | but really what is that code trying to accomplish? you already have pbr installed use that | 00:11 |
greghaynes | clarkb: that is just trying to build a pbr package | 00:11 |
greghaynes | clarkb: so we can install it in our mirror | 00:11 |
clarkb | greghaynes: so again I ask why are you building it instead of just using what you already have? | 00:12 |
clarkb | and why would you build it with version 999.999.999 | 00:12 |
clarkb | you have basically prevented my ability to fix anything pbr related now | 00:12 |
clarkb | and its breaking you as a result | 00:12 |
greghaynes | inside our vm's (not the jenkins slave) we have to install it from somewhere | 00:12 |
clarkb | so take the sdist I have given you | 00:13 |
clarkb | and install that | 00:13 |
clarkb | or make pbr go first (you won't get fixed pbr), | 00:13 |
greghaynes | Where is "the sdist you have given us" | 00:13 |
clarkb | greghaynes: from wherever you installed the pbr that is breaking you | 00:14 |
*** cinerama has quit IRC | 00:15 | |
greghaynes | I really dont see anywhere we do a pbr installation | 00:16 |
* greghaynes can keep looking | 00:16 | |
clarkb | greghaynes: something else probably pulls it in for you | 00:17 |
greghaynes | my grep pbr on that console.log doesnt show it getting installed | 00:17 |
greghaynes | so it could be before | 00:17 |
*** cinerama has joined #tripleo | 00:17 | |
greghaynes | but I dont think a lot happens before then | 00:17 |
clarkb | I mean installing dib will do it iirc | 00:17 |
clarkb | so the problem with version 999.999.999 is that is not compatible with pbr<1.0 as in many of the projects | 00:18 |
greghaynes | yea, were not to that point even I think | 00:18 |
clarkb | so it is highly likely you don't even use the version of pbr ou are building for your mirror | 00:18 |
greghaynes | oh, I see why | 00:19 |
greghaynes | yea, that can be removed | 00:20 |
greghaynes | requires some work | 00:20 |
greghaynes | but I think its pretty unrelated to this fail | 00:20 |
greghaynes | We just did it so we dont have to tunnel --pre everywhere | 00:20 |
clarkb | sure its just ridiculous and I have to point it out :) | 00:20 |
clarkb | because it does not do what you think it does | 00:20 |
greghaynes | well, theres two bad optuions | 00:20 |
greghaynes | we either enable --pre everywhere - which means were not testing the same thing people run | 00:21 |
clarkb | so you could just stop pacakging pbr alltogether if you want status quo | 00:21 |
greghaynes | (because --pre applies to dependencies) | 00:21 |
clarkb | and ^ is where it is related | 00:21 |
greghaynes | yea, thats a good temp fix | 00:21 |
greghaynes | :/ | 00:21 |
clarkb | because that is honestly the same situation you would have been in before with that verison number | 00:21 |
greghaynes | fun, so ill make a bug about stop using that tag. I agree that --pre is the lesser evil | 00:22 |
greghaynes | or maybe we can even *gasp* fix our issue with --pre | 00:22 |
clarkb | now to fix it properly you either have pbr build itself in a clean venv, you could checkout the latest release and build that, you could just grab the latest release sdist/whl from "upstream" wherever that is | 00:22 |
clarkb | greghaynes: I think the fix for --pre is to use == with things | 00:23 |
clarkb | because if you tell pip to install foo==1.2.3a1 it should always install just that without any additional encouragement | 00:23 |
greghaynes | the problem is that we dont know how --pre effects the dependencies of $program | 00:23 |
clarkb | right so don't use --pre instead use == | 00:24 |
greghaynes | these are being installed as dependencies in a lot of places in the first place | 00:24 |
clarkb | but to recap that specific fail is because new pbr 0.10.3 is installed, then the code attempts to build a pbr sdist of another version of pbr that does not have the entrpoint in it. This would be fine in all cases except that paths end up being such that it looks for the entrypoint in the local dir and not from global pbr | 00:26 |
greghaynes | aye | 00:27 |
*** vinsh has quit IRC | 00:28 | |
greghaynes | So, Im not sure why we even want to make pbr packages in the first place | 00:28 |
greghaynes | oh, ZUUL_CHANGES has a pbr at the front of it | 00:30 |
greghaynes | lol | 00:30 |
*** chuckC_ has quit IRC | 00:31 | |
clarkb | oh then maybe this is a legit fail (note it still wouldn't test that changed version of pbr due to the 999 version) | 00:31 |
openstackgerrit | Dan Nguyen proposed openstack/tripleo-image-elements: Adds session_engine variable for memcached config https://review.openstack.org/142621 | 00:31 |
greghaynes | http://logs.openstack.org/98/142598/1/check-tripleo//check-tripleo-ironic-undercloud-precise-nonha/df6bf75/console.html#_2014-12-17_23_53_58_427 | 00:31 |
greghaynes | nvm | 00:32 |
greghaynes | we put it there ;) | 00:32 |
clarkb | oh good | 00:32 |
*** pradeep1 has quit IRC | 00:36 | |
openstackgerrit | greghaynes proposed openstack-infra/tripleo-ci: Fix pbr build fail https://review.openstack.org/142624 | 00:43 |
*** ChuckC has quit IRC | 00:44 | |
SpamapS | we having timing issues in our o-r-c scripts | 00:48 |
SpamapS | just saw keystone fail to start because of "address already in use" | 00:48 |
greghaynes | \O/ | 00:48 |
* SpamapS has run into the end of the day. DOH | 00:48 | |
clarkb | SpamapS: are you using 35357? | 00:49 |
SpamapS | could be that keystone needs SO_REUSEADDR | 00:49 |
SpamapS | clarkb: it's reserved in sysctl :) | 00:49 |
clarkb | because that port falls in linux ephermeral port range and you can hit it | 00:49 |
clarkb | SpamapS: oh good | 00:49 |
SpamapS | clarkb: but no, it was 5000 | 00:49 |
SpamapS | worse, o-r-c did not detect that keystone failed | 00:50 |
greghaynes | SpamapS: https://review.openstack.org/#/c/138844/ | 00:51 |
greghaynes | that might make a difference | 00:51 |
*** derekh has joined #tripleo | 00:52 | |
derekh | greghaynes: looking at the CI failure, we could probably just add pbr to ALWAYS_MIRROR_PKGS and not add it to ZUUL_CHANGES | 00:53 |
SpamapS | ok running out the door now | 00:53 |
greghaynes | derekh: ohai | 00:53 |
SpamapS | now getting SSL connections reset | 00:53 |
greghaynes | derekh: we were just talking about this | 00:53 |
derekh | greghaynes: adding it to ZUUL_CHANGES was a relic left over from before we had ALWAYS_MIRROR_PKGS | 00:54 |
greghaynes | derekh: why would that fix the issue? I cant find anywhere were installing pbr beforehand | 00:54 |
*** radez is now known as radez_g0n3 | 00:54 | |
greghaynes | https://review.openstack.org/#/c/142624/ is something im doing to test the theory that pbr is already installed, btw | 00:54 |
clarkb | so I think it is potentially possible that setup.py in pbr pulls down latest pbr | 00:54 |
clarkb | which may mean pbr master will be broken until mordred ports the entrypoint into master | 00:55 |
clarkb | so thats the other thing you could likely do is shove that in there | 00:55 |
clarkb | even if the entrypoint returned 0 | 00:55 |
greghaynes | heh | 00:55 |
derekh | greghaynes: ok, I'm not sure if it already installed or not but if we stop adding it to ZUUL_CHANGES then we wont be trying to build it | 00:55 |
greghaynes | derekh: oh. well if its in ALWAYS_MIRROR_PACKAGES itll get built too though wont it? | 00:56 |
derekh | greghaynes: no it will get downloaded into out local mirror | 00:56 |
greghaynes | ah | 00:56 |
derekh | greghaynes: not built | 00:56 |
clarkb | I like that | 00:56 |
greghaynes | +1 | 00:56 |
clarkb | because then its not circumventing the fixes we are trying to get out | 00:56 |
greghaynes | yea, I would still kind of like to see what is going on with this issue but I like that as a fix | 00:57 |
clarkb | ya its likely worth understanding what is going on there | 00:57 |
clarkb | greghaynes: let me try a thing | 00:57 |
derekh | clarkb: greghaynes: ack | 00:57 |
derekh | greghaynes: btw, I closed about 40 bugs today that were already fixed or no longer relevant etc... | 00:58 |
clarkb | greghaynes: ya I can reproduce trivially | 00:58 |
greghaynes | derekh: aha! so thats why I woke up to the open bug count decreasing that much | 00:58 |
greghaynes | nice! | 00:58 |
greghaynes | clarkb: orly | 00:58 |
clarkb | `git clone pbr && git checkout master && virtualenv venv && venv/bin/python setup.py sdist` | 00:59 |
clarkb | I think this will be broken until mordreds change gets onto master | 00:59 |
greghaynes | hahahaha | 00:59 |
clarkb | pbr is itself pulling in latest pbr | 00:59 |
clarkb | so let me see if I can make it not explode | 00:59 |
greghaynes | I have to say it - this sounds like a value we add by building pbr in our ci | 01:00 |
derekh | greghaynes: yup, there is probably a load more that can just be closed but I ran out of time | 01:00 |
clarkb | greghaynes: I think our ci would catch it too | 01:00 |
derekh | greghaynes: yes but we should be doing it as part of pbr ci not in tripleo ;-) | 01:00 |
clarkb | greghaynes: we just don't have any changes against master | 01:00 |
clarkb | derekh: yes we do it there and it should be caught | 01:01 |
clarkb | hrm this may be even more awesome than it looks | 01:02 |
clarkb | I am running in a dir local venv but my traceback includes "/usr/lib/python2.7/distutils/dist.py" | 01:02 |
clarkb | which is fine because stdlib | 01:02 |
clarkb | but maybe distutils is picking up on global entrypoints even within a venv? | 01:02 |
greghaynes | derekh: oh, so clarkb had a good point about why our git tag 99999 thing might not work | 01:04 |
clarkb | because that entrpoint is for distutils? | 01:04 |
greghaynes | derekh: a lot of things pin versions <X, apparently lots of things pin pbr<1.0 | 01:04 |
clarkb | hrm if thats the case I think we all get pitchforks and chase down mordred | 01:04 |
clarkb | mordred: ^ | 01:04 |
*** jerryz has joined #tripleo | 01:04 | |
derekh | greghaynes: o, ya thats probably a problem | 01:05 |
greghaynes | derekh: Im not really a fan of the --pre thing, but clarkb suggested just installing what we build with the correct == requirements line | 01:06 |
greghaynes | so ill prolly poke at that soon | 01:06 |
derekh | greghaynes: ok | 01:06 |
derekh | greghaynes: are you doing a patch for the pbr move or will I? | 01:07 |
greghaynes | Im not at the moment, doesnt matter to me | 01:07 |
greghaynes | isnt is crazypants late where you are? | 01:07 |
derekh | greghaynes: its a little late ;-), 1AM ish | 01:08 |
greghaynes | haha, ok. ill do it | 01:08 |
derekh | ok | 01:08 |
openstackgerrit | greghaynes proposed openstack-infra/tripleo-ci: Move pbr into downloaded packages https://review.openstack.org/142624 | 01:10 |
*** zz_avozza is now known as avozza | 01:10 | |
*** ChuckC has joined #tripleo | 01:13 | |
*** chuckC_ has joined #tripleo | 01:13 | |
*** killer_prince is now known as lazy_prince | 01:14 | |
derekh | greghaynes: lgtm, fingers crossed, ok sleep time. | 01:15 |
clarkb | ok my reproduction case was slightly bong hits. dstufft helped straighten me out | 01:15 |
greghaynes | gn | 01:15 |
clarkb | you don't want your venv to be in the pbr dir for some reason | 01:15 |
derekh | SpamapS this is your queue to say I need a bouncer | 01:16 |
*** derekh has quit IRC | 01:16 | |
greghaynes | clarkb: hrm, that shouldnt be an issue in our Ci | 01:17 |
clarkb | greghaynes: well I think in your CI I still think you may have a global pbr | 01:18 |
clarkb | so same error but triggered differently | 01:18 |
*** avozza is now known as zz_avozza | 01:20 | |
*** sdake has quit IRC | 01:29 | |
*** sdake has joined #tripleo | 01:33 | |
*** sdake has quit IRC | 01:33 | |
*** sdake has joined #tripleo | 01:33 | |
*** kes has joined #tripleo | 01:45 | |
*** Marga_ has quit IRC | 01:46 | |
*** Marga_ has joined #tripleo | 01:46 | |
*** wuhg has joined #tripleo | 01:47 | |
*** Marga_ has quit IRC | 01:51 | |
SpamapS | Dec 18 02:05:20 ci-overcloud-controller0-nvacfowhjcy2 stunnel: LOG5[13678:3073579840]: Service [compute] accepted connection from 15.242.211.201:49273 | 02:07 |
SpamapS | Dec 18 02:05:20 ci-overcloud-controller0-nvacfowhjcy2 stunnel: LOG3[13678:3073579840]: connect_blocking: connect 127.0.0.1:8774: Connection refused (111) | 02:07 |
SpamapS | listening only on the vip and local... not 0.0.0.0 | 02:08 |
SpamapS | this stuff is really just borken isn't it? | 02:08 |
*** david-lyle is now known as david-lyle_afk | 02:10 | |
SpamapS | looks like it has the capability | 02:11 |
*** lucas-dinner has joined #tripleo | 02:14 | |
SpamapS | even odder.. connect_host is set, but stunnel confs don't have it | 02:14 |
* SpamapS suspects misunderstanding of mustache or bug in pystache | 02:15 | |
*** zz_avozza is now known as avozza | 02:18 | |
SpamapS | interesting | 02:18 |
SpamapS | {{#stunnel}} stuff {{#ports}} {{connect_host}} {{/ports}}{{/stunnel}} <-- populates connect_host | 02:19 |
SpamapS | {{#stunnel.ports}}{{connect_host}}{{/stunnel.ports}} <-- does not populate connect_host | 02:20 |
SpamapS | and this makes sense | 02:20 |
SpamapS | because stunnel.ports makes the active context stunnel.ports, there's no stunnel to fall back into | 02:20 |
SpamapS | looks like we need to get CI on SSL | 02:30 |
*** weshay has quit IRC | 02:32 | |
*** avozza is now known as zz_avozza | 02:33 | |
*** lucas-dinner has quit IRC | 02:37 | |
openstackgerrit | Clint 'SpamapS' Byrum proposed openstack/tripleo-image-elements: Fix mustache context cascading in stunnel config https://review.openstack.org/142650 | 02:39 |
SpamapS | Well I've fixed two bugs today.. but they were both bugs I found while debugging other things. DOH | 02:39 |
SpamapS | greghaynes: ^^ the patch above fixes SSL for me. | 02:39 |
*** rwsu has quit IRC | 02:44 | |
* SpamapS now runs into OS_CACERT problem which is already patched and just blocked by flaky CI | 02:50 | |
*** lblanchard has joined #tripleo | 03:01 | |
*** lblanchard has quit IRC | 03:03 | |
*** vinsh has joined #tripleo | 03:04 | |
*** lblanchard has joined #tripleo | 03:06 | |
*** vinsh has quit IRC | 03:09 | |
*** lblanchard has quit IRC | 03:10 | |
*** lblanchard has joined #tripleo | 03:13 | |
*** penick has quit IRC | 03:22 | |
*** zz_avozza is now known as avozza | 03:26 | |
*** vinsh has joined #tripleo | 03:28 | |
*** julim has joined #tripleo | 03:29 | |
*** pradeep1 has joined #tripleo | 03:38 | |
*** avozza is now known as zz_avozza | 03:44 | |
*** morazi has quit IRC | 03:48 | |
*** pradeep1 has quit IRC | 03:49 | |
*** lazy_prince is now known as killer_prince | 03:51 | |
*** untriaged-bot has joined #tripleo | 04:00 | |
untriaged-bot | Untriaged bugs so far: | 04:00 |
untriaged-bot | https://bugs.launchpad.net/tripleo/+bug/1402928 | 04:00 |
uvirtbot | Launchpad bug 1402928 in tripleo "RabbitClientUseSSL type error in overcloud-without-mergepy.yaml " [Undecided,New] | 04:00 |
untriaged-bot | https://bugs.launchpad.net/tripleo/+bug/1403685 | 04:00 |
uvirtbot | Launchpad bug 1403685 in tripleo "Horizon memcached session engine config is not present" [Undecided,In progress] | 04:00 |
untriaged-bot | https://bugs.launchpad.net/tripleo/+bug/1402795 | 04:00 |
uvirtbot | Launchpad bug 1402795 in tripleo "Keystone token_flush cron job running at the same time in the controller node causes deadlock" [Undecided,In progress] | 04:00 |
untriaged-bot | https://bugs.launchpad.net/tuskar/+bug/1387487 | 04:00 |
uvirtbot | Launchpad bug 1387487 in tuskar "tripleo-image-elements/elements/tuskar-ui /os-refresh-config /post-configure.d/101-tuskar-ui needs authentication from Keystone" [Undecided,New] | 04:00 |
*** untriaged-bot has quit IRC | 04:00 | |
*** Marga_ has joined #tripleo | 04:13 | |
*** lblanchard has quit IRC | 04:19 | |
*** killer_prince is now known as lazy_prince | 04:20 | |
openstackgerrit | Steve Kowalik proposed openstack/os-cloud-config: Add tests for setup-flavors command-line utility https://review.openstack.org/140234 | 04:21 |
*** lblanchard has joined #tripleo | 04:31 | |
*** Marga_ has quit IRC | 04:35 | |
*** Marga_ has joined #tripleo | 04:35 | |
*** zz_avozza is now known as avozza | 04:36 | |
*** ukalifon1 has joined #tripleo | 04:41 | |
*** lblanchard has quit IRC | 04:45 | |
*** esp has left #tripleo | 04:52 | |
*** avozza is now known as zz_avozza | 04:56 | |
*** Marga_ has quit IRC | 05:05 | |
*** nosnos has joined #tripleo | 05:10 | |
*** tzumainn has quit IRC | 05:14 | |
*** Marga_ has joined #tripleo | 05:31 | |
*** jerryz has quit IRC | 05:36 | |
*** lazy_prince has quit IRC | 05:48 | |
*** zz_avozza is now known as avozza | 05:48 | |
*** jerryz has joined #tripleo | 05:48 | |
*** killer_prince has joined #tripleo | 05:49 | |
*** killer_prince is now known as lazy_prince | 05:49 | |
*** jerryz_ has joined #tripleo | 05:55 | |
*** jerryz has quit IRC | 05:58 | |
*** sdake has quit IRC | 06:04 | |
*** sdake has joined #tripleo | 06:04 | |
*** sdake has quit IRC | 06:05 | |
*** sdake has joined #tripleo | 06:05 | |
*** avozza is now known as zz_avozza | 06:08 | |
*** k4n0 has joined #tripleo | 06:10 | |
*** pradeep1 has joined #tripleo | 06:10 | |
*** daneyon_ has quit IRC | 06:27 | |
*** sdake has quit IRC | 06:28 | |
*** daneyon has joined #tripleo | 06:28 | |
*** sdake has joined #tripleo | 06:30 | |
*** sdake has quit IRC | 06:30 | |
*** sdake has joined #tripleo | 06:30 | |
*** cody-somerville has quit IRC | 06:34 | |
*** jtomasek has joined #tripleo | 06:38 | |
*** dshulyak_ has joined #tripleo | 06:42 | |
*** pcrews has joined #tripleo | 06:43 | |
*** pcrews has quit IRC | 06:50 | |
*** sdake has quit IRC | 06:50 | |
*** mrunge has joined #tripleo | 06:58 | |
*** zz_avozza is now known as avozza | 07:01 | |
*** yuanying_ has joined #tripleo | 07:01 | |
*** yuanying has quit IRC | 07:03 | |
*** sdake has joined #tripleo | 07:10 | |
*** sdake has quit IRC | 07:10 | |
*** sdake has joined #tripleo | 07:10 | |
*** subscope has joined #tripleo | 07:11 | |
*** chlong is now known as chlong-running-t | 07:13 | |
* tchaypo went to bed feeling confident that pbr would be fixed very soon | 07:15 | |
* tchaypo woke up and read backlog | 07:15 | |
*** rdopiera has joined #tripleo | 07:15 | |
*** rdopiera has joined #tripleo | 07:16 | |
*** jcoufal has joined #tripleo | 07:18 | |
*** avozza is now known as zz_avozza | 07:18 | |
*** sdake has quit IRC | 07:26 | |
*** sdake has joined #tripleo | 07:29 | |
*** sdake has quit IRC | 07:30 | |
*** sdake has joined #tripleo | 07:30 | |
*** sdake has quit IRC | 07:40 | |
*** sdake has joined #tripleo | 07:42 | |
*** Marga_ has quit IRC | 07:46 | |
GheRivero | morning all | 07:51 |
*** pcaruana has joined #tripleo | 07:56 | |
*** jtomasek has quit IRC | 07:57 | |
*** zz_avozza is now known as avozza | 07:58 | |
*** bvandenh has joined #tripleo | 07:59 | |
*** yuanying has joined #tripleo | 07:59 | |
*** yuanying_ has quit IRC | 08:02 | |
*** dshulyak_ has quit IRC | 08:15 | |
*** pradeep1 has quit IRC | 08:33 | |
*** pradeep1 has joined #tripleo | 08:34 | |
*** pradeep1 has quit IRC | 08:36 | |
*** pradeep1 has joined #tripleo | 08:37 | |
*** ifarkas has joined #tripleo | 08:46 | |
*** akrivoka has joined #tripleo | 08:57 | |
*** lazy_prince has quit IRC | 09:08 | |
*** athomas has joined #tripleo | 09:10 | |
*** lazy_prince has joined #tripleo | 09:11 | |
*** lazy_prince has joined #tripleo | 09:11 | |
*** derekh has joined #tripleo | 09:14 | |
*** mcornea has joined #tripleo | 09:14 | |
derekh | greghaynes: still there by any chance ? | 09:16 |
derekh | pbr patch failed F20 CI, due to unrelated problem, lets merge it now https://review.openstack.org/#/c/142624/2 | 09:17 |
GheRivero | derekh: are you sure is it safe? I'm still reading trough the irc backlog... but can +A it if needed | 09:19 |
*** subscope has quit IRC | 09:20 | |
derekh | GheRivero: yup, it deals with the pbr problem we had, its the only test passes we've had for the last 16 hours | 09:20 |
GheRivero | ok, on my way | 09:21 |
openstackgerrit | Merged openstack-infra/tripleo-ci: Move pbr into downloaded packages https://review.openstack.org/142624 | 09:22 |
*** pblaho has joined #tripleo | 09:23 | |
*** noslzzp has joined #tripleo | 09:29 | |
*** takadayuiko has joined #tripleo | 09:31 | |
*** takadayuiko has quit IRC | 09:31 | |
*** untriaged-bot has joined #tripleo | 10:00 | |
untriaged-bot | Untriaged bugs so far: | 10:00 |
untriaged-bot | https://bugs.launchpad.net/tripleo/+bug/1402928 | 10:00 |
uvirtbot | Launchpad bug 1402928 in tripleo "RabbitClientUseSSL type error in overcloud-without-mergepy.yaml " [Undecided,New] | 10:00 |
untriaged-bot | https://bugs.launchpad.net/tripleo/+bug/1403685 | 10:00 |
uvirtbot | Launchpad bug 1403685 in tripleo "Horizon memcached session engine config is not present" [Undecided,In progress] | 10:00 |
untriaged-bot | https://bugs.launchpad.net/tripleo/+bug/1402795 | 10:00 |
uvirtbot | Launchpad bug 1402795 in tripleo "Keystone token_flush cron job running at the same time in the controller node causes deadlock" [Undecided,In progress] | 10:00 |
untriaged-bot | https://bugs.launchpad.net/tuskar/+bug/1387487 | 10:00 |
uvirtbot | Launchpad bug 1387487 in tuskar "tripleo-image-elements/elements/tuskar-ui /os-refresh-config /post-configure.d/101-tuskar-ui needs authentication from Keystone" [Undecided,New] | 10:00 |
*** untriaged-bot has quit IRC | 10:00 | |
*** jp_at_hp has joined #tripleo | 10:00 | |
*** dtantsur|afk is now known as dtantsur | 10:12 | |
*** ishant has joined #tripleo | 10:15 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/tuskar-ui: Updated from global requirements https://review.openstack.org/142716 | 10:21 |
*** jtomasek has joined #tripleo | 10:24 | |
*** pradeep1 has quit IRC | 10:33 | |
lazy_prince | has anyone seen this..? http://paste.openstack.org/show/152654/ | 10:33 |
lazy_prince | can someone tell me how to fix this..? | 10:33 |
*** pradeep1 has joined #tripleo | 10:40 | |
*** rlandy has joined #tripleo | 10:42 | |
*** athomas has quit IRC | 10:43 | |
lxsli | slagle_: please consider +ing https://review.openstack.org/#/c/131158/ ? | 10:49 |
openstackgerrit | Erwan Velu proposed openstack/diskimage-builder: dracut-ramdisk: fix support for elements with ramdisk-install.d https://review.openstack.org/142141 | 10:49 |
*** athomas has joined #tripleo | 10:51 | |
*** derekh changes topic to "Devtest on F20 broken https://bugs.launchpad.net/tripleo/+bug/1401957 | Mid-cycle meetup Feb 18 - 20 in Seattle http://bit.ly/1AiNuMK | Using OpenStack to deploy OpenStack; meetings Tuesday 1900/0800 UTC in #openstack-meeting-alt" | 10:55 | |
openstackgerrit | Merged openstack/tuskar-ui: Updated from global requirements https://review.openstack.org/142716 | 10:56 |
*** subscope has joined #tripleo | 10:56 | |
*** pradeep1 has quit IRC | 10:56 | |
*** lucasagomes has joined #tripleo | 11:15 | |
*** pradeep1 has joined #tripleo | 11:20 | |
*** avozza is now known as zz_avozza | 11:20 | |
*** mcornea has quit IRC | 11:25 | |
*** nosnos has quit IRC | 11:26 | |
*** mcornea has joined #tripleo | 11:26 | |
*** nosnos has joined #tripleo | 11:26 | |
*** jiangfei has quit IRC | 11:27 | |
*** mcornea has quit IRC | 11:27 | |
*** jiangfei has joined #tripleo | 11:27 | |
*** mcornea has joined #tripleo | 11:28 | |
*** nosnos has quit IRC | 11:30 | |
*** ishant has quit IRC | 11:31 | |
*** nosnos has joined #tripleo | 11:39 | |
*** sdake has quit IRC | 11:46 | |
*** sdake has joined #tripleo | 11:47 | |
*** sdake has quit IRC | 11:47 | |
*** sdake has joined #tripleo | 11:47 | |
*** pradeep1 has quit IRC | 11:49 | |
*** athomas has quit IRC | 11:53 | |
*** dsneddon has quit IRC | 11:59 | |
*** athomas has joined #tripleo | 11:59 | |
*** dsneddon has joined #tripleo | 12:00 | |
slagle_ | lxsli: +2'd. sorry i missed doing that sooner! | 12:07 |
*** slagle_ is now known as slagle | 12:07 | |
*** sdake has quit IRC | 12:10 | |
*** andreaf_ is now known as andreaf | 12:13 | |
*** rhallisey has joined #tripleo | 12:14 | |
*** sdake has joined #tripleo | 12:18 | |
*** sdake has quit IRC | 12:18 | |
*** sdake has joined #tripleo | 12:18 | |
*** zz_avozza is now known as avozza | 12:24 | |
lxsli | slagle: thanks :) | 12:24 |
*** dshulyak has joined #tripleo | 12:28 | |
*** sdake has quit IRC | 12:33 | |
*** dshulyak has quit IRC | 12:36 | |
*** thrash has quit IRC | 12:40 | |
*** thrash has joined #tripleo | 12:43 | |
*** lazy_prince is now known as killer_prince | 12:47 | |
*** dshulyak has joined #tripleo | 12:50 | |
*** weshay has joined #tripleo | 12:51 | |
*** subscope has quit IRC | 12:53 | |
*** dshulyak has quit IRC | 12:54 | |
openstackgerrit | Merged openstack/os-apply-config: Output useful JSON data https://review.openstack.org/142120 | 12:55 |
*** jdob has joined #tripleo | 12:59 | |
*** tzumainn has joined #tripleo | 13:01 | |
*** sdake has joined #tripleo | 13:01 | |
*** sdake has quit IRC | 13:01 | |
*** sdake has joined #tripleo | 13:01 | |
*** nosnos has quit IRC | 13:05 | |
*** nosnos has joined #tripleo | 13:06 | |
*** lblanchard has joined #tripleo | 13:06 | |
*** athomas has quit IRC | 13:08 | |
*** nosnos has quit IRC | 13:10 | |
openstackgerrit | Ana Krivokapic proposed openstack/tuskar-ui: Don't show spinner when deployment failed https://review.openstack.org/142771 | 13:14 |
*** dprince has joined #tripleo | 13:14 | |
*** athomas has joined #tripleo | 13:15 | |
*** morazi has joined #tripleo | 13:16 | |
*** andreaf is now known as andreaf_ | 13:16 | |
*** mcornea has quit IRC | 13:20 | |
*** noslzzp has quit IRC | 13:24 | |
*** pradeep1 has joined #tripleo | 13:28 | |
openstackgerrit | Merged openstack/tuskar-ui: Don't show spinner when deployment failed https://review.openstack.org/142771 | 13:30 |
*** mcornea has joined #tripleo | 13:38 | |
ukalifon1 | slagle: does the instack installation set up a dhcp server? how do I prevent it because it is causing us issues in the lab | 13:39 |
ukalifon1 | slagle: do you know what's the name of the service? | 13:39 |
*** jcoufal_ has joined #tripleo | 13:40 | |
slagle | ukalifon1: yes, tripleo uses neutron-dhcp-agent. and there's a second dnsmasq dhcp server running for discovery | 13:40 |
slagle | ukalifon1: you can turn them off, but don't expect any deployments to work if you do | 13:41 |
slagle | ukalifon1: usually you need to setup a private vlan or something if you're in a shared lab environment | 13:41 |
*** jcoufal has quit IRC | 13:43 | |
*** funzo has quit IRC | 13:49 | |
*** derekh has quit IRC | 13:52 | |
*** derekh has joined #tripleo | 13:57 | |
*** noslzzp has joined #tripleo | 14:03 | |
openstackgerrit | Jonathan Brownell proposed openstack/tripleo-image-elements: Add iptables rule for nova and mysql https://review.openstack.org/141221 | 14:13 |
*** radez_g0n3 is now known as radez | 14:18 | |
*** Marga_ has joined #tripleo | 14:25 | |
*** pradeep2 has joined #tripleo | 14:25 | |
*** pradeep1 has quit IRC | 14:28 | |
*** k4n0 has quit IRC | 14:29 | |
*** Marga_ has quit IRC | 14:35 | |
*** Marga_ has joined #tripleo | 14:36 | |
openstackgerrit | Radomir Dopieralski proposed openstack/tuskar-ui: Fix TemplateSyntaxError in the server-side filetring of node list views https://review.openstack.org/142800 | 14:37 |
*** Marga_ has quit IRC | 14:41 | |
ukalifon1 | slagle: I will try to recreate the registration issue and get you the logs you asked for the in the needinfo. However, I had to disable the neutron-dhcp-agent.service and openstack-ironic-discoverd-dnsmasq.service... Will it still be a valid case for you? | 14:46 |
slagle | ukalifon1: probably | 14:47 |
*** lucasagomes is now known as lucas-hungry | 14:52 | |
*** pradeep2 has quit IRC | 14:57 | |
*** pradeep1 has joined #tripleo | 14:57 | |
*** wuhg has quit IRC | 15:03 | |
*** david-lyle_afk has quit IRC | 15:07 | |
*** esp has joined #tripleo | 15:10 | |
*** mrunge has quit IRC | 15:12 | |
esp | hello, could I get some eyes on this patch please https://review.openstack.org/#/c/142621/, thx! | 15:13 |
*** jehb_ has joined #tripleo | 15:13 | |
*** chuckC_ has quit IRC | 15:25 | |
openstackgerrit | Dan Prince proposed openstack/tripleo-image-elements: Remove hack to reformat os-apply-config output https://review.openstack.org/142816 | 15:26 |
openstackgerrit | Clint 'SpamapS' Byrum proposed openstack/os-cloud-config: Remove sphinx from py3 tests https://review.openstack.org/142819 | 15:31 |
*** ukalifon1 has quit IRC | 15:32 | |
*** rdopiera has quit IRC | 15:33 | |
*** vinsh has quit IRC | 15:33 | |
SpamapS | esp: +2'd | 15:34 |
*** jang has quit IRC | 15:35 | |
*** jang1 has quit IRC | 15:35 | |
esp | thx SpamapS :) much appreciated | 15:35 |
*** jang has joined #tripleo | 15:35 | |
*** jang1 has joined #tripleo | 15:35 | |
*** lucas-hungry is now known as lucasagomes | 15:41 | |
gfidente | derekh, is the problem with CI blocking all jobs anywhere near fixed? | 15:41 |
gfidente | actually thcaypo was looking into it as well I think ;) | 15:42 |
derekh | gfidente: things were unblocked about 6 hours ago | 15:43 |
gfidente | ah wow :) | 15:43 |
gfidente | tks | 15:43 |
*** andreaf has joined #tripleo | 15:55 | |
*** vinsh has joined #tripleo | 15:57 | |
*** untriaged-bot has joined #tripleo | 16:00 | |
untriaged-bot | Untriaged bugs so far: | 16:00 |
untriaged-bot | https://bugs.launchpad.net/tripleo/+bug/1402928 | 16:00 |
untriaged-bot | https://bugs.launchpad.net/tripleo/+bug/1403685 | 16:00 |
untriaged-bot | https://bugs.launchpad.net/tripleo/+bug/1402795 | 16:00 |
uvirtbot | Launchpad bug 1402928 in tripleo "RabbitClientUseSSL type error in overcloud-without-mergepy.yaml " [Undecided,New] | 16:00 |
uvirtbot | Launchpad bug 1403685 in tripleo "Horizon memcached session engine config is not present" [Undecided,In progress] | 16:00 |
untriaged-bot | https://bugs.launchpad.net/tuskar/+bug/1387487 | 16:00 |
uvirtbot | Launchpad bug 1402795 in tripleo "Keystone token_flush cron job running at the same time in the controller node causes deadlock" [Undecided,In progress] | 16:00 |
*** untriaged-bot has quit IRC | 16:00 | |
uvirtbot | Launchpad bug 1387487 in tuskar "tripleo-image-elements/elements/tuskar-ui /os-refresh-config /post-configure.d/101-tuskar-ui needs authentication from Keystone" [Undecided,New] | 16:00 |
*** david-lyle has joined #tripleo | 16:02 | |
*** andreaf has quit IRC | 16:04 | |
*** pradk has joined #tripleo | 16:07 | |
tchaypo | How's pbr treating us? | 16:09 |
*** pradeep2 has joined #tripleo | 16:09 | |
*** pradeep1 has quit IRC | 16:11 | |
*** marun has joined #tripleo | 16:16 | |
*** andreaf has joined #tripleo | 16:18 | |
*** pcrews has joined #tripleo | 16:19 | |
derekh | tchaypo: we stopped building it, now things are ok | 16:21 |
*** jang1 has quit IRC | 16:23 | |
*** jang has quit IRC | 16:23 | |
*** Marga_ has joined #tripleo | 16:25 | |
*** pradeep1 has joined #tripleo | 16:27 | |
*** Marga_ has quit IRC | 16:28 | |
*** Marga_ has joined #tripleo | 16:28 | |
*** pradeep2 has quit IRC | 16:29 | |
*** pcaruana has quit IRC | 16:33 | |
openstackgerrit | James Slagle proposed openstack/tripleo-image-elements: Additional fixes for horizon package install https://review.openstack.org/142833 | 16:34 |
*** rwsu has joined #tripleo | 16:36 | |
*** Marga_ has quit IRC | 16:38 | |
*** Marga_ has joined #tripleo | 16:51 | |
*** andreaf has quit IRC | 17:00 | |
*** andreaf has joined #tripleo | 17:01 | |
*** jerryz_ has quit IRC | 17:04 | |
*** mcornea has quit IRC | 17:07 | |
*** EmilienM has quit IRC | 17:08 | |
*** bvandenh has quit IRC | 17:09 | |
*** EmilienM has joined #tripleo | 17:09 | |
*** avozza is now known as zz_avozza | 17:11 | |
SpamapS | tchaypo: looks like clarkb is on it https://review.openstack.org/#/c/142840/ | 17:13 |
clarkb | lots of failing test though :( will have to fix | 17:14 |
SpamapS | clarkb: wasn't pbr supposed to relieve us of the monotony of constantly updating versions.... | 17:17 |
clarkb | SpamapS: I am not sure I understand the question | 17:18 |
*** dtantsur is now known as dtantsur|afk | 17:19 | |
clarkb | pbr exists because cat herding all of openstack to release consistent python packages is impossible | 17:19 |
*** Marga_ has quit IRC | 17:21 | |
*** regebro has quit IRC | 17:21 | |
*** jang has joined #tripleo | 17:23 | |
*** zz_avozza is now known as avozza | 17:25 | |
SpamapS | clarkb: it was snark | 17:35 |
SpamapS | clarkb: pbr is amazingness... but it seems like we are broken around setuptools and pbr a lot.. and end up having to pin versions.. ;) | 17:36 |
SpamapS | clarkb: so it was bad snark. :) | 17:36 |
openstackgerrit | Nicholas Randon proposed openstack/tripleo-image-elements: Fix race between apache2 starting and o-r-c configuring apache2 https://review.openstack.org/112039 | 17:37 |
*** daneyon has quit IRC | 17:39 | |
*** daneyon has joined #tripleo | 17:40 | |
*** daneyon_ has joined #tripleo | 17:41 | |
*** cody-somerville has joined #tripleo | 17:43 | |
*** daneyon has quit IRC | 17:44 | |
*** dshulyak_ has joined #tripleo | 17:46 | |
*** ccrouch has quit IRC | 17:49 | |
*** ccrouch has joined #tripleo | 17:49 | |
*** Marga_ has joined #tripleo | 17:50 | |
*** dshulyak_ has quit IRC | 17:50 | |
*** funzo has joined #tripleo | 17:51 | |
*** pradeep2 has joined #tripleo | 17:57 | |
*** derekh has quit IRC | 17:58 | |
*** pradeep1 has quit IRC | 17:59 | |
*** Marga_ has quit IRC | 18:00 | |
openstackgerrit | Nicholas Randon proposed openstack/tripleo-image-elements: Fix race between apache2 starting and o-r-c configuring apache2 https://review.openstack.org/112039 | 18:00 |
*** Marga_ has joined #tripleo | 18:02 | |
*** dshulyak_ has joined #tripleo | 18:08 | |
*** pblaho has quit IRC | 18:08 | |
*** jtomasek has quit IRC | 18:21 | |
*** dshulyak_ has quit IRC | 18:22 | |
*** pblaho has joined #tripleo | 18:30 | |
*** cwolferh_ has joined #tripleo | 18:31 | |
rhallisey | sdake, | 18:36 |
openstackgerrit | Merged openstack/tripleo-image-elements: Disable set -x for passwords https://review.openstack.org/142562 | 18:37 |
openstackgerrit | Merged openstack/tripleo-incubator: Add sysctl to all images https://review.openstack.org/142524 | 18:39 |
*** ifarkas has quit IRC | 18:40 | |
*** jcoufal_ has quit IRC | 18:41 | |
*** athomas has quit IRC | 18:49 | |
*** dshulyak_ has joined #tripleo | 18:52 | |
*** pradeep2 has quit IRC | 18:54 | |
*** daneyon_ has quit IRC | 18:55 | |
*** daneyon has joined #tripleo | 18:55 | |
sdake | shoot | 18:57 |
*** daneyon_ has joined #tripleo | 19:06 | |
*** penick has joined #tripleo | 19:08 | |
*** Marga_ has quit IRC | 19:09 | |
*** daneyon has quit IRC | 19:10 | |
*** Marga_ has joined #tripleo | 19:12 | |
openstackgerrit | Lin Hua Cheng proposed openstack/tripleo-image-elements: Adds session_engine variable for memcached config https://review.openstack.org/142621 | 19:28 |
*** pradk has quit IRC | 19:30 | |
*** dprince has quit IRC | 19:35 | |
*** penick has quit IRC | 19:36 | |
*** dshulyak_ has quit IRC | 19:46 | |
*** penick has joined #tripleo | 19:51 | |
*** Marga_ has quit IRC | 20:05 | |
*** Marga_ has joined #tripleo | 20:06 | |
*** penick has quit IRC | 20:09 | |
*** Marga_ has quit IRC | 20:19 | |
*** Marga_ has joined #tripleo | 20:20 | |
*** Marga_ has quit IRC | 20:25 | |
*** dshulyak_ has joined #tripleo | 20:28 | |
*** cwolferh_ has quit IRC | 20:39 | |
*** panda has quit IRC | 20:41 | |
*** cwolferh has joined #tripleo | 20:41 | |
*** panda has joined #tripleo | 20:42 | |
*** dshulyak_ has quit IRC | 20:43 | |
*** weshay has quit IRC | 20:44 | |
*** jtomasek has joined #tripleo | 20:46 | |
*** Marga_ has joined #tripleo | 20:50 | |
*** Marga_ has quit IRC | 20:55 | |
*** weshay has joined #tripleo | 20:59 | |
*** dprince has joined #tripleo | 21:02 | |
*** akrivoka has quit IRC | 21:07 | |
*** dshulyak_ has joined #tripleo | 21:08 | |
*** lucasagomes has quit IRC | 21:18 | |
openstackgerrit | Dan Prince proposed openstack/tripleo-incubator: Allow overcloud image customizations https://review.openstack.org/140405 | 21:21 |
*** morazi has quit IRC | 21:23 | |
*** panda has quit IRC | 21:24 | |
openstackgerrit | Merged openstack/tripleo-heat-templates: Set more aggressive keepalive timings https://review.openstack.org/142527 | 21:31 |
*** jehb_ has quit IRC | 21:35 | |
*** jtomasek has quit IRC | 21:35 | |
*** pblaho has quit IRC | 21:46 | |
*** julim has quit IRC | 21:48 | |
*** Marga_ has joined #tripleo | 21:52 | |
*** jdob has quit IRC | 21:55 | |
*** Marga_ has quit IRC | 21:56 | |
*** untriaged-bot has joined #tripleo | 22:00 | |
untriaged-bot | Untriaged bugs so far: | 22:00 |
untriaged-bot | https://bugs.launchpad.net/tripleo/+bug/1402928 | 22:00 |
uvirtbot | Launchpad bug 1402928 in tripleo "RabbitClientUseSSL type error in overcloud-without-mergepy.yaml " [Undecided,New] | 22:00 |
untriaged-bot | https://bugs.launchpad.net/tripleo/+bug/1403685 | 22:00 |
uvirtbot | Launchpad bug 1403685 in tripleo "Horizon memcached session engine config is not present" [Undecided,In progress] | 22:00 |
untriaged-bot | https://bugs.launchpad.net/tripleo/+bug/1402795 | 22:00 |
uvirtbot | Launchpad bug 1402795 in tripleo "Keystone token_flush cron job running at the same time in the controller node causes deadlock" [Undecided,In progress] | 22:00 |
untriaged-bot | https://bugs.launchpad.net/tuskar/+bug/1387487 | 22:00 |
uvirtbot | Launchpad bug 1387487 in tuskar "tripleo-image-elements/elements/tuskar-ui /os-refresh-config /post-configure.d/101-tuskar-ui needs authentication from Keystone" [Undecided,New] | 22:00 |
*** untriaged-bot has quit IRC | 22:00 | |
*** Marga_ has joined #tripleo | 22:00 | |
*** gfidente has quit IRC | 22:05 | |
*** lblanchard has quit IRC | 22:07 | |
*** dshulyak_ has quit IRC | 22:07 | |
*** dprince has quit IRC | 22:08 | |
*** morazi has joined #tripleo | 22:10 | |
*** weshay has quit IRC | 22:13 | |
*** pblaho has joined #tripleo | 22:16 | |
*** daneyon has joined #tripleo | 22:25 | |
*** daneyon_ has quit IRC | 22:29 | |
*** funzo has quit IRC | 22:32 | |
*** funzo has joined #tripleo | 22:33 | |
*** avozza is now known as zz_avozza | 22:37 | |
*** pblaho has quit IRC | 22:40 | |
*** zz_avozza is now known as avozza | 22:42 | |
*** rlandy has quit IRC | 22:47 | |
*** david-ly_ has joined #tripleo | 22:58 | |
openstackgerrit | Merged openstack/tripleo-image-elements: Only configure Neutron DB connection if it is set https://review.openstack.org/137190 | 22:59 |
*** david-lyle has quit IRC | 23:03 | |
*** dsneddon has quit IRC | 23:03 | |
*** vinsh has quit IRC | 23:04 | |
*** dsneddon has joined #tripleo | 23:06 | |
*** EmilienM is now known as EmilienM|pto | 23:21 | |
*** chlong-running-t is now known as chlong | 23:23 | |
*** jang has quit IRC | 23:28 | |
*** lblanchard has joined #tripleo | 23:30 | |
*** vinsh has joined #tripleo | 23:51 | |
*** Marga_ has quit IRC | 23:52 | |
*** lblanchard has quit IRC | 23:53 | |
*** Marga_ has joined #tripleo | 23:53 | |
*** Marga__ has joined #tripleo | 23:56 | |
*** Marga_ has quit IRC | 23:57 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!