Thursday, 2014-12-18

greghaynesclarkb: I think new pbr broke us00:00
greghayneshttp://logs.openstack.org/62/142562/1/check-tripleo//check-tripleo-ironic-undercloud-precise-nonha/75dd9e5/console.html#_2014-12-17_23_18_55_45400:01
clarkbgreghaynes: huh thats odd00:02
greghaynesAgreed00:02
clarkbit 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
clarkbI have no idea what your build package thing does but it looks like stale code somewher00:04
clarkbe00:04
greghaynesits just cd /opt/stack/new//pbr;git tag -m 999.999.999 999.999.999;python setup.py sdist00:05
* greghaynes will try and replicate00:05
clarkb"just"00:06
clarkbso why tag at all?00:06
clarkbthat is just confusing and serves no purpose00:06
clarkbalso I think the issue is you are using new pbr to install old pr00:07
clarkband since . ends up in python paths it finds path to old pbr where entry point does not exist00:07
greghaynesaye00:07
greghaynesso the tagging is unrelated to that00:07
clarkbsure but its hella confusing00:08
greghayneseither way we need to use a venv python to build this00:08
clarkband can't be good00:08
clarkbwhy?00:08
greghaynesbecause old pbr apparently exists00:08
clarkbI think the fix is to update pbr repo first00:08
clarkboh except lol what are you even doing here00:08
clarkbok heres the thing00:08
clarkbpbr master has none of this stuff00:08
clarkbso you are taking backported setuptools fixing pbr and using it to install pbr master00:09
clarkbwhen you should just be installing pibr00:09
clarkbOR use pbr to install itself00:09
clarkbrather than two different sources00: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 #tripleo00:11
clarkbI think you can do that by doing whatever is going on there before anything else (so that pbr isn't already installed)00:11
clarkbbut really what is that code trying to accomplish? you already have pbr installed use that00:11
greghaynesclarkb: that is just trying to build a pbr package00:11
greghaynesclarkb: so we can install it in our mirror00:11
clarkbgreghaynes: so again I ask why are you building it instead of just using what you already have?00:12
clarkband why would you build it with version 999.999.99900:12
clarkbyou have basically prevented my ability to fix anything pbr related now00:12
clarkband its breaking you as a result00:12
greghaynesinside our vm's (not the jenkins slave) we have to install it from somewhere00:12
clarkbso take the sdist I have given you00:13
clarkband install that00:13
clarkbor make pbr go first (you won't get fixed pbr),00:13
greghaynesWhere is "the sdist you have given us"00:13
clarkbgreghaynes: from wherever you installed the pbr that is breaking you00:14
*** cinerama has quit IRC00:15
greghaynesI really dont see anywhere we do a pbr installation00:16
* greghaynes can keep looking00:16
clarkbgreghaynes: something else probably pulls it in for you00:17
greghaynesmy grep pbr on that console.log doesnt show it getting installed00:17
greghaynesso it could be before00:17
*** cinerama has joined #tripleo00:17
greghaynesbut I dont think a lot happens before then00:17
clarkbI mean installing dib will do it iirc00:17
clarkbso the problem with version 999.999.999 is that is not compatible with pbr<1.0 as in many of the projects00:18
greghaynesyea, were not to that point even I think00:18
clarkbso it is highly likely you don't even use the version of pbr ou are building for your mirror00:18
greghaynesoh, I see why00:19
greghaynesyea, that can be removed00:20
greghaynesrequires some work00:20
greghaynesbut I think its pretty unrelated to this fail00:20
greghaynesWe just did it so we dont have to tunnel --pre everywhere00:20
clarkbsure its just ridiculous and I have to point it out :)00:20
clarkbbecause it does not do what you think it does00:20
greghayneswell, theres two bad optuions00:20
greghayneswe either enable --pre everywhere - which means were not testing the same thing people run00:21
clarkbso you could just stop pacakging pbr alltogether if you want status quo00:21
greghaynes(because --pre applies to dependencies)00:21
clarkband ^ is where it is related00:21
greghaynesyea, thats a good temp fix00:21
greghaynes:/00:21
clarkbbecause that is honestly the same situation you would have been in before with that verison number00:21
greghaynesfun, so ill make a bug about stop using that tag. I agree that --pre is the lesser evil00:22
greghaynesor maybe we can even *gasp* fix our issue with --pre00:22
clarkbnow 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 is00:22
clarkbgreghaynes: I think the fix for --pre is to use == with things00:23
clarkbbecause if you tell pip to install foo==1.2.3a1 it should always install just that without any additional encouragement00:23
greghaynesthe problem is that we dont know how --pre effects the dependencies of $program00:23
clarkbright so don't use --pre instead use ==00:24
greghaynesthese are being installed as dependencies in a lot of places in the first place00:24
clarkbbut 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 pbr00:26
greghaynesaye00:27
*** vinsh has quit IRC00:28
greghaynesSo, Im not sure why we even want to make pbr packages in the first place00:28
greghaynesoh, ZUUL_CHANGES has a pbr at the front of it00:30
greghayneslol00:30
*** chuckC_ has quit IRC00:31
clarkboh 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
openstackgerritDan Nguyen proposed openstack/tripleo-image-elements: Adds session_engine variable for memcached config  https://review.openstack.org/14262100:31
greghayneshttp://logs.openstack.org/98/142598/1/check-tripleo//check-tripleo-ironic-undercloud-precise-nonha/df6bf75/console.html#_2014-12-17_23_53_58_42700:31
greghaynesnvm00:32
greghayneswe put it there ;)00:32
clarkboh good00:32
*** pradeep1 has quit IRC00:36
openstackgerritgreghaynes proposed openstack-infra/tripleo-ci: Fix pbr build fail  https://review.openstack.org/14262400:43
*** ChuckC has quit IRC00:44
SpamapSwe having timing issues in our o-r-c scripts00:48
SpamapSjust 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. DOH00:48
clarkbSpamapS: are you using 35357?00:49
SpamapScould be that keystone needs SO_REUSEADDR00:49
SpamapSclarkb: it's reserved in sysctl :)00:49
clarkbbecause that port falls in linux ephermeral port range and you can hit it00:49
clarkbSpamapS: oh good00:49
SpamapSclarkb: but no, it was 500000:49
SpamapSworse, o-r-c did not detect that keystone failed00:50
greghaynesSpamapS: https://review.openstack.org/#/c/138844/00:51
greghaynesthat might make a difference00:51
*** derekh has joined #tripleo00:52
derekhgreghaynes: looking at the CI failure, we could probably just add pbr to ALWAYS_MIRROR_PKGS and not add it to ZUUL_CHANGES00:53
SpamapSok running out the door now00:53
greghaynesderekh: ohai00:53
SpamapSnow getting SSL connections reset00:53
greghaynesderekh: we were just talking about this00:53
derekhgreghaynes: adding it to ZUUL_CHANGES was a relic left over from before we had ALWAYS_MIRROR_PKGS00:54
greghaynesderekh: why would that fix the issue? I cant find anywhere were installing pbr beforehand00:54
*** radez is now known as radez_g0n300:54
greghayneshttps://review.openstack.org/#/c/142624/ is something im doing to test the theory that pbr is already installed, btw00:54
clarkbso I think it is potentially possible that setup.py in pbr pulls down latest pbr00:54
clarkbwhich may mean pbr master will be broken until mordred ports the entrypoint into master00:55
clarkbso thats the other thing you could likely do is shove that in there00:55
clarkbeven if the entrypoint returned 000:55
greghaynesheh00:55
derekhgreghaynes: 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 it00:55
greghaynesderekh: oh. well if its in ALWAYS_MIRROR_PACKAGES itll get built too though wont it?00:56
derekhgreghaynes: no it will get downloaded into out local mirror00:56
greghaynesah00:56
derekhgreghaynes: not built00:56
clarkbI like that00:56
greghaynes+100:56
clarkbbecause then its not circumventing the fixes we are trying to get out00:56
greghaynesyea, I would still kind of like to see what is going on with this issue but I like that as a fix00:57
clarkbya its likely worth understanding what is going on there00:57
clarkbgreghaynes: let me try a thing00:57
derekhclarkb: greghaynes: ack00:57
derekhgreghaynes: btw, I closed about 40 bugs today that were already fixed or no longer relevant etc...00:58
clarkbgreghaynes: ya I can reproduce trivially00:58
greghaynesderekh: aha! so thats why I woke up to the open bug count decreasing that much00:58
greghaynesnice!00:58
greghaynesclarkb: orly00:58
clarkb`git clone pbr && git checkout master && virtualenv venv && venv/bin/python setup.py sdist`00:59
clarkbI think this will be broken until mordreds change gets onto master00:59
greghayneshahahaha00:59
clarkbpbr is itself pulling in latest pbr00:59
clarkbso let me see if I can make it not explode00:59
greghaynesI have to say it - this sounds like a value we add by building pbr in our ci01:00
derekhgreghaynes: yup, there is probably a load more that can just be closed but I ran out of time01:00
clarkbgreghaynes: I think our ci would catch it too01:00
derekhgreghaynes: yes but we should be doing it as part of pbr ci not in tripleo ;-)01:00
clarkbgreghaynes: we just don't have any changes against master01:00
clarkbderekh: yes we do it there and it should be caught01:01
clarkbhrm this may be even more awesome than it looks01:02
clarkbI am running in a dir local venv but my traceback includes "/usr/lib/python2.7/distutils/dist.py"01:02
clarkbwhich is fine because stdlib01:02
clarkbbut maybe distutils is picking up on global entrypoints even within a venv?01:02
greghaynesderekh: oh, so clarkb had a good point about why our git tag 99999 thing might not work01:04
clarkbbecause that entrpoint is for distutils?01:04
greghaynesderekh: a lot of things pin versions <X, apparently lots of things pin pbr<1.001:04
clarkbhrm if thats the case I think we all get pitchforks and chase down mordred01:04
clarkbmordred: ^01:04
*** jerryz has joined #tripleo01:04
derekhgreghaynes: o, ya thats probably a problem01:05
greghaynesderekh: Im not really a fan of the --pre thing, but clarkb suggested just installing what we build with the correct == requirements line01:06
greghaynesso ill prolly poke at that soon01:06
derekhgreghaynes: ok01:06
derekhgreghaynes: are you doing a patch for the pbr move or will I?01:07
greghaynesIm not at the moment, doesnt matter to me01:07
greghaynesisnt is crazypants late where you are?01:07
derekhgreghaynes: its a little late ;-), 1AM ish01:08
greghayneshaha, ok. ill do it01:08
derekhok01:08
openstackgerritgreghaynes proposed openstack-infra/tripleo-ci: Move pbr into downloaded packages  https://review.openstack.org/14262401:10
*** zz_avozza is now known as avozza01:10
*** ChuckC has joined #tripleo01:13
*** chuckC_ has joined #tripleo01:13
*** killer_prince is now known as lazy_prince01:14
derekhgreghaynes: lgtm, fingers crossed, ok sleep time.01:15
clarkbok my reproduction case was slightly bong hits. dstufft helped straighten me out01:15
greghaynesgn01:15
clarkbyou don't want your venv to be in the pbr dir for some reason01:15
derekhSpamapS this is your queue to say I need a bouncer01:16
*** derekh has quit IRC01:16
greghaynesclarkb: hrm, that shouldnt be an issue in our Ci01:17
clarkbgreghaynes: well I think in your CI I still think you may have a global pbr01:18
clarkbso same error but triggered differently01:18
*** avozza is now known as zz_avozza01:20
*** sdake has quit IRC01:29
*** sdake has joined #tripleo01:33
*** sdake has quit IRC01:33
*** sdake has joined #tripleo01:33
*** kes has joined #tripleo01:45
*** Marga_ has quit IRC01:46
*** Marga_ has joined #tripleo01:46
*** wuhg has joined #tripleo01:47
*** Marga_ has quit IRC01:51
SpamapSDec 18 02:05:20 ci-overcloud-controller0-nvacfowhjcy2 stunnel: LOG5[13678:3073579840]: Service [compute] accepted connection from 15.242.211.201:4927302:07
SpamapSDec 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
SpamapSlistening only on the vip and local... not 0.0.0.002:08
SpamapSthis stuff is really just borken isn't it?02:08
*** david-lyle is now known as david-lyle_afk02:10
SpamapSlooks like it has the capability02:11
*** lucas-dinner has joined #tripleo02:14
SpamapSeven odder.. connect_host is set, but stunnel confs don't have it02:14
* SpamapS suspects misunderstanding of mustache or bug in pystache02:15
*** zz_avozza is now known as avozza02:18
SpamapSinteresting02:18
SpamapS{{#stunnel}} stuff {{#ports}} {{connect_host}} {{/ports}}{{/stunnel}}   <-- populates connect_host02:19
SpamapS{{#stunnel.ports}}{{connect_host}}{{/stunnel.ports}}  <-- does not populate connect_host02:20
SpamapSand this makes sense02:20
SpamapSbecause stunnel.ports makes the active context stunnel.ports, there's no stunnel to fall back into02:20
SpamapSlooks like we need to get CI on SSL02:30
*** weshay has quit IRC02:32
*** avozza is now known as zz_avozza02:33
*** lucas-dinner has quit IRC02:37
openstackgerritClint 'SpamapS' Byrum proposed openstack/tripleo-image-elements: Fix mustache context cascading in stunnel config  https://review.openstack.org/14265002:39
SpamapSWell I've fixed two bugs today.. but they were both bugs I found while debugging other things. DOH02:39
SpamapSgreghaynes: ^^ the patch above fixes SSL for me.02:39
*** rwsu has quit IRC02:44
* SpamapS now runs into OS_CACERT problem which is already patched and just blocked by flaky CI02:50
*** lblanchard has joined #tripleo03:01
*** lblanchard has quit IRC03:03
*** vinsh has joined #tripleo03:04
*** lblanchard has joined #tripleo03:06
*** vinsh has quit IRC03:09
*** lblanchard has quit IRC03:10
*** lblanchard has joined #tripleo03:13
*** penick has quit IRC03:22
*** zz_avozza is now known as avozza03:26
*** vinsh has joined #tripleo03:28
*** julim has joined #tripleo03:29
*** pradeep1 has joined #tripleo03:38
*** avozza is now known as zz_avozza03:44
*** morazi has quit IRC03:48
*** pradeep1 has quit IRC03:49
*** lazy_prince is now known as killer_prince03:51
*** untriaged-bot has joined #tripleo04:00
untriaged-botUntriaged bugs so far:04:00
untriaged-bothttps://bugs.launchpad.net/tripleo/+bug/140292804:00
uvirtbotLaunchpad bug 1402928 in tripleo "RabbitClientUseSSL type error in overcloud-without-mergepy.yaml " [Undecided,New]04:00
untriaged-bothttps://bugs.launchpad.net/tripleo/+bug/140368504:00
uvirtbotLaunchpad bug 1403685 in tripleo "Horizon memcached session engine config is not present" [Undecided,In progress]04:00
untriaged-bothttps://bugs.launchpad.net/tripleo/+bug/140279504:00
uvirtbotLaunchpad 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-bothttps://bugs.launchpad.net/tuskar/+bug/138748704:00
uvirtbotLaunchpad 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 IRC04:00
*** Marga_ has joined #tripleo04:13
*** lblanchard has quit IRC04:19
*** killer_prince is now known as lazy_prince04:20
openstackgerritSteve Kowalik proposed openstack/os-cloud-config: Add tests for setup-flavors command-line utility  https://review.openstack.org/14023404:21
*** lblanchard has joined #tripleo04:31
*** Marga_ has quit IRC04:35
*** Marga_ has joined #tripleo04:35
*** zz_avozza is now known as avozza04:36
*** ukalifon1 has joined #tripleo04:41
*** lblanchard has quit IRC04:45
*** esp has left #tripleo04:52
*** avozza is now known as zz_avozza04:56
*** Marga_ has quit IRC05:05
*** nosnos has joined #tripleo05:10
*** tzumainn has quit IRC05:14
*** Marga_ has joined #tripleo05:31
*** jerryz has quit IRC05:36
*** lazy_prince has quit IRC05:48
*** zz_avozza is now known as avozza05:48
*** jerryz has joined #tripleo05:48
*** killer_prince has joined #tripleo05:49
*** killer_prince is now known as lazy_prince05:49
*** jerryz_ has joined #tripleo05:55
*** jerryz has quit IRC05:58
*** sdake has quit IRC06:04
*** sdake has joined #tripleo06:04
*** sdake has quit IRC06:05
*** sdake has joined #tripleo06:05
*** avozza is now known as zz_avozza06:08
*** k4n0 has joined #tripleo06:10
*** pradeep1 has joined #tripleo06:10
*** daneyon_ has quit IRC06:27
*** sdake has quit IRC06:28
*** daneyon has joined #tripleo06:28
*** sdake has joined #tripleo06:30
*** sdake has quit IRC06:30
*** sdake has joined #tripleo06:30
*** cody-somerville has quit IRC06:34
*** jtomasek has joined #tripleo06:38
*** dshulyak_ has joined #tripleo06:42
*** pcrews has joined #tripleo06:43
*** pcrews has quit IRC06:50
*** sdake has quit IRC06:50
*** mrunge has joined #tripleo06:58
*** zz_avozza is now known as avozza07:01
*** yuanying_ has joined #tripleo07:01
*** yuanying has quit IRC07:03
*** sdake has joined #tripleo07:10
*** sdake has quit IRC07:10
*** sdake has joined #tripleo07:10
*** subscope has joined #tripleo07:11
*** chlong is now known as chlong-running-t07:13
* tchaypo went to bed feeling confident that pbr would be fixed very soon07:15
* tchaypo woke up and read backlog07:15
*** rdopiera has joined #tripleo07:15
*** rdopiera has joined #tripleo07:16
*** jcoufal has joined #tripleo07:18
*** avozza is now known as zz_avozza07:18
*** sdake has quit IRC07:26
*** sdake has joined #tripleo07:29
*** sdake has quit IRC07:30
*** sdake has joined #tripleo07:30
*** sdake has quit IRC07:40
*** sdake has joined #tripleo07:42
*** Marga_ has quit IRC07:46
GheRiveromorning all07:51
*** pcaruana has joined #tripleo07:56
*** jtomasek has quit IRC07:57
*** zz_avozza is now known as avozza07:58
*** bvandenh has joined #tripleo07:59
*** yuanying has joined #tripleo07:59
*** yuanying_ has quit IRC08:02
*** dshulyak_ has quit IRC08:15
*** pradeep1 has quit IRC08:33
*** pradeep1 has joined #tripleo08:34
*** pradeep1 has quit IRC08:36
*** pradeep1 has joined #tripleo08:37
*** ifarkas has joined #tripleo08:46
*** akrivoka has joined #tripleo08:57
*** lazy_prince has quit IRC09:08
*** athomas has joined #tripleo09:10
*** lazy_prince has joined #tripleo09:11
*** lazy_prince has joined #tripleo09:11
*** derekh has joined #tripleo09:14
*** mcornea has joined #tripleo09:14
derekhgreghaynes: still there by any chance ?09:16
derekhpbr patch failed F20 CI, due to unrelated problem, lets merge it now https://review.openstack.org/#/c/142624/209:17
GheRiveroderekh: are you sure is it safe? I'm still reading trough the irc backlog... but can +A it if needed09:19
*** subscope has quit IRC09:20
derekhGheRivero: yup, it deals with the pbr problem we had, its the only test passes we've had for the last 16 hours09:20
GheRiverook, on my way09:21
openstackgerritMerged openstack-infra/tripleo-ci: Move pbr into downloaded packages  https://review.openstack.org/14262409:22
*** pblaho has joined #tripleo09:23
*** noslzzp has joined #tripleo09:29
*** takadayuiko has joined #tripleo09:31
*** takadayuiko has quit IRC09:31
*** untriaged-bot has joined #tripleo10:00
untriaged-botUntriaged bugs so far:10:00
untriaged-bothttps://bugs.launchpad.net/tripleo/+bug/140292810:00
uvirtbotLaunchpad bug 1402928 in tripleo "RabbitClientUseSSL type error in overcloud-without-mergepy.yaml " [Undecided,New]10:00
untriaged-bothttps://bugs.launchpad.net/tripleo/+bug/140368510:00
uvirtbotLaunchpad bug 1403685 in tripleo "Horizon memcached session engine config is not present" [Undecided,In progress]10:00
untriaged-bothttps://bugs.launchpad.net/tripleo/+bug/140279510:00
uvirtbotLaunchpad 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-bothttps://bugs.launchpad.net/tuskar/+bug/138748710:00
uvirtbotLaunchpad 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 IRC10:00
*** jp_at_hp has joined #tripleo10:00
*** dtantsur|afk is now known as dtantsur10:12
*** ishant has joined #tripleo10:15
openstackgerritOpenStack Proposal Bot proposed openstack/tuskar-ui: Updated from global requirements  https://review.openstack.org/14271610:21
*** jtomasek has joined #tripleo10:24
*** pradeep1 has quit IRC10:33
lazy_princehas anyone seen this..? http://paste.openstack.org/show/152654/10:33
lazy_princecan someone tell me how to fix this..?10:33
*** pradeep1 has joined #tripleo10:40
*** rlandy has joined #tripleo10:42
*** athomas has quit IRC10:43
lxslislagle_: please consider +ing https://review.openstack.org/#/c/131158/ ?10:49
openstackgerritErwan Velu proposed openstack/diskimage-builder: dracut-ramdisk: fix support for elements with ramdisk-install.d  https://review.openstack.org/14214110:49
*** athomas has joined #tripleo10: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
openstackgerritMerged openstack/tuskar-ui: Updated from global requirements  https://review.openstack.org/14271610:56
*** subscope has joined #tripleo10:56
*** pradeep1 has quit IRC10:56
*** lucasagomes has joined #tripleo11:15
*** pradeep1 has joined #tripleo11:20
*** avozza is now known as zz_avozza11:20
*** mcornea has quit IRC11:25
*** nosnos has quit IRC11:26
*** mcornea has joined #tripleo11:26
*** nosnos has joined #tripleo11:26
*** jiangfei has quit IRC11:27
*** mcornea has quit IRC11:27
*** jiangfei has joined #tripleo11:27
*** mcornea has joined #tripleo11:28
*** nosnos has quit IRC11:30
*** ishant has quit IRC11:31
*** nosnos has joined #tripleo11:39
*** sdake has quit IRC11:46
*** sdake has joined #tripleo11:47
*** sdake has quit IRC11:47
*** sdake has joined #tripleo11:47
*** pradeep1 has quit IRC11:49
*** athomas has quit IRC11:53
*** dsneddon has quit IRC11:59
*** athomas has joined #tripleo11:59
*** dsneddon has joined #tripleo12:00
slagle_lxsli: +2'd. sorry i missed doing that sooner!12:07
*** slagle_ is now known as slagle12:07
*** sdake has quit IRC12:10
*** andreaf_ is now known as andreaf12:13
*** rhallisey has joined #tripleo12:14
*** sdake has joined #tripleo12:18
*** sdake has quit IRC12:18
*** sdake has joined #tripleo12:18
*** zz_avozza is now known as avozza12:24
lxslislagle: thanks :)12:24
*** dshulyak has joined #tripleo12:28
*** sdake has quit IRC12:33
*** dshulyak has quit IRC12:36
*** thrash has quit IRC12:40
*** thrash has joined #tripleo12:43
*** lazy_prince is now known as killer_prince12:47
*** dshulyak has joined #tripleo12:50
*** weshay has joined #tripleo12:51
*** subscope has quit IRC12:53
*** dshulyak has quit IRC12:54
openstackgerritMerged openstack/os-apply-config: Output useful JSON data  https://review.openstack.org/14212012:55
*** jdob has joined #tripleo12:59
*** tzumainn has joined #tripleo13:01
*** sdake has joined #tripleo13:01
*** sdake has quit IRC13:01
*** sdake has joined #tripleo13:01
*** nosnos has quit IRC13:05
*** nosnos has joined #tripleo13:06
*** lblanchard has joined #tripleo13:06
*** athomas has quit IRC13:08
*** nosnos has quit IRC13:10
openstackgerritAna Krivokapic proposed openstack/tuskar-ui: Don't show spinner when deployment failed  https://review.openstack.org/14277113:14
*** dprince has joined #tripleo13:14
*** athomas has joined #tripleo13:15
*** morazi has joined #tripleo13:16
*** andreaf is now known as andreaf_13:16
*** mcornea has quit IRC13:20
*** noslzzp has quit IRC13:24
*** pradeep1 has joined #tripleo13:28
openstackgerritMerged openstack/tuskar-ui: Don't show spinner when deployment failed  https://review.openstack.org/14277113:30
*** mcornea has joined #tripleo13:38
ukalifon1slagle: does the instack installation set up a dhcp server? how do I prevent it because it is causing us issues in the lab13:39
ukalifon1slagle: do you know what's the name of the service?13:39
*** jcoufal_ has joined #tripleo13:40
slagleukalifon1: yes, tripleo uses neutron-dhcp-agent. and there's a second dnsmasq dhcp server running for discovery13:40
slagleukalifon1: you can turn them off, but don't expect any deployments to work if you do13:41
slagleukalifon1: usually you need to setup a private vlan or something if you're in a shared lab environment13:41
*** jcoufal has quit IRC13:43
*** funzo has quit IRC13:49
*** derekh has quit IRC13:52
*** derekh has joined #tripleo13:57
*** noslzzp has joined #tripleo14:03
openstackgerritJonathan Brownell proposed openstack/tripleo-image-elements: Add iptables rule for nova and mysql  https://review.openstack.org/14122114:13
*** radez_g0n3 is now known as radez14:18
*** Marga_ has joined #tripleo14:25
*** pradeep2 has joined #tripleo14:25
*** pradeep1 has quit IRC14:28
*** k4n0 has quit IRC14:29
*** Marga_ has quit IRC14:35
*** Marga_ has joined #tripleo14:36
openstackgerritRadomir Dopieralski proposed openstack/tuskar-ui: Fix TemplateSyntaxError in the server-side filetring of node list views  https://review.openstack.org/14280014:37
*** Marga_ has quit IRC14:41
ukalifon1slagle: 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
slagleukalifon1: probably14:47
*** lucasagomes is now known as lucas-hungry14:52
*** pradeep2 has quit IRC14:57
*** pradeep1 has joined #tripleo14:57
*** wuhg has quit IRC15:03
*** david-lyle_afk has quit IRC15:07
*** esp has joined #tripleo15:10
*** mrunge has quit IRC15:12
esphello, could I get some eyes on this patch please https://review.openstack.org/#/c/142621/, thx!15:13
*** jehb_ has joined #tripleo15:13
*** chuckC_ has quit IRC15:25
openstackgerritDan Prince proposed openstack/tripleo-image-elements: Remove hack to reformat os-apply-config output  https://review.openstack.org/14281615:26
openstackgerritClint 'SpamapS' Byrum proposed openstack/os-cloud-config: Remove sphinx from py3 tests  https://review.openstack.org/14281915:31
*** ukalifon1 has quit IRC15:32
*** rdopiera has quit IRC15:33
*** vinsh has quit IRC15:33
SpamapSesp: +2'd15:34
*** jang has quit IRC15:35
*** jang1 has quit IRC15:35
espthx SpamapS :) much appreciated15:35
*** jang has joined #tripleo15:35
*** jang1 has joined #tripleo15:35
*** lucas-hungry is now known as lucasagomes15:41
gfidentederekh, is the problem with CI blocking all jobs anywhere near fixed?15:41
gfidenteactually thcaypo was looking into it as well I think ;)15:42
derekhgfidente: things were unblocked about 6 hours ago15:43
gfidenteah wow :)15:43
gfidentetks15:43
*** andreaf has joined #tripleo15:55
*** vinsh has joined #tripleo15:57
*** untriaged-bot has joined #tripleo16:00
untriaged-botUntriaged bugs so far:16:00
untriaged-bothttps://bugs.launchpad.net/tripleo/+bug/140292816:00
untriaged-bothttps://bugs.launchpad.net/tripleo/+bug/140368516:00
untriaged-bothttps://bugs.launchpad.net/tripleo/+bug/140279516:00
uvirtbotLaunchpad bug 1402928 in tripleo "RabbitClientUseSSL type error in overcloud-without-mergepy.yaml " [Undecided,New]16:00
uvirtbotLaunchpad bug 1403685 in tripleo "Horizon memcached session engine config is not present" [Undecided,In progress]16:00
untriaged-bothttps://bugs.launchpad.net/tuskar/+bug/138748716:00
uvirtbotLaunchpad 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 IRC16:00
uvirtbotLaunchpad 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 #tripleo16:02
*** andreaf has quit IRC16:04
*** pradk has joined #tripleo16:07
tchaypoHow's pbr treating us?16:09
*** pradeep2 has joined #tripleo16:09
*** pradeep1 has quit IRC16:11
*** marun has joined #tripleo16:16
*** andreaf has joined #tripleo16:18
*** pcrews has joined #tripleo16:19
derekhtchaypo: we stopped building it, now things are ok16:21
*** jang1 has quit IRC16:23
*** jang has quit IRC16:23
*** Marga_ has joined #tripleo16:25
*** pradeep1 has joined #tripleo16:27
*** Marga_ has quit IRC16:28
*** Marga_ has joined #tripleo16:28
*** pradeep2 has quit IRC16:29
*** pcaruana has quit IRC16:33
openstackgerritJames Slagle proposed openstack/tripleo-image-elements: Additional fixes for horizon package install  https://review.openstack.org/14283316:34
*** rwsu has joined #tripleo16:36
*** Marga_ has quit IRC16:38
*** Marga_ has joined #tripleo16:51
*** andreaf has quit IRC17:00
*** andreaf has joined #tripleo17:01
*** jerryz_ has quit IRC17:04
*** mcornea has quit IRC17:07
*** EmilienM has quit IRC17:08
*** bvandenh has quit IRC17:09
*** EmilienM has joined #tripleo17:09
*** avozza is now known as zz_avozza17:11
SpamapStchaypo: looks like clarkb is on it https://review.openstack.org/#/c/142840/17:13
clarkblots of failing test though :( will have to fix17:14
SpamapSclarkb: wasn't pbr supposed to relieve us of the monotony of constantly updating versions....17:17
clarkbSpamapS: I am not sure I understand the question17:18
*** dtantsur is now known as dtantsur|afk17:19
clarkbpbr exists because cat herding all of openstack to release consistent python packages is impossible17:19
*** Marga_ has quit IRC17:21
*** regebro has quit IRC17:21
*** jang has joined #tripleo17:23
*** zz_avozza is now known as avozza17:25
SpamapSclarkb: it was snark17:35
SpamapSclarkb: 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
SpamapSclarkb: so it was bad snark. :)17:36
openstackgerritNicholas Randon proposed openstack/tripleo-image-elements: Fix race between apache2 starting and o-r-c configuring apache2  https://review.openstack.org/11203917:37
*** daneyon has quit IRC17:39
*** daneyon has joined #tripleo17:40
*** daneyon_ has joined #tripleo17:41
*** cody-somerville has joined #tripleo17:43
*** daneyon has quit IRC17:44
*** dshulyak_ has joined #tripleo17:46
*** ccrouch has quit IRC17:49
*** ccrouch has joined #tripleo17:49
*** Marga_ has joined #tripleo17:50
*** dshulyak_ has quit IRC17:50
*** funzo has joined #tripleo17:51
*** pradeep2 has joined #tripleo17:57
*** derekh has quit IRC17:58
*** pradeep1 has quit IRC17:59
*** Marga_ has quit IRC18:00
openstackgerritNicholas Randon proposed openstack/tripleo-image-elements: Fix race between apache2 starting and o-r-c configuring apache2  https://review.openstack.org/11203918:00
*** Marga_ has joined #tripleo18:02
*** dshulyak_ has joined #tripleo18:08
*** pblaho has quit IRC18:08
*** jtomasek has quit IRC18:21
*** dshulyak_ has quit IRC18:22
*** pblaho has joined #tripleo18:30
*** cwolferh_ has joined #tripleo18:31
rhalliseysdake,18:36
openstackgerritMerged openstack/tripleo-image-elements: Disable set -x for passwords  https://review.openstack.org/14256218:37
openstackgerritMerged openstack/tripleo-incubator: Add sysctl to all images  https://review.openstack.org/14252418:39
*** ifarkas has quit IRC18:40
*** jcoufal_ has quit IRC18:41
*** athomas has quit IRC18:49
*** dshulyak_ has joined #tripleo18:52
*** pradeep2 has quit IRC18:54
*** daneyon_ has quit IRC18:55
*** daneyon has joined #tripleo18:55
sdakeshoot18:57
*** daneyon_ has joined #tripleo19:06
*** penick has joined #tripleo19:08
*** Marga_ has quit IRC19:09
*** daneyon has quit IRC19:10
*** Marga_ has joined #tripleo19:12
openstackgerritLin Hua Cheng proposed openstack/tripleo-image-elements: Adds session_engine variable for memcached config  https://review.openstack.org/14262119:28
*** pradk has quit IRC19:30
*** dprince has quit IRC19:35
*** penick has quit IRC19:36
*** dshulyak_ has quit IRC19:46
*** penick has joined #tripleo19:51
*** Marga_ has quit IRC20:05
*** Marga_ has joined #tripleo20:06
*** penick has quit IRC20:09
*** Marga_ has quit IRC20:19
*** Marga_ has joined #tripleo20:20
*** Marga_ has quit IRC20:25
*** dshulyak_ has joined #tripleo20:28
*** cwolferh_ has quit IRC20:39
*** panda has quit IRC20:41
*** cwolferh has joined #tripleo20:41
*** panda has joined #tripleo20:42
*** dshulyak_ has quit IRC20:43
*** weshay has quit IRC20:44
*** jtomasek has joined #tripleo20:46
*** Marga_ has joined #tripleo20:50
*** Marga_ has quit IRC20:55
*** weshay has joined #tripleo20:59
*** dprince has joined #tripleo21:02
*** akrivoka has quit IRC21:07
*** dshulyak_ has joined #tripleo21:08
*** lucasagomes has quit IRC21:18
openstackgerritDan Prince proposed openstack/tripleo-incubator: Allow overcloud image customizations  https://review.openstack.org/14040521:21
*** morazi has quit IRC21:23
*** panda has quit IRC21:24
openstackgerritMerged openstack/tripleo-heat-templates: Set more aggressive keepalive timings  https://review.openstack.org/14252721:31
*** jehb_ has quit IRC21:35
*** jtomasek has quit IRC21:35
*** pblaho has quit IRC21:46
*** julim has quit IRC21:48
*** Marga_ has joined #tripleo21:52
*** jdob has quit IRC21:55
*** Marga_ has quit IRC21:56
*** untriaged-bot has joined #tripleo22:00
untriaged-botUntriaged bugs so far:22:00
untriaged-bothttps://bugs.launchpad.net/tripleo/+bug/140292822:00
uvirtbotLaunchpad bug 1402928 in tripleo "RabbitClientUseSSL type error in overcloud-without-mergepy.yaml " [Undecided,New]22:00
untriaged-bothttps://bugs.launchpad.net/tripleo/+bug/140368522:00
uvirtbotLaunchpad bug 1403685 in tripleo "Horizon memcached session engine config is not present" [Undecided,In progress]22:00
untriaged-bothttps://bugs.launchpad.net/tripleo/+bug/140279522:00
uvirtbotLaunchpad 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-bothttps://bugs.launchpad.net/tuskar/+bug/138748722:00
uvirtbotLaunchpad 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 IRC22:00
*** Marga_ has joined #tripleo22:00
*** gfidente has quit IRC22:05
*** lblanchard has quit IRC22:07
*** dshulyak_ has quit IRC22:07
*** dprince has quit IRC22:08
*** morazi has joined #tripleo22:10
*** weshay has quit IRC22:13
*** pblaho has joined #tripleo22:16
*** daneyon has joined #tripleo22:25
*** daneyon_ has quit IRC22:29
*** funzo has quit IRC22:32
*** funzo has joined #tripleo22:33
*** avozza is now known as zz_avozza22:37
*** pblaho has quit IRC22:40
*** zz_avozza is now known as avozza22:42
*** rlandy has quit IRC22:47
*** david-ly_ has joined #tripleo22:58
openstackgerritMerged openstack/tripleo-image-elements: Only configure Neutron DB connection if it is set  https://review.openstack.org/13719022:59
*** david-lyle has quit IRC23:03
*** dsneddon has quit IRC23:03
*** vinsh has quit IRC23:04
*** dsneddon has joined #tripleo23:06
*** EmilienM is now known as EmilienM|pto23:21
*** chlong-running-t is now known as chlong23:23
*** jang has quit IRC23:28
*** lblanchard has joined #tripleo23:30
*** vinsh has joined #tripleo23:51
*** Marga_ has quit IRC23:52
*** lblanchard has quit IRC23:53
*** Marga_ has joined #tripleo23:53
*** Marga__ has joined #tripleo23:56
*** Marga_ has quit IRC23:57

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