Friday, 2016-09-09

clarkbso its really nice to fixproperly upfront if possible imo00:00
armaxexperience thought me the hard way that the longer it takes to fix a gate issue, the more disgruntled people may get, especially during a busy time like RC00:01
armaxI am not in the position to deliver the right fix right now00:01
prometheanfirethis is devstack, so bash is ok?00:02
* prometheanfire hasn't worked on devstack00:02
*** Apoorva has quit IRC00:03
clarkbprometheanfire: yes its devstack and bash00:03
* clarkb writes a patch00:03
StevenKI've got a little bash script to find the interface name if that helps00:03
fungiarmax: oh, you abandoned it? i was about to push up a new patchset for you00:04
*** devananda is now known as devananda|dinner00:04
prometheanfirefor interface in $(find /sys/class/net/ -maxdepth 1 -type l | rev | cut -d '/' -f 1 | rev); do if [[ $(cat /sys/class/net/${interface}/type) -eq 1 ]]; then echo ${interface}; fi; done00:04
fungiat least that way you have an alternative if the rabbit hole on interface names goes much deeper00:05
clarkbStevenK: no its already in devstack00:05
prometheanfirefor interface in $(find /sys/class/net/ -maxdepth 1 -type l | rev | cut -d '/' -f 1 | rev); do if [[ $(cat /sys/class/net/"${interface}"/type) -eq 1 ]]; then echo "${interface}"; fi; done00:05
clarkbStevenK: all I should have to do is edit one line in devstack to set the default for LB_PHYSICAL_INTERFACE to the interface devsatck knows to use00:05
prometheanfirenow with quotes00:05
clarkbI jsut ahve to find what the variable name for that is00:05
prometheanfirenot sure that's enough for you00:06
prometheanfireyou could probably filter on the first character being e00:06
clarkbthis is what I was trying to say devstack already knows... so it should be really simple00:06
armaxfungi: I thought we didn’t want to pursue that route00:06
clarkbwe had to use the same info when fixing RAs for osic00:06
fungiarmax: i was still writing it up as a fallback, but i guess if this solution doesn't work out as a quick fix i can push up the regex change to move the xenial version to experimental and still run the trusty version of that job on all branches00:07
prometheanfirethis returns my only ethernet interface00:08
fungiso that you're not missing out on test coverage while you ping the experimental xenial version for a few days (if it ends up dragging on that long)00:08
prometheanfirefor interface in $(find /sys/class/net/ -maxdepth 1 -type l | rev | cut -d '/' -f 1 | rev); do if [[ $(cat /sys/class/net/"${interface}"/type) -eq 1 ]]; then echo "${interface}" | grep -E '^e.*'; fi; done00:08
armaxprometheanfire: I am not sure that determine the interface in such a way works in all cases though00:08
openstackgerritGraham Hayes proposed openstack-infra/project-config: Add new worker-model job, and remove 2 legacy dvsm jobs  https://review.openstack.org/36069500:09
armaxprometheanfire: might be fine in the gate though00:09
armaxfungi: I can restore it if you want it as an option00:09
prometheanfirearmax: given that names can be WHATEVER, it's not perfect, but likely fine for the gate00:09
clarkbhttps://review.openstack.org/367699 there thats based on what we did for RAs00:09
* armax looks00:10
*** shu-mutou has joined #openstack-infra00:10
clarkbwe'll have to edit the job to stop hard setting the value so this isn't actually self testing...00:10
armaxclarkb: we’d need to make this depend on the cleanup of ..00:10
armaxclarkb: right00:10
openstackgerritMerged openstack-infra/jenkins-job-builder: Update clone-workspace plugin  https://review.openstack.org/36689400:11
clarkbI am going to push a child patch that hardsets it in devstack to test00:11
clarkbwhich we can abandon when we do the other things00:11
prometheanfireclarkb: that prints my wireless, but is likely fine for gate00:11
armaxclarkb, prometheanfire: the caveat with the initialization LB_PHYSICAL_INTERFACE=${LB_PHYSICAL_INTERFACE:-$default_route_dev}00:12
clarkbhttps://review.openstack.org/367701 is the next one that will work00:12
clarkbprometheanfire: that means your default route goes out your wireless network :)00:12
armaxclark, prometheanfire is that one should not the physical interface for traffic be the one associated to the default route00:12
*** SumitNaiksatam has quit IRC00:12
fungiworth noting, the workaround in 367699 specifically looks for an ipv4 default route. if you had a v6-only system this needed to work on, you'd need a couple extra commands00:12
armaxbut I guess one has still the ability to override the value00:12
clarkbarmax: eth0 is the default route interface on our trusty images00:13
prometheanfireclarkb: of course :P00:13
clarkbarmax: so at least for testing that is how we were using it00:13
*** kvcobb has joined #openstack-infra00:13
prometheanfirefungi: true00:13
armaxclarkb: yeah, I think this is fine00:13
clarkbfungi: well it was good enough for RAs...00:13
armaxboth in the gate and not00:13
*** markvoelker has joined #openstack-infra00:13
armaxbecause the variable needed to be set explicitely anyway in order for Linuxbridge to work00:14
*** zul has quit IRC00:14
clarkbI do think however that a good long term plan for testing of this stuff is to only rely on things you can control by default00:15
clarkbdefinitely make it configurable so that you can use devstack on your local machine to get externally networked VMs00:16
clarkbbut seems like by default what is important is that the host is not broken and the VMs get conenctivity which is why I like the detached setup that is managed directly00:16
*** tqtran has quit IRC00:16
clarkband we haev had really good results with it for multinode testing00:16
*** adrian_otto has quit IRC00:17
clarkbarmax: prometheanfire fungi telnet://23.253.48.59:19885 is the job running against the devstack change that should work. If you want to follow it00:21
clarkbfungi: is there a project-config chagne I can review while we wait for devstack to do its thing?00:21
prometheanfireneat00:22
*** senk has quit IRC00:23
EmilienMclarkb: ack your comment on https://review.openstack.org/#/c/367551/9/run_tests.sh i'll work on it to make it better00:25
*** fguillot has joined #openstack-infra00:25
clarkbEmilienM: its a minor thing fwiw but fallocate is immedaite and dd for gigabytes is not :)00:25
EmilienMack00:25
armaxclarkb: I can post the project-config change that removes the hardcoding to eth0 if that’s what you’re asking00:26
armaxclarkb: shouldn’t 367699 be dependent on it for the LinuxBridge job to pass?00:26
*** kvcobb has quit IRC00:26
clarkbarmax: that chaneg but also if we still want to make it non voting or experimental until devstack can review and approve the fix00:27
*** kvcobb has joined #openstack-infra00:27
clarkbarmax: no we don't test with the proposed jenkins job upadtes when using depends on so it wont' really affect anything. I pushed a second change to devstack that only ever uses that calculated value which will test if it works despite the job config that uses eth000:27
armaxclarkb: ack00:28
armaxclarkb: as for the linuxbridge to non-voting, it’s all down to how quickly we can get 367699 in the gate00:29
armaxif it’s a matter of an hour or so I guess it’s probably not worth it00:29
clarkbarmax: ya and for that I can't help (not devstack core)00:29
armaxclarkb: you probably should become one :)00:29
*** piet has quit IRC00:34
openstackgerritArmando Migliaccio proposed openstack-infra/project-config: Remove hardcoding to eth0 in LinuxBridge job configuration  https://review.openstack.org/36770400:35
armaxclarkb: ^00:35
clarkbarmax: cool00:35
*** shu-mutou is now known as shu-mutou-AFK00:36
*** gyee has quit IRC00:37
clarkbarmax: at what point in the linuxbridge job was it failing? eg how far along does 367701 have to get for us to know it works?00:37
clarkbjust past devstacking?00:38
armaxclarkb: the l2 agent failed to start00:38
armaxclarkb: so devstack wouldn’t finish00:38
fungiclarkb: armax: yeah, if we need to make it experimental only then if armax wants to un-abandon 367693 i can push up a version with the branches adjusted to run trusty on master00:38
clarkbok, if that job passes devstack maybe we can get a devstack core to approve then it can be enqueued00:38
armaxwe’d fail like this:00:38
armaxhttp://logs.openstack.org/31/367331/1/gate/gate-tempest-dsvm-neutron-linuxbridge-ubuntu-xenial/bdba22e/logs/screen-q-agt.txt.gz00:38
armaxfungi: I restored it if we want the option00:39
clarkbfungi: armax why don't we push that too just in case we can't get devstack change merged00:39
clarkbor if it doesn't work for some reason00:39
*** kaisers has joined #openstack-infra00:40
openstackgerritJeremy Stanley proposed openstack-infra/project-config: Fix linuxbridge job breakage on xenial  https://review.openstack.org/36769300:40
*** kaisers1 has quit IRC00:40
armaxclarkb: sure, if that’s okay with you00:40
fungiarmax: clarkb: ^ (the xml comparison job result should tell us if it's overriding in the right direction)00:40
clarkbwe should know very soon the job thats running has been devstacking for ~12 minutes00:40
armaxclarkb: I am pretty positive that https://review.openstack.org/#/c/367701/ will pass00:41
armaxthe incognito is how long it is going for https://review.openstack.org/#/c/367699/ to go through the usual churn00:42
armaxhoping no intermittent failures set us back00:42
clarkbarmax: we can promote it too00:42
anteayathat is an interesting use of incognito00:43
* anteaya goes to a dictionary00:43
prometheanfire:(00:43
armaxanteaya: I misspoke, I meant Unknown00:44
anteayait has undisclosed and unidentified as synonyms00:44
armaxincognita being the Italian word for it00:44
anteayano, no actually it is really good00:44
anteayaI've just never seen it used like that before00:44
anteayathank you00:44
clarkbarmax: the dvr job is ok on xenial?00:45
armaxclarkb: looks like it is00:45
anteayaglad to learn the italian, thanks00:45
armaxanteaya: heh00:45
anteaya:)00:45
*** gongysh has quit IRC00:45
fungiwhee... oscon is the same week as the pike summit00:45
*** ilyashakhat_mobi has joined #openstack-infra00:46
anteayasame city?00:46
clarkbanteaya: no00:46
anteayathank goodness00:46
clarkboscon is staying in austin00:46
prometheanfirepike summit is atl right?00:46
fungiboston00:46
anteayapike gathering is atlanta00:46
anteayasummit is boston00:46
prometheanfireso confusing00:46
clarkbarmax: prometheanfire ok it started tempest so I think tahts the fix00:47
clarkbor possible fix. I have also +2'd the project-config change00:47
prometheanfireclarkb: I saw that, I hope the revert is quick is all00:47
armaxclarkb: I’ll get a message out on the ML00:47
clarkbis anyone from devstack core willing to review 367699 (and its child?)00:47
clarkbianw: mtreinish ^00:47
clarkbif we can get a devsatck core willing to ack 367699 then I will approve the change to remove eth0 from the job config00:48
anteayaso do we want 367693 now?00:48
anteayaor wait?00:48
clarkbotherwise we can approve https://review.openstack.org/36769300:48
clarkbanteaya: if a devstack core doesn't say anything in the next minute lets go ahead with 36769300:48
anteayaclarkb: very good00:48
* anteaya stands by00:48
clarkbthe neveryone can go back to their evenings and we can beg for devstack reviews in the morning00:49
*** kzaitsev_mb has joined #openstack-infra00:49
clarkb*then everyone00:49
anteayaI liked the concept of the neveryone00:50
anteayabegs a story to go with00:50
fungineveryone of the nethernet00:51
anteayasounds like we have our title00:51
prometheanfirerename newton to nethernet00:52
prometheanfiresed should get the job done00:52
clarkbwell I don't hear anyone from devstack probably best to just approve the workaround. We have a fix and a way to test it we just need reviews which aren't happening00:52
prometheanfireya, can revert if needed00:52
fungidid anyone get a chance to check the xml from that change?00:52
clarkbanteaya: want to review https://review.openstack.org/36769300:52
clarkbfungi: no not yet00:53
*** ilyashakhat_mobi has quit IRC00:53
clarkbfungi: but it looks right00:53
clarkbalso no xml involved because no jjb00:53
anteayaclarkb: reviewed already I just hadn't vote, will approve00:53
anteayavoted00:53
fungiclarkb: er, not xml but the layout job, sorry00:53
fungii'll have a peek at the log now to be sure00:53
anteayaoff it goes00:54
*** thorst has joined #openstack-infra00:54
*** rajinir has quit IRC00:55
clarkbfungi: I am not sure I know how to parse that job log to do the thing you want to do00:55
anteayaI just tried and I can't00:56
fungiyeah, i'm trying to figure that out myself. was pretty sure for each pipeline it lists the matching for a job00:57
anteayafour instances of gate-tempest-dsvm-neutron-linuxbridge-ubuntu-trusty in the log all followed by a cloud of matches00:57
fungitrying to see what branches are matching it00:57
fungihopefully .*00:57
anteayayeah I tried to look for branch information too, can't see in the noise00:57
anteaya3 are independent pipeline manager one is dependent pipeline manager00:58
clarkbalso I WIP'd https://review.openstack.org/#/c/367704/1 because we wnat to coordinate merging that with merging devstack fix00:58
clarkbdon't want one without the other00:58
anteayais a depends on in order here?00:59
clarkbanteaya: its sort ofa mutual depends on00:59
anteayaokay00:59
fungithe file matchers make it really hard to follow01:00
anteayaindeed01:00
fungithe dependent one is the gate, independents are (i think) check, experimental and silent?01:00
anteayaI have no basis to refute so I'll just accpet01:01
anteayaaccept01:01
*** mtreinish has quit IRC01:01
anteayaas it sounds reasonable to me01:01
anteayawe have FileMatcher and ProjectMatcher but no BranchMatcher01:01
*** thorst has quit IRC01:02
*** kzaitsev_mb has quit IRC01:02
fungii think the fact that those lines _don't_ end with ^(?!stable/(liberty|mitaka)).*$ tells us it's correct?01:02
clarkbmaybe?01:02
fungior, rather, start with01:02
fungicompare to a grep for the xenial version of the job01:03
openstackgerritMerged openstack-infra/project-config: Fix linuxbridge job breakage on xenial  https://review.openstack.org/36769301:03
anteayaI got this from the dependent pipeline manager line: http://paste.openstack.org/show/569494/01:03
fungiaha! yes, the match lines for the trusty version start with ^.*01:04
fungiit's just almost impossible to see with all those project/file matches after it01:04
fungiso we should be good01:04
anteayaoh good01:04
*** zhurong has joined #openstack-infra01:05
*** mtreinish has joined #openstack-infra01:05
fungianyway, i guess we'll know soon enough since it merged a couple minutes ago01:05
*** tonytan4ever has joined #openstack-infra01:05
* clarkb wonders if we need to be a lot more explicot about noy assuming things on thr test nodes01:06
clarkbdont assume interface names or count, dont assume routable ipv4, dont assume swap, dont assume cpu count, dont assume architecture (I wish) etc01:07
*** jamesdenton has quit IRC01:07
*** jamesdenton has joined #openstack-infra01:08
clarkbdont assume cpu flags01:08
*** thorst has joined #openstack-infra01:09
prometheanfirecloudnull: yep :P01:10
clarkbthings you can rely on: 8GB of ram at least 80gb of disk, root access, ext4 filesystem01:10
*** gongysh has joined #openstack-infra01:11
ianwclarkb: i remember we had a change out that was complaining about failing when no default route on compute nodes01:11
clarkbianw: really? we should always have default routes on all our current machines01:12
clarkbotherwise how would zuul work01:12
ianwclarkb: that was what i said ... finding it ...01:12
fungiwell, _a_ default route (currently at least ipv4, but someday could be v6-only)01:12
ianwclarkb: https://review.openstack.org/#/c/361572/01:13
*** ociuhandu has quit IRC01:13
fungiour dual-stack nodes do technically have more than one default route (one for each configured address family)01:13
clarkbianw thats for randompeople doing random things :) I think we can tell them to set up machines properly01:14
*** Apoorva has joined #openstack-infra01:14
clarkbianw: but maybe we ahould centralize that determination in devstack rather than have it in mulyiple places for dofferent neutron files01:14
clarkbI will defer to your thoughts on that now01:14
ianwclarkb: yes, i hadn't read it since it got abandoned, i think as explained it's sufficiently corner case01:14
anteayaonly 2 neutron changes in zuul, one in check and one in the gate, they both started before the change merged01:17
*** rossella_s has quit IRC01:18
fungishould wait for zuul's last reconfigured time to update on the status page, then recheck a failed neutron change to see updated jobs01:18
anteayak01:18
*** rossella_s has joined #openstack-infra01:19
*** IlyaG has quit IRC01:21
*** spzala has joined #openstack-infra01:21
*** yanyanhu has joined #openstack-infra01:21
*** kaisers_ has joined #openstack-infra01:22
*** jamesdenton has quit IRC01:25
anteayafungi: feel like addressing the post to dev about the recaptcha on the wiki?01:25
anteayaseems malini has not been following the precarious state of the wiki01:25
*** spzala has quit IRC01:26
*** thcipriani is now known as thcipriani|afk01:26
anteayafungi: you'd be more diplomatic than I, I do believe01:26
*** kaisers_ has quit IRC01:27
kevinbentonclarkb: for the vxlan tunnel setup by infra in multi-node, how is the VNI identifier selected?01:36
anteayazuul last updated 5.5 hours ago and I'm getting tired of waiting01:36
anteayahello kevinbenton01:36
kevinbentonanteaya: hello01:36
kevinbentonanteaya: long time, no see!01:37
anteayakevinbenton: I know it, how've you been?01:37
fungianteaya: diplomacy applied with a trowel01:37
anteayafungi: like only you can01:37
kevinbentonanteaya: busy busy01:37
kevinbentonanteaya: you?01:37
anteayaless busy than you online, extremely busy offline for the past 4 weeks01:38
anteayabut happy as the effects of the offline things are marvelous01:38
*** yamahata has joined #openstack-infra01:38
kevinbentonthat's good01:38
anteayaneutron seems to be in reasonable shape this round to my eyes01:38
anteayathank you01:38
kevinbentonare you going to barcelona?01:38
anteayado you feel the same or am I wearing rose coloured glasses01:39
kevinbentonthat's good to hear :)01:39
anteayathanks01:39
anteayaI won't be at summit, no01:39
kevinbentonyeah, been busy fixing bugs and making things stable01:39
clarkbkevinbenton: we use the last octet of the ipv4 address for the "core" of thr overlay iirc01:39
anteayathe things I am doing offline require me to stay home this fall01:39
anteayayay for making this stable, thank you kevinbenton01:39
clarkbkevinbenton: probably there are better eays but that already is unique so we overloaded iirc01:39
kevinbentonanteaya: ah, makes sense01:39
anteayakevinbenton: I'll miss you, that will make it a long time since I've seen you01:39
anteayakevinbenton: so I'll just look forward to the next opportunity :)01:40
kevinbentonanteaya: yeah, will have to catch up in Atlanta I suppose01:40
clarkbI would have to double check by reading the code though01:40
*** zshuo has joined #openstack-infra01:40
anteayathat probably will be the next opportunity, yeah01:40
kevinbentonclarkb: so the VNI identifier just seems to be "2" in this case01:41
kevinbentonclarkb: http://logs.openstack.org/91/367191/2/check/gate-tempest-dsvm-neutron-dvr-multinode-full-ubuntu-xenial/7fd0e33/logs/worlddump-2016-09-08-142826.txt.gz01:41
kevinbentonclarkb: ctrl-f 'options: {key="2", local_ip="10.201.127.234",'01:41
*** gongysh has quit IRC01:41
clarkbya rereading it its the ip addrs last octet for the remotes01:42
clarkbso I was almost right01:42
clarkbcore gets .1 remote gets .2 thus vni is 201:43
anteayaI'm going offline now, zuul hasn't updated recently so I haven't rechecked any neutron patches01:43
anteayag'night01:44
kevinbentonanteaya: night01:44
kevinbentonclarkb: so does that mean the other side is using a different VNI ?01:44
clarkbkevinbenton: no its both 201:44
kevinbentonclarkb: ok. so next question might be silly, but why aren't they just static?01:45
*** Apoorva has quit IRC01:45
clarkbwhy isnt the vni static? because we sometimes have more than one overlay or more than 2 hosts (though wr havnet implemented more than 2 hosts yet01:45
clarkbnova net requires two overlays01:46
*** piet has joined #openstack-infra01:46
kevinbentonclarkb: i see01:46
clarkbyou cant share the l2 due to nova net ebtables01:46
kevinbentonclarkb: so does that mean the VNI will always be < 10 ?01:47
kevinbentonclarkb: in infra?01:47
kevinbentonclarkb: i need to submit a patch to make sure neutron isn't using the same VNIs01:48
kevinbentonclarkb: it's causing issues since br-ex is managed by the agent01:48
clarkbno I think that we use a /25 so the last octet on thr second overlays second host is.12901:48
clarkbkevinbenton: I'm not sure I folloe01:48
clarkbbr-ex is not managed which us ehy its such a pita01:48
clarkbif you didnt manually create one you get a dangling one01:49
kevinbentonclarkb: er, sorry. i mean the agent will wire things between it and br-int01:49
clarkbbut that doesnt touch vxlan thats just a local veth pair right?01:50
kevinbentonclarkb: yeah, actually that doesn't matter. the issue seems to be that OVS has multiple tunnels using the same VNI01:51
clarkboh fun. I recommend neutron not use existing IDs :)01:51
*** jamesdenton has joined #openstack-infra01:51
kevinbentonclarkb: yes01:51
kevinbentonclarkb: i'm seeing things that belong to a neutron network decapped onto br-ex because of it01:51
clarkball yhis setup happens before neuyron starts so as long as ypu pick others in the 12bit ramge should be fine01:51
kevinbentonclarkb: yep, which brings me to one last question01:52
kevinbentonclarkb: where should i put the config change for this?01:52
kevinbentonclarkb: devstack-gate?01:52
clarkbno01:52
clarkbneutron01:52
clarkbneutron shouodnt reuse vnis01:52
kevinbentonclarkb: it's not reusing VNIs01:53
kevinbentonclarkb: the operator used a VNI and then told neutron it was safe to use one01:53
clarkbwhat?01:53
clarkbyou mean ops have to explicitly set the range?01:53
kevinbentonclarkb: neutron is configured with a range of VNIs to safely allocate from for tenant networks01:53
clarkbugh01:53
clarkbthis is the myu stuff all over again01:53
kevinbentonclarkb: yes, because there is no way to know what is going to be on each agent01:53
clarkbwhy not?01:54
clarkbyou cant ask the local ovs?01:54
kevinbentonclarkb: this is the neutron server01:54
clarkbyes but you have agents rumning eberywhere01:54
kevinbentonclarkb: do you propose we query every agent to ask what VNI is in use?01:54
clarkbwell everywhere that matters01:54
clarkbits the same mtu issur all over again01:54
kevinbentonclarkb: everywhere that matters is any possible agent01:54
clarkbneutron has thr data and should figure it out01:54
kevinbentonclarkb: no it doesn't01:54
kevinbentonclarkb: a VNI is a resource of the datacenter01:55
kevinbentonclarkb: there can be VNIs in use in the datacenter that isn't in use on the agents01:55
kevinbentonclarkb: and it's still unsafe to use01:55
clarkbbut that only matters if you have ips that overlap right?01:55
clarkbin ehich case the agemt would know?01:56
clarkbreusing ids in non overlapping tunnels shpuld be fine01:56
kevinbentonclarkb: VNIs can be carried in multicast traffic (linux bridge can do this for it's broadcast data)01:56
kevinbentonclarkb: if neutron arbitrarily grabs a VNI01:57
kevinbentonclarkb: it can step on VNIs in use by the datacenter01:57
clarkbI see (we dont use mulyicast because we cant)01:57
fungiwell, assuming they reuse the same multicast groups i guess?01:57
clarkbright that too01:57
kevinbentonfungi: yep01:57
fungii mean, reusing multicast groups on your network is also a bad idea if you don't know they won't carry conflicting traffic01:58
clarkbok what is the default range used by drvstack/neutron?01:58
kevinbentondevstack looks to select 1:100001:58
clarkbkevinbenton: we can use 8192 + offset in devstack-gate then.01:59
clarkbor similar01:59
*** kzaitsev_mb has joined #openstack-infra01:59
kevinbentonclarkb: yep, anything that will be well out of your way01:59
clarkbwould need to edit bottom of functions.sh01:59
kevinbentonclarkb: we could even do something exotic like 123456701:59
kevinbentonclarkb: nobody ever uses the high numbers01:59
fungiright, too big to remember ;)02:00
clarkbkevinbenton: I'll let ypu pick yhe offset :)02:00
kevinbentonclarkb: ok. where am i submitting this?02:00
clarkbdevstack-gate/funcntions.sh02:00
*** gongysh has joined #openstack-infra02:01
clarkbset key = offset + additional offset02:01
clarkbwhere additional offset is whatever you pock02:01
* clarkb wishes he could just go back to gre oh well02:01
kevinbentonclarkb: ah, i see. changing the VNI on infra side02:02
kevinbentonclarkb: rather than the pool neutron uses02:02
clarkbkevinbenton: ya to avoid non backward compat with devstack02:02
kevinbentonclarkb: oh, for grenade jobs, right?02:02
clarkbnot sure if changing devstack will break anything but devstack gate is uses in single use things02:02
clarkbkevinbenton: ya or people with local installs02:03
fungiwhile this is riveting, i think i need to retire for the evening. later, all02:03
clarkbfungi: goodnight02:03
kevinbentonclarkb: oh, well i meant the change would still be devstack-gate, just in setting the tunnel ranges for neutron02:03
kevinbentonclarkb: but this works as well02:03
openstackgerritRui Chen proposed openstack-infra/project-config: Create a new project python-nimbleclient  https://review.openstack.org/36714602:03
clarkbkevinbenton: no if we were to chamge neutrons range that should go in devstack so just changing the range multinode uses is best02:04
kevinbentonclarkb: ack02:04
*** akshai has joined #openstack-infra02:04
*** adrian_otto has joined #openstack-infra02:05
clarkbhrm zuul still hasnt reloaded its config02:05
*** yamahata has quit IRC02:07
clarkbkevinbenton: what changed so that wr are only noticing this now?02:08
kevinbentonclarkb: it's a pretty rare failure02:09
kevinbentonclarkb: IIRC the neutron allocation strategy for VNIs is to go through the pool before starting over02:10
*** adrian_otto has quit IRC02:11
clarkblooked like we had an old stuck ansible run from just before the fix for linuxbridge things merged so I went ahead and cleared those processes out hoping the next run through will be happier02:13
*** adrian_otto has joined #openstack-infra02:13
openstackgerritKevin Benton proposed openstack-infra/devstack-gate: Don't use 1:1000 VNI range for node-to-node tunnels  https://review.openstack.org/36771602:14
*** roxanagh_ has joined #openstack-infra02:15
clarkband ansible is running again02:15
clarkbkevinbenton: is it expected that in normal operation neutron and the rest of your datacenter would overlap? Not sure how that would work since you can't specify the vni when you create a neutron entwork right?02:18
clarkbkevinbenton: basically this is a hard requirement from neutron today that you always set non overlapping ranges?02:19
kevinbentonclarkb: yeah, set non overlapping ranges02:19
clarkbianw: maybe you can also review 367716?02:20
kevinbentonclarkb: as an admin you can specify the VNI for an individual network02:20
clarkbkevinbenton: ah but not as a normal user02:20
*** sarob has joined #openstack-infra02:20
kevinbentonclarkb: right, the ranges just control automatic allocation02:20
kevinbentonclarkb: as an admin you can even pick one outside of the range if you wanted02:20
*** spzala has joined #openstack-infra02:21
ianwclarkb: looking...02:22
*** adrian_otto has quit IRC02:24
*** sarob has quit IRC02:24
*** chlong has joined #openstack-infra02:26
clarkbthere we go zuul is updated02:27
clarkbI rechecked https://review.openstack.org/#/c/367529/202:28
clarkband it has queued the trusty linuxbrideg job so I think we are good for now02:28
* clarkb returns to regularly scheduled evening02:28
*** salv-orl_ has joined #openstack-infra02:30
*** devananda|dinner has quit IRC02:32
*** clayton has quit IRC02:32
*** IlyaG has joined #openstack-infra02:32
*** clayton has joined #openstack-infra02:33
*** salv-orlando has quit IRC02:33
*** IlyaG has quit IRC02:34
*** fguillot has quit IRC02:34
amrithAJaeger, at your convenience please take a look at https://review.openstack.org/#/c/367640/, it found some interesting problems :)02:42
*** mriedem has quit IRC02:46
*** tonytan4ever has quit IRC02:46
*** spzala has quit IRC02:48
*** amotoki has quit IRC02:49
*** ilyashakhat_mobi has joined #openstack-infra02:49
*** piet has quit IRC02:51
*** ilyashakhat_mobi has quit IRC02:54
*** piet has joined #openstack-infra02:57
*** sflanigan is now known as sflanigan_afk02:58
*** devananda|dinner has joined #openstack-infra02:59
*** vinaypotluri has quit IRC03:02
*** roxanagh_ has quit IRC03:07
*** Jeffrey4l has joined #openstack-infra03:09
*** amitgandhinz has quit IRC03:11
*** kaisers_ has joined #openstack-infra03:11
*** tqtran has joined #openstack-infra03:15
*** kaisers_ has quit IRC03:16
*** tqtran has quit IRC03:19
*** sflanigan_afk is now known as sflanigan03:20
*** IlyaG has joined #openstack-infra03:20
*** Apoorva has joined #openstack-infra03:21
*** IlyaG has quit IRC03:22
*** david-lyle_ has joined #openstack-infra03:22
*** david-lyle_ has quit IRC03:22
*** roxanagh_ has joined #openstack-infra03:23
*** armax has quit IRC03:24
*** rfolco has quit IRC03:25
*** ociuhandu has joined #openstack-infra03:32
*** roxanagh_ has quit IRC03:33
*** jamesdenton has quit IRC03:34
*** ociuhandu has quit IRC03:36
*** tonytan4ever has joined #openstack-infra03:44
*** amotoki has joined #openstack-infra03:49
*** shu-mutou-AFK is now known as shu-mutou03:51
*** rhallisey has joined #openstack-infra03:54
*** roxanagh_ has joined #openstack-infra03:57
*** kaisers_ has joined #openstack-infra03:59
*** piet has quit IRC04:10
*** kzaitsev_mb has quit IRC04:14
*** amotoki has quit IRC04:16
*** tqtran has joined #openstack-infra04:16
*** spzala has joined #openstack-infra04:17
*** spzala has quit IRC04:17
*** rhallisey has quit IRC04:18
*** hamzy has joined #openstack-infra04:19
*** woodster_ has quit IRC04:19
*** tqtran has quit IRC04:21
*** harlowja_at_home has joined #openstack-infra04:23
*** zul has joined #openstack-infra04:27
*** rm_work has quit IRC04:31
*** akshai has quit IRC04:32
*** rm_work has joined #openstack-infra04:34
*** rm_work has quit IRC04:36
*** rm_work has joined #openstack-infra04:38
*** coolsvap has joined #openstack-infra04:43
*** psachin has joined #openstack-infra04:45
openstackgerritMerged openstack-infra/project-config: Add py3 jobs for fuel-ccp-entrypoint repo  https://review.openstack.org/36641204:47
*** snarwade has joined #openstack-infra04:49
openstackgerritIan Wienand proposed openstack/diskimage-builder: Move elements & lib relative to diskimage_builder package  https://review.openstack.org/34401704:49
*** roxanagh_ has quit IRC04:50
openstackgerritAnusha Ramineni proposed openstack-infra/project-config: Congress - Add replicated PE job  https://review.openstack.org/36586204:50
*** ilyashakhat_mobi has joined #openstack-infra04:51
*** pgadiya has joined #openstack-infra04:52
*** thorst has quit IRC04:55
*** ilyashakhat_mobi has quit IRC04:56
*** kzaitsev_mb has joined #openstack-infra04:58
*** Apoorva has quit IRC04:58
*** roxanagh_ has joined #openstack-infra05:00
*** Jeffrey4l_ has joined #openstack-infra05:00
*** furlongm_ is now known as furlongm05:01
*** roxanagh_ has joined #openstack-infra05:02
*** thorst has joined #openstack-infra05:03
*** senk has joined #openstack-infra05:03
*** thorst has quit IRC05:03
*** thorst has joined #openstack-infra05:03
*** Jeffrey4l has quit IRC05:04
*** kzaitsev_mb has quit IRC05:04
*** roxanagh_ has quit IRC05:07
*** roxanagh_ has joined #openstack-infra05:10
*** dahoo has quit IRC05:13
*** zul has quit IRC05:13
*** ilyashakhat_mobi has joined #openstack-infra05:15
*** moravec has joined #openstack-infra05:16
*** moravec1 has quit IRC05:16
*** claudiub|2 has joined #openstack-infra05:19
*** jaosorior has joined #openstack-infra05:21
*** claudiub has joined #openstack-infra05:21
*** zul has joined #openstack-infra05:23
*** claudiub|2 has quit IRC05:25
*** burgerk has quit IRC05:28
*** roxanagh_ has quit IRC05:28
*** zshuo has quit IRC05:30
*** chlong_ has joined #openstack-infra05:31
*** Mary has joined #openstack-infra05:31
*** Mary is now known as Guest2680205:31
*** ilyashakhat_mobi has quit IRC05:32
*** roxanagh_ has joined #openstack-infra05:33
*** harlowja_at_home has quit IRC05:33
*** Guest26802 has quit IRC05:35
*** zul has quit IRC05:38
*** Ravikiran_K has joined #openstack-infra05:41
*** amotoki has joined #openstack-infra05:43
*** ilyashakhat_mobi has joined #openstack-infra05:48
*** roxanagh_ has quit IRC05:49
openstackgerritzhurong proposed openstack-infra/project-config: Enable translation for solum  https://review.openstack.org/36775605:54
*** adriant has quit IRC05:55
openstackgerritzhurong proposed openstack-infra/project-config: Enable translation for solum  https://review.openstack.org/36775605:59
*** tonytan4ever has quit IRC06:00
*** kzaitsev_mb has joined #openstack-infra06:01
*** claudiub has quit IRC06:01
openstackgerritmathieu bultel proposed openstack-infra/tripleo-ci: WIP -- clean full upgrade review  https://review.openstack.org/36485906:04
*** yamahata has joined #openstack-infra06:09
*** ilyashakhat_mobi has quit IRC06:12
*** kvcobb has quit IRC06:13
*** _nadya_ has joined #openstack-infra06:13
*** ccamacho has joined #openstack-infra06:13
*** _nadya_ has quit IRC06:17
*** berendt has quit IRC06:17
*** tqtran has joined #openstack-infra06:18
*** amotoki has quit IRC06:19
*** YorikSar_ has quit IRC06:21
*** tqtran has quit IRC06:23
*** e0ne has joined #openstack-infra06:23
*** YorikSar has joined #openstack-infra06:23
*** pcaruana has joined #openstack-infra06:23
*** amotoki has joined #openstack-infra06:28
openstackgerrityinxiulin proposed openstack-infra/project-config: tricircle: Enable neutron in tricircle tempest  https://review.openstack.org/36722006:29
*** harlowja_at_home has joined #openstack-infra06:29
*** _nadya_ has joined #openstack-infra06:31
*** hferenc has joined #openstack-infra06:38
*** hashar has joined #openstack-infra06:38
*** Na3iL has joined #openstack-infra06:39
*** andreas_s has joined #openstack-infra06:46
*** senk has quit IRC06:46
*** harlowja_at_home has quit IRC06:47
*** harlowja_at_home has joined #openstack-infra06:48
*** amotoki has quit IRC06:48
*** ilyashakhat_mobi has joined #openstack-infra06:48
openstackgerritzhurong proposed openstack-infra/project-config: Enable translation for solum  https://review.openstack.org/36775606:50
*** camunoz has quit IRC06:51
*** amitgandhinz has joined #openstack-infra06:52
openstackgerritChaoyi Huang proposed openstack-infra/project-config: Add new project Trio2o  https://review.openstack.org/36711406:52
*** amotoki has joined #openstack-infra06:52
*** harlowja_at_home has quit IRC06:57
*** pahuang has quit IRC06:57
*** mikelk has joined #openstack-infra06:58
*** florianf has joined #openstack-infra07:00
*** mikelk has quit IRC07:01
*** jlanoux has joined #openstack-infra07:02
*** amotoki has quit IRC07:02
*** jamielennox|away is now known as jamielennox07:03
*** tkelsey has joined #openstack-infra07:04
*** aeng has quit IRC07:05
*** tesseract- has joined #openstack-infra07:07
*** dtardivel has joined #openstack-infra07:07
*** flepied has quit IRC07:07
*** yaume has joined #openstack-infra07:07
*** jlanoux_ has joined #openstack-infra07:10
*** jlanoux has quit IRC07:10
*** matrohon has joined #openstack-infra07:12
*** claudiub has joined #openstack-infra07:13
*** amotoki has joined #openstack-infra07:14
*** Hal1 has joined #openstack-infra07:15
openstackgerritmathieu bultel proposed openstack-infra/tripleo-ci: WIP -- clean full upgrade review  https://review.openstack.org/36485907:17
*** _nadya_ has quit IRC07:18
*** chlong has quit IRC07:19
*** oanson has joined #openstack-infra07:19
*** chlong_ has quit IRC07:19
*** ihrachys has joined #openstack-infra07:20
*** senk has joined #openstack-infra07:20
*** drifterza has joined #openstack-infra07:21
*** drifterza has quit IRC07:24
*** dizquierdo has joined #openstack-infra07:24
*** senk__ has joined #openstack-infra07:28
*** senk has quit IRC07:28
*** jpich has joined #openstack-infra07:29
*** esikachev has joined #openstack-infra07:32
*** gouthamr has quit IRC07:40
*** jlanoux_ has quit IRC07:40
*** berendt has joined #openstack-infra07:40
*** yanyanhu has quit IRC07:41
*** yanyanhu has joined #openstack-infra07:41
*** chem|off is now known as chem07:42
*** flepied has joined #openstack-infra07:42
yolandagood morning07:46
*** tonytan4ever has joined #openstack-infra07:46
*** kzaitsev_mb has quit IRC07:48
*** berendt has quit IRC07:49
jd__thanks AJaeger :)07:50
*** tonytan4ever has quit IRC07:52
*** vsaienko has joined #openstack-infra07:54
*** matthewbodkin has joined #openstack-infra07:54
openstackgerritJesse Pretorius (odyssey4me) proposed openstack-infra/project-config: Promote OSA tests CentOS7 job to voting  https://review.openstack.org/36779907:55
*** ilyashakhat_mobi has quit IRC07:55
*** gildub has quit IRC07:56
vsaienkoinfra-core: could you please review https://review.openstack.org/#/c/340295/07:56
*** zz_dimtruck is now known as dimtruck07:57
*** samuelBartel has joined #openstack-infra07:57
*** thorst has quit IRC07:57
*** zzzeek has quit IRC08:00
*** e0ne has quit IRC08:00
*** thorst has joined #openstack-infra08:01
*** zzzeek has joined #openstack-infra08:02
*** terryw has quit IRC08:03
*** derekh has joined #openstack-infra08:05
*** thorst has quit IRC08:06
*** otherwiseguy has joined #openstack-infra08:07
*** cgross has quit IRC08:09
*** lmiccini_ has joined #openstack-infra08:09
*** thorst has joined #openstack-infra08:09
*** mkoderer has quit IRC08:10
*** lmiccini has quit IRC08:10
*** mkoderer has joined #openstack-infra08:11
openstackgerritMerged openstack-infra/project-config: tripleo/upgrades: move jobs to check  https://review.openstack.org/36764108:11
*** cgross has joined #openstack-infra08:12
*** drifterza has joined #openstack-infra08:13
*** acoles_ is now known as acoles08:13
openstackgerritMerged openstack-infra/project-config: Add new worker-model job, and remove 2 legacy dvsm jobs  https://review.openstack.org/36069508:14
openstackgerritMerged openstack-infra/project-config: Congress - Add replicated PE job  https://review.openstack.org/36586208:16
openstackgerritMerged openstack-infra/project-config: New Project timmy - ansible-like tool  https://review.openstack.org/35983108:16
*** thorst has quit IRC08:17
openstackgerritMerged openstack-infra/project-config: Grafana Neutron: use string substitution to track jobs running on different nodes  https://review.openstack.org/36762008:18
openstackgerritMerged openstack-infra/project-config: Create a release notes job for glanceclient  https://review.openstack.org/36747308:19
*** dizquierdo has quit IRC08:20
openstackgerritmathieu bultel proposed openstack-infra/tripleo-ci: WIP - Implement overcloud upgrade job - Mitaka -> Newton  https://review.openstack.org/32375008:21
openstackgerritOpenStack Proposal Bot proposed openstack-infra/project-config: Normalize projects.yaml  https://review.openstack.org/36781708:23
*** lmiccini_ is now known as lmiccini08:23
*** thorst has joined #openstack-infra08:27
*** sflanigan has quit IRC08:28
openstackgerritMerged openstack-infra/project-config: setup post job for sahara-extra  https://review.openstack.org/36727108:28
*** sanek has joined #openstack-infra08:29
*** salv-orlando has joined #openstack-infra08:30
*** yolanda has quit IRC08:31
*** Mary has joined #openstack-infra08:31
openstackgerritMerged openstack-infra/project-config: Reduce bluebox-sjc1 by 1 node  https://review.openstack.org/36731908:31
*** Mary is now known as Guest6575108:32
*** salv-orl_ has quit IRC08:32
*** ilyashakhat_mobi has joined #openstack-infra08:34
*** amitgandhinz has quit IRC08:34
*** YorikSar has quit IRC08:35
*** _nadya_ has joined #openstack-infra08:35
*** Guest65751 has quit IRC08:35
*** YorikSar has joined #openstack-infra08:37
*** yolanda has joined #openstack-infra08:37
jamespagefungi, ah yes - (un)predictable network interface naming08:38
jamespagefungi, tricky08:38
jamespagethere may be packaging bits that updated to accomodate this, but not in the openstack package set08:38
*** dsutyagin has joined #openstack-infra08:38
jamespagein terms of deployment tooling, we generally ignore interface naming now, and do things by mac address, which is less automagic08:39
jamespageI'd like to revisit this next cycle; make things a little less brittle08:39
openstackgerritmathieu bultel proposed openstack-infra/tripleo-ci: WIP - Implement overcloud upgrade job - Mitaka -> Newton  https://review.openstack.org/32375008:39
*** jaosorior is now known as jaosorior_lunch08:40
dsutyaginHello infra team! We have https://review.openstack.org/#/c/359831/ merged, what do we need to do to get a new repository created in openstack github? Doc says "coordinate with the Infra team". Also, how do we set up and manage the "-core" group for this project? Thanks!08:40
*** Jeffrey4l_ has quit IRC08:42
*** asettle has joined #openstack-infra08:42
openstackgerritMerged openstack-infra/tripleo-ci: scenario002: deploy Swift  https://review.openstack.org/36740108:43
*** mhickey__ has joined #openstack-infra08:45
*** jlanoux has joined #openstack-infra08:45
*** dizquierdo has joined #openstack-infra08:46
openstackgerritMerged openstack-infra/project-config: Add charm-manila  https://review.openstack.org/36076208:46
*** dragonmaster has joined #openstack-infra08:47
*** bethwhite_ has joined #openstack-infra08:47
*** senk__ has quit IRC08:49
*** _degorenko|afk is now known as degorenko08:52
*** yar_ has quit IRC08:53
*** matthewbodkin has quit IRC08:53
AJaegervsaienko: please have ironic folks review this first08:55
*** tosky has joined #openstack-infra08:55
vsaienkoAJaeger, there was +1 from Ironic PTL, I just resolved merge conflict08:55
*** e0ne has joined #openstack-infra08:55
AJaegervsaienko: ah - will review later then.08:56
*** vsaienko has left #openstack-infra08:56
AJaegerdsutyagin: it takes some time until a new repo shows up. Check http://git.openstack.org/cgit/openstack/timmy08:56
*** vsaienko has joined #openstack-infra08:56
vsaienkoAJaeger: thank you!08:56
AJaegerdsutyagin: github is just a mirror, it should sync automatically there. But first puppet needs to run its jobs everywhere08:57
*** matthewbodkin has joined #openstack-infra08:57
AJaegerdsutyagin: regarding the core group: An infra-root needs to add you to it and then you can add others to it. Hope somebody reads backscroll and will answer, otherwise ask again later giving the review.08:58
*** sputnik13 has quit IRC08:58
AJaegerdsutyagin: http://git.openstack.org/cgit/openstack/timmy has content now - you can clone and start sending in changes -but not approve until the ACL is setup08:59
*** bauzas is now known as bauwser09:00
*** sdake has joined #openstack-infra09:02
*** amotoki has quit IRC09:04
*** thorst has quit IRC09:04
openstackgerritWaldemar Znoinski proposed openstack/diskimage-builder: don't configure 'lo' for dhcp  https://review.openstack.org/36752709:04
wznoinskis it me or is review.o.o crawling ?09:05
*** thorst has joined #openstack-infra09:05
*** nijaba has quit IRC09:05
openstackgerritmathieu bultel proposed openstack-infra/tripleo-ci: WIP - Implement overcloud upgrade job - Mitaka -> Newton  https://review.openstack.org/32375009:06
*** nijaba has joined #openstack-infra09:06
*** nijaba has joined #openstack-infra09:06
openstackgerritmathieu bultel proposed openstack-infra/tripleo-ci: WIP - Implement overcloud upgrade job - Mitaka -> Newton  https://review.openstack.org/32375009:07
*** Jeffrey4l has joined #openstack-infra09:08
openstackgerritAndreas Jaeger proposed openstack-infra/project-config: Complete retirement of keystoneauth-saml2  https://review.openstack.org/36784409:09
*** dimtruck is now known as zz_dimtruck09:10
*** thorst has quit IRC09:10
*** HeOS has joined #openstack-infra09:11
*** shardy has joined #openstack-infra09:11
*** sdake_ has joined #openstack-infra09:16
*** caowei has joined #openstack-infra09:18
*** sdake has quit IRC09:18
*** rossella_s has quit IRC09:18
*** rossella_s has joined #openstack-infra09:19
*** yanyanhu has quit IRC09:20
*** sarob has joined #openstack-infra09:20
*** ilyashakhat_mobi has quit IRC09:24
*** sarob has quit IRC09:25
*** thorst has joined #openstack-infra09:26
*** _nadya_ has quit IRC09:29
*** sambetts|afk is now known as sambetts09:30
*** thorst has quit IRC09:31
*** Na3iL has quit IRC09:32
*** r-mibu has quit IRC09:33
*** Hal1 has quit IRC09:33
*** r-mibu has joined #openstack-infra09:33
*** oanson has quit IRC09:35
*** Hal1 has joined #openstack-infra09:35
dtantsurAJaeger, hi! can we please chat about this xenial thing?09:35
dtantsurAJaeger, I suggest we start switch with 2 jobs with "ipmitool" in there names, they won't be voting very soon, but we'll switch to them in the future.09:36
dtantsurI also think they're Newton-only, but I need to double-check09:36
dtantsurhmm, no, they run on mitaka too.. not sure how to handle that.09:38
AJaegerdtantsur: Let's discuss later with clarkb on what he proposes as best way going forward with ironic and xenial move, ok?09:38
dtantsurfine, as soon as we can move forward reasonable fast :)09:38
dtantsurI don't feel well making such a drastic switch with completely new jobs fwiw09:38
AJaegerdtantsur: I want to move reasonable fast with Xenail ;)09:38
dtantsurAJaeger, the fastest way will be to clone one of the existing jobs. this is the only non-contentious approach IMO09:39
AJaegerdtantsur: I do - but I'm happy to get convinced by clarkb to do it differently...09:39
dtantsurAJaeger, does it mean you offer your help debugging it, if it does not work for an unclear reason?09:40
AJaegerdtantsur: Let's postpone this whole discussion until clarkb is up, please.09:40
dtantsurok, ok..09:40
AJaegerdtantsur: infra helps for sure with this switch and can give advice.09:41
*** asettle has quit IRC09:41
AJaegerbbl09:41
*** asettle has joined #openstack-infra09:41
*** kzaitsev_mb has joined #openstack-infra09:46
*** Na3iL has joined #openstack-infra09:51
*** sdake has joined #openstack-infra09:57
openstackgerritAdam Coldrick proposed openstack-infra/storyboard-webclient: Rework the task list layout  https://review.openstack.org/35730609:57
openstackgerritAdam Coldrick proposed openstack-infra/storyboard-webclient: Add a way to add tasks to worklists from the story view  https://review.openstack.org/36689909:57
openstackgerritAdam Coldrick proposed openstack-infra/storyboard-webclient: Complex priorities UI in stories  https://review.openstack.org/31266609:58
*** yamahata has quit IRC09:59
*** sdake_ has quit IRC10:00
*** zhurong has quit IRC10:03
openstackgerritVladimir Kuklin proposed openstack-infra/project-config: Add a Fuel extension to support Serializers Conversion  https://review.openstack.org/36734510:07
openstackgerritAdam Coldrick proposed openstack-infra/storyboard-webclient: Add a way to add tasks to worklists from the story view  https://review.openstack.org/36689910:10
openstackgerritAdam Coldrick proposed openstack-infra/storyboard-webclient: Complex priorities UI in stories  https://review.openstack.org/31266610:10
*** thorst has joined #openstack-infra10:11
zynzelanybody from infra online? :)10:15
zynzelcan anybody create 'glare-support' branch in openstack-infra/puppet-apps_site?10:16
zynzelthis was discussed in http://lists.openstack.org/pipermail/openstack-infra/2016-September/004707.html10:16
openstackgerritMaciej Relewicz proposed openstack-infra/project-config: Added new repos for Murano chef cookbook  https://review.openstack.org/36672910:19
*** shardy has quit IRC10:21
openstackgerritAdam Coldrick proposed openstack-infra/storyboard-webclient: Add recent events templates for worklist notifications  https://review.openstack.org/35644110:22
sanekfungi: could you please add adobdin@mirantis.com to timmy-core group (https://review.openstack.org/#/c/359831/)10:24
*** sshnaidm|afk is now known as sshnaidm|pto10:28
openstackgerritVitaly Gridnev proposed openstack-infra/project-config: fix bad substitution issue  https://review.openstack.org/36793110:31
*** sdake_ has joined #openstack-infra10:31
vgridnevAJaeger, could you please review ^^10:31
*** ramishra has quit IRC10:32
openstackgerritAndreas Jaeger proposed openstack-infra/project-config: Drbd enables service itself  https://review.openstack.org/36793210:32
*** sdake has quit IRC10:33
*** ramishra has joined #openstack-infra10:33
*** Guest90983 is now known as rook10:36
AJaegerzynzel: best wait for fungi10:38
*** rhallisey has joined #openstack-infra10:39
AJaegervgridnev: Argh. Yes, templates need two {{. Let's wait for XML output and then I'll fast approve...10:39
*** jaosorior_lunch is now known as jaosorior10:41
yolandahi sanek , i can do it10:42
yolandadone10:43
sanekyolanda: thanks a lot10:44
AJaegersanek: I made you the first patch for the repo: https://review.openstack.org/367939 ;)10:46
sanekAJaeger: thanks :)10:48
AJaegersanek: you'rew welcome. Happy hacking!10:49
AJaegersanek: and mirroring at github is now setup as well - thanks to yolanda!10:49
* yolanda is a github fixer :)10:49
sanekhehe10:49
*** gildub has joined #openstack-infra10:50
AJaegersanek: you first need to fix the jobs before my change can pass - they all fail...10:50
AJaegersanek: feel free to add my change as part of those job fix changes and tell me to abandon mine10:50
AJaegeryolanda: could you +2A https://review.openstack.org/#/c/367931/ , please?10:52
yolandayes, done10:52
openstackgerritVladimir Kuklin proposed openstack-infra/project-config: Add a Fuel extension to support Serializers Conversion  https://review.openstack.org/36734510:59
openstackgerritMerged openstack-infra/project-config: fix bad substitution issue  https://review.openstack.org/36793111:00
*** rtheis has joined #openstack-infra11:03
*** yaume has quit IRC11:03
*** jkilpatr has quit IRC11:04
*** matbu is now known as matbu|lunch11:05
pabelangerfungi: re: provider booting. Yes, not sure if the right solution but would make nodepool easier on clouds11:06
*** jordanP has joined #openstack-infra11:07
*** akshai has joined #openstack-infra11:11
*** senk has joined #openstack-infra11:11
AJaegersanek: timmy should pass tests now ;)11:13
AJaegermorning, pabelanger !11:13
sanekok, thanks)11:13
*** stewie925 has quit IRC11:16
*** caowei has quit IRC11:17
*** sdague has joined #openstack-infra11:18
*** dingyichen has quit IRC11:19
openstackgerrityolanda.robla proposed openstack-infra/puppet-infracloud: Add execution perms to post-install in bridge  https://review.openstack.org/36795011:20
*** stewie925 has joined #openstack-infra11:21
*** tqtran has joined #openstack-infra11:23
*** baoli has joined #openstack-infra11:24
openstackgerritShu Muto proposed openstack-infra/project-config: Add nodejs4-jobs for magnum-ui  https://review.openstack.org/36795111:24
*** tkelsey has quit IRC11:26
*** baoli_ has joined #openstack-infra11:27
*** matthewbodkin has quit IRC11:28
*** tqtran has quit IRC11:28
*** baoli has quit IRC11:30
openstackgerritPaul Belanger proposed openstack-infra/nodepool: Disable connecting to the SSH agent for ssh_connect  https://review.openstack.org/36795211:31
*** tkelsey has joined #openstack-infra11:31
pabelanger^ Is to help narrow down the SSHException: No existing session errors we are still getting in nodepool.o.o11:31
pabelangerI believe the other code paths in paramiko are actually hiding what the real exception is11:32
pabelangernext step will be to enable SSH debugs in nodepool11:32
*** baoli_ has quit IRC11:34
*** ldnunes has joined #openstack-infra11:36
*** baoli has joined #openstack-infra11:38
*** jkilpatr has joined #openstack-infra11:38
*** ilyashakhat has quit IRC11:38
openstackgerritBrad P. Crochet proposed openstack-infra/tripleo-ci: Add Zaqar to scenario002  https://review.openstack.org/36502611:39
*** berendt has joined #openstack-infra11:41
*** Mary has joined #openstack-infra11:42
*** Mary is now known as Guest402711:42
*** _nadya_ has joined #openstack-infra11:43
*** baoli has quit IRC11:44
*** abregman has joined #openstack-infra11:47
*** tonytan4ever has joined #openstack-infra11:48
*** Guest4027 has quit IRC11:49
SergKHi, question regarding infra, should we add "jeepyb" user to Administrators group in gerrit, or better just to provide createProject and createGroup capability to it?11:51
*** tonytan4ever has quit IRC11:53
openstackgerritJim Rollenhagen proposed openstack-infra/elastic-recheck: Add bug #1621791  https://review.openstack.org/36796911:54
openstackbug 1621791 in Ironic Inspector "Inspector grenade fails in test_network_basic_ops" [Critical,In progress] https://launchpad.net/bugs/1621791 - Assigned to Dmitry Tantsur (divius)11:54
*** lucasagomes is now known as lucas-hungry11:55
pabelangerSergK: I believe both is needed still: http://docs.openstack.org/infra/system-config/gerrit.html#users11:55
*** jed56 has quit IRC11:55
SergKpabelanger, thank you11:58
*** psilvad has joined #openstack-infra11:58
*** baoli has joined #openstack-infra11:59
*** gongysh has quit IRC12:00
*** trown|outtypewww is now known as trown12:01
openstackgerritmathieu bultel proposed openstack-infra/tripleo-ci: Implement overcloud upgrade job - Mitaka -> Newton  https://review.openstack.org/32375012:04
*** matthewbodkin has joined #openstack-infra12:05
*** kaisers__ has joined #openstack-infra12:06
openstackgerritMerged openstack-infra/elastic-recheck: Add bug #1621791  https://review.openstack.org/36796912:07
openstackbug 1621791 in Ironic Inspector "Inspector grenade fails in test_network_basic_ops" [Critical,In progress] https://launchpad.net/bugs/1621791 - Assigned to Dmitry Tantsur (divius)12:07
zigopabelanger: Hi there, how's everything? Do you have time to review this? https://review.openstack.org/36734312:07
*** kaisers_ has quit IRC12:08
*** MaryM has joined #openstack-infra12:08
openstackgerritEmilien Macchi proposed openstack-infra/tripleo-ci: scenarios: set Debug to True  https://review.openstack.org/36689612:08
*** kaisers__ has quit IRC12:10
openstackgerritEmilien Macchi proposed openstack-infra/tripleo-ci: scenario001: deploy Ceph  https://review.openstack.org/36681012:10
pabelangerzigo: I haven't been following along the discussions, for this to be honest. So not the best person to be reviewing right now12:11
zigopabelanger: The idea is that we now have merge commit rights to merge new upstream releases inside the debian/newton packaging branch. If we want a commit merge to be effectively a single reviewable commit on Gerrit, then Gerrit needs to have the upstream branches.12:12
zigopabelanger: Meaning we need the track-upstream option so that Gerrit non-packaging branches are up-to-date.12:13
zigoThen "git merge -X theirs <TAG-NAME>" will produce a merge commit as expected.12:14
*** asettle has quit IRC12:14
zigoIn fact, that's more or less what I wrote in the commit message.12:14
*** matbu|lunch is now known as matbu12:15
openstackgerritAdam Coldrick proposed openstack-infra/storyboard-webclient: Rework the task list layout  https://review.openstack.org/35730612:21
openstackgerritAdam Coldrick proposed openstack-infra/storyboard-webclient: Add a way to add tasks to worklists from the story view  https://review.openstack.org/36689912:21
*** asettle has joined #openstack-infra12:23
AJaegerEmilienM: a recheck will not help at all with depends-on12:23
openstackgerritAdam Coldrick proposed openstack-infra/storyboard-webclient: Complex priorities UI in stories  https://review.openstack.org/31266612:24
EmilienMAJaeger: yeah, I need another +A12:24
EmilienMAJaeger: thanks :-)12:24
AJaegerEmilienM: done.12:24
EmilienMAJaeger: merci12:25
*** dkehn has quit IRC12:25
*** dkehn_ has quit IRC12:25
*** dkehn__ has quit IRC12:25
pabelangerzigo: Yup, understood. I'm just not sure what the long term plan is. I'm sure fungi will be online shortly to review12:25
*** esberglu has joined #openstack-infra12:25
openstackgerritmathieu bultel proposed openstack-infra/tripleo-ci: Implement overcloud upgrade job - Mitaka -> Newton  https://review.openstack.org/32375012:25
*** mriedem has joined #openstack-infra12:26
pabelangerTime to deal with glean issues an upstart12:26
*** pradk has joined #openstack-infra12:28
*** drybjed has left #openstack-infra12:28
*** gordc has joined #openstack-infra12:30
openstackgerritMerged openstack-infra/project-config: tripleo/scenario002: add swift  https://review.openstack.org/36740412:31
zigopabelanger: May I help with that?12:31
zigopabelanger: I mean, glean and upstream, can I help?12:33
*** rfolco has joined #openstack-infra12:33
pabelangerzigo: thanks, just making sure our upstart order is current for glean. It needs to run before openssh and networking otherwise, early SSH connections get dropped12:35
*** dkehn has joined #openstack-infra12:37
*** dkehn__ has joined #openstack-infra12:38
*** dkehn_ has joined #openstack-infra12:38
*** wznoinsk has quit IRC12:40
yolandahi, is there some issue with puppet-lint right now? my job failed a pair of times with http://logs.openstack.org/50/367950/1/check/gate-puppet-infracloud-puppet-lint/4ddde21/console.html#_2016-09-09_12_32_56_82283912:41
*** gildub has quit IRC12:43
pabelangeryolanda: might want to ping EmilienM to confirm12:43
*** salv-orlando has quit IRC12:46
*** dizquierdo has quit IRC12:46
*** salv-orlando has joined #openstack-infra12:47
*** wznoinsk has joined #openstack-infra12:47
*** sdake_ is now known as sdake12:47
*** salv-orlando has quit IRC12:48
*** salv-orlando has joined #openstack-infra12:48
EmilienMmhh weird12:49
EmilienMPuppet CI doesn't fail AFIK12:49
EmilienMyolanda: let me 5 min12:49
*** tonytan4ever has joined #openstack-infra12:49
yolandaEmilienM, thanks12:50
*** lucas-hungry is now known as lucasagomes12:51
openstackgerritMathieu Mitchell proposed openstack-infra/system-config: Introduce TinyCoreLinux mirror  https://review.openstack.org/32598112:52
*** jaosorior has quit IRC12:52
*** salv-orlando has quit IRC12:52
*** jaosorior has joined #openstack-infra12:52
*** salv-orlando has joined #openstack-infra12:53
*** tonytan4ever has quit IRC12:54
*** rlandy has joined #openstack-infra12:54
*** Goneri has joined #openstack-infra12:54
*** psilvad has quit IRC12:54
EmilienMyolanda: it sounds like related to puppet-openstack_infra_spec_helper12:54
*** psilvad has joined #openstack-infra12:57
yolandait started to fail today as far as i know, but i need to find more time to debug12:57
*** jcoufal has joined #openstack-infra12:59
*** drifterza has quit IRC12:59
EmilienMyolanda: so I double checked and we don't have it in PuppetOpenStack12:59
EmilienMso yes, it might be something in the gemspec12:59
*** pgadiya has quit IRC13:01
*** thorst has quit IRC13:02
openstackgerritMerged openstack-infra/system-config: Update infracloud documentation to remove old geo information  https://review.openstack.org/36501813:02
*** andreas_s has quit IRC13:02
*** jamesdenton has joined #openstack-infra13:04
*** woodster_ has joined #openstack-infra13:05
*** sdake has quit IRC13:05
*** psachin has quit IRC13:07
*** psilvad has quit IRC13:08
*** mdrabe has joined #openstack-infra13:09
*** claudiub has quit IRC13:10
*** psilvad has joined #openstack-infra13:11
*** gongysh has joined #openstack-infra13:11
yolandaso it looks like a conflict , puppet-lint-unquoted_string depending on  puppet-lint (~> 1.0), and puppetlabs_spec_helper on  puppet-lint (~> 2.0)13:13
*** matt-borland has joined #openstack-infra13:15
*** andreas_s has joined #openstack-infra13:19
*** fguillot has joined #openstack-infra13:20
*** mriedem has quit IRC13:20
*** mriedem has joined #openstack-infra13:22
jtomasekkrotscheck: Hi, we're hitting issues with phantomjs-prebuilt on jenkins https://review.openstack.org/#/c/366615/, the relevant github issue https://github.com/Medium/phantomjs/issues/519 indicates broken npm cache, any idea how to fix this, please?13:22
*** andreas_s has quit IRC13:23
jtomasekapetrich: ^13:25
*** xyang1 has joined #openstack-infra13:25
*** kgiusti has joined #openstack-infra13:26
*** mriedem has quit IRC13:26
apetrichjtomasek, give me a sec13:26
*** dsutyagin has quit IRC13:27
*** sdake has joined #openstack-infra13:30
*** amitgandhinz has joined #openstack-infra13:31
*** pradk has quit IRC13:32
*** pradk has joined #openstack-infra13:32
*** fguillot has quit IRC13:33
*** tonytan4ever has joined #openstack-infra13:35
apetrichjtomasek, so from what I know every run of the ci there is on a clean machine so you should not have a npm cache. last time we had a problem like that was two steps that were installing the same package or something13:38
*** berendt has quit IRC13:39
*** berendt has joined #openstack-infra13:39
*** berendt has quit IRC13:39
openstackgerritIhar Hrachyshka proposed openstack-infra/project-config: Remove ACLs to push signed tags from neutron-release  https://review.openstack.org/36801213:39
jtomasekapetrich: yeah, I think that should not be the case this time. Also I am not able to reproduce the issue locally. Updating to latest version of phantomjs-prebuilt did not help either13:40
apetrichjtomasek, the github issue looks reasonable13:41
*** ddieterly has joined #openstack-infra13:42
*** fguillot has joined #openstack-infra13:43
*** rhallisey has quit IRC13:43
*** rhallisey has joined #openstack-infra13:44
*** ddieterly has quit IRC13:44
*** ddieterly has joined #openstack-infra13:45
*** jed56 has joined #openstack-infra13:45
*** cardeois has joined #openstack-infra13:46
*** senk has quit IRC13:48
*** sdague has quit IRC13:50
*** dansmith is now known as superdan13:50
*** ociuhandu has joined #openstack-infra13:51
openstackgerritVasyl Saienko proposed openstack-infra/project-config: Add ironic-dsvm-multitest experimental job.  https://review.openstack.org/34029513:52
*** e0ne has quit IRC13:53
*** e0ne has joined #openstack-infra13:53
*** alaski is now known as lascii13:54
*** ddieterly is now known as ddieterly[away]13:55
*** kaisers_ has joined #openstack-infra13:56
cloudnullmornings13:56
*** kaisers_ has quit IRC13:57
*** mriedem has joined #openstack-infra13:59
*** rbrndt has joined #openstack-infra14:02
*** bin_ has joined #openstack-infra14:02
*** thorst has joined #openstack-infra14:02
*** mriedem1 has joined #openstack-infra14:03
clarkbAJaeger: dtantsur not sure what the question is but I have been trying my best to test locally then switch. And this has worled so far for everything but the interface name thing we ran into with neutron14:04
*** ddieterly[away] is now known as ddieterly14:04
*** mriedem has quit IRC14:04
clarkbbecause really most things have just worked14:04
*** inc0 has joined #openstack-infra14:04
dtantsurclarkb, have you tried ironic on xenial?14:05
dtantsurcause if nobody tried that, I'm more worried to move a completely new job straight to it14:06
*** mriedem1 is now known as mriedem14:06
*** thorst has quit IRC14:07
clarkbdtantsur: no because I asked ironic a while back to get their job config under control.before trying yo even attempt making things run on xenial14:07
dtantsurwell, I guess it's time? at least according to AJaeger :)14:07
clarkbwell xenial needs to happen sooner than later14:07
dtantsurdepending on your definition of "under control" of course14:08
*** akshai_ has joined #openstack-infra14:08
clarkbdtantsur: ironic had >100 integration jobs when I last counted14:08
dtantsurclarkb, fully agree. I still don't get why not start moving *existing* jobs that are known to work already.14:08
clarkbnot all of these are used but they are configured. So was asking for ironic to address that and get the number to more accurately reflect ehat is wanted/used14:09
dtantsurclarkb, well, I don't think the situation has changed much re number of jobs.. we do have them better organized now14:09
clarkband I dont want to make matters worse by yhrowing xenial into the mix without first addressing the other issue14:10
*** akshai has quit IRC14:11
anteayaclarkb: thanks for getting zuul updating again last night and rechecking that neutron patch, it passed jenkins14:11
dtantsurclarkb, well, we're improving, but that does take time, especially when number of features and configurations grows in parallel...14:11
*** Jeffrey4l has quit IRC14:11
dtantsurclarkb, however AJaeger wants us to start switching now14:12
clarkbyes so I recommend we first fix thr list of jobs14:12
clarkbstep one is remove all unused jobs14:12
*** thorst has joined #openstack-infra14:12
clarkbthen go from there14:12
*** Jeffrey4l has joined #openstack-infra14:12
*** kaisers_ has joined #openstack-infra14:13
clarkbotherwise we will spend effort testing those on xenial that is wasted14:13
fungizynzel: for consistency, the branch should actually be called "feature/glare-support" and yes i can create it now... do you just want it branched from the tip of master (389e331)?14:13
*** notnownikki has joined #openstack-infra14:15
*** edmondsw has joined #openstack-infra14:15
*** spzala has joined #openstack-infra14:15
*** zul has joined #openstack-infra14:16
*** Jeffrey4l has quit IRC14:17
*** Jeffrey4l has joined #openstack-infra14:19
AJaegerdtantsur: before even adding more jobs - and there're at least two reviews open for that - let's come up with a plan to move forward with xenial. I don't want to make it more complex with adding them...14:20
dtantsurAJaeger, note that my patch is for replacing jobs eventually...14:20
*** zhurong has joined #openstack-infra14:20
dtantsurAJaeger, also such plan should be built on ML IMO and with PTL contributing (hey jroll!)14:21
*** vgridnev has quit IRC14:22
AJaegerdtantsur: my understanding was that clarkb reached out already to ironic team as mentioned above.14:22
dtantsurlet's make sure we understand the goals: to have minimum amount of jobs or to have the best coverage?14:22
dtantsurbecause what I hear now is essentially to remove jobs, even if it makes harder to cover features14:22
clarkbdtantsur: no immediate goal is just remove unused tests from jjb14:22
clarkbsince I am fairly certain you are not using all of them14:22
AJaegerdtantsur: our goal is to have Newton tested on Xenial.14:23
openstackgerritJesse Pretorius (odyssey4me) proposed openstack-infra/project-config: Skip scenario tests for OSA liberty/mitaka jobs  https://review.openstack.org/36803314:23
AJaegerAnd the integrated test runs already on Xenial14:23
dtantsurclarkb, well, we're having two transitions in place: from SSH to ipmitool jobs, and from inspector shell-based jobs to tempest jobs14:23
clarkbthen we know what needs testing on xenial and we can do that work14:23
*** zz_dimtruck is now known as dimtruck14:23
dtantsurclarkb, such transition leaves some duplication, later it will leave jobs only running on liberty/mitaka, etc14:23
*** tqtran has joined #openstack-infra14:25
* jroll reads things14:25
* jroll in a meeting so will be slow as heck14:25
clarkbdtantsur: can you at least take a look and see if we can trim things? we were fairly certain there was a lot of trimming that could be done a few weeks ago just in removing unused stuff14:25
*** askb has quit IRC14:25
clarkbjobs that are in jjb but not zuul14:25
* dtantsur looks for devananda|dinner's etherpad with our jobs14:26
jrollclarkb: dtantsur: we had JayF and devananda|dinner looking into that but not sure where it went :/14:26
dtantsurclarkb, what would help is a tox target to check for that14:26
dtantsurmeh, of course FF undigs anything, but not this etherpad...14:27
AJaegerdtantsur: I have a script to generate a list of all unused jobs, let me start that and grep for ironic and add to paste - expect results after my meeting (in 30+ mins)14:27
*** kzaitsev_mb has quit IRC14:27
zynzelfungi: yeah, if possible please create it from master14:28
dtantsurAJaeger, thanks! would be extremely helpful14:28
zynzelmoreover, can you create this branch also on openstack/app-catalog, openstack-infra/apps_site and openstack-infra/system-config?14:28
zynzelguys from app-catalog dosent have permission to create new branches in app-catalog repo :)14:28
zynzeland system-config for future work, not to ping you next week14:29
*** tqtran has quit IRC14:29
fungizynzel: we can't branch system-config, and thinking through this i don' think a branch in puppet-apps_site makes sense either. you just need the changes to it to be backwards-compatible until we move off he old site14:30
*** andreas_s has joined #openstack-infra14:30
*** asselin_ has quit IRC14:30
fungibut a feature branch in app-catalog should be fine14:30
zynzelok, so i will do some kind of 'if' for backward compatibility in apps_site14:31
*** burgerk has joined #openstack-infra14:31
fungiwe can make the puppet module configurable as to which branch of apps-site is used for different servers (conrolled through class parameters)14:31
jrolldtantsur: AJaeger: seems a bit late to be making a plan to get on xenial in newton, no? :/14:31
zynzelso, please create only new branch in openstack/app-catalog14:31
AJaegerjroll: this is ongoing for some time already, see for example http://lists.openstack.org/pipermail/openstack-dev/2016-July/099818.html14:32
jrollAJaeger: I understand, I'm saying "hi ironic, please make a plan to do this" is a bit late.... I wasn't aware we needed to get involved in this14:32
clarkbjroll: I brought this up with ironic way back when14:33
clarkbit was the entire motivation for that conversation about job cleanup14:33
*** burgerk_ has joined #openstack-infra14:33
mat128AJaeger, yolanda: the depends-on change has merged for this change: https://review.openstack.org/#/c/366290/14:33
clarkbbasically we eant to port jobs but need a good list first"14:33
jrollclarkb: oh, I understood that as "help clean this up" (and also thought folks were working on that)14:33
jrollfair enough14:33
fungizynzel: i can do it right after the release team meeting wraps up, no problem14:34
jrollI will bug people and eagerly await Andreas' list since he has a script14:34
zynzelfungi: thanks14:34
AJaegermat128: great, +A14:34
mat128AJaeger: thank you :)14:35
openstackgerritMerged openstack-infra/storyboard-webclient: Rework the task list layout  https://review.openstack.org/35730614:35
pabelangerclarkb: working on an upstart issue now with glean and ubuntu-trusty. Question I have, to we want to force a dependency on ssh server from init scripts or not?14:36
*** psilvad has quit IRC14:36
*** burgerk has quit IRC14:37
clarkbpabelanger: can we? this was aleays the hardest part of using upstart. if its a sysv compat init script they just run at a certain time and otherwise there are some weird dep tree issues. Generally I think we should have ssh come up.after we have working network though14:37
*** rajinir has joined #openstack-infra14:38
pabelangerclarkb: with upstart, we can. And I have it working.14:38
pabelangerclarkb: the issues, default ssh init scripts don't actually depend on networking, just runlevel [12345]14:38
clarkbhuh is that causing problems or can we just accept it?14:39
pabelangerso, we can force the dependency with our glean service scripts or just kick openssh reload from glean.sh script14:39
AJaegerdtantsur, jroll, clarkb: FYI, we currently have a total of 12049 jobs, 1612 of these are unused - grep for ironic returns 4414:39
*** jheroux has joined #openstack-infra14:39
dtantsurwow, that's a lot14:39
pabelangerclarkb: I think there is a race condition that is cause some issues with ubuntu-trusty to launch in rax14:39
openstackgerritamrith proposed openstack-infra/project-config: add newton gate jobs for trove  https://review.openstack.org/36806714:40
AJaegerdtantsur: not all of those 44 are part of ironic team, it matches ansible ironic stuff as well.14:40
AJaegerjroll, dtantsur, clarkb : full list http://paste.openstack.org/show/570215/14:40
jrollAJaeger: thank you14:41
dtantsurthanks AJaeger, I'll look into it and propose a patch removing stuff14:41
* AJaeger just grepped for ironic in the name of the job, so filter out yours14:41
*** andymaier has joined #openstack-infra14:42
openstackgerritMerged openstack-infra/project-config: Publish install guide for Ironic  https://review.openstack.org/36629014:42
*** andymaier has quit IRC14:42
fungipabelanger: clarkb: i think opensshd has listened on [::]:22/tcp for ages, so just automatically receives connections on any new interfaces that are brought up later14:43
fungiunless you explicitly bind it to particular addresses/interfaces14:44
pabelangerfungi: need to check what the default in trusty is, we don't set ListenAddress right now14:45
*** asettle has quit IRC14:47
openstackgerritBartosz Kupidura proposed openstack-infra/puppet-apps_site: [wip] Glare support for app-catalog  https://review.openstack.org/35902914:48
pabelangerSSHException: Error reading SSH protocol banner[Errno 104] Connection reset by peer14:48
pabelangerthat's the error we get from ubuntu-trusty14:48
*** zhurong has quit IRC14:48
pabelangerwhich leads me to thing ssh server is restarted14:48
pabelangerglean, will dpkg-reconfigure openssh-server if ssh keys have already been generated14:49
fungipabelanger: glean _does_ restart sshd though, right? (something to do with regenerating host keys?)14:49
fungiyeah, that14:49
pabelangerRight14:49
clarkbit should generate them before ssh ever starts or at least thats thr goal14:50
*** kaisers_ has quit IRC14:50
*** senk has joined #openstack-infra14:50
AJaegerclarkb: for new jobs that target master/newton, I currently ask everybody to run them on xenial14:50
pabelanger    test -f /etc/ssh/ssh_host_rsa_key || dpkg-reconfigure openssh-server || true14:50
pabelangerthats the command14:50
AJaegerclarkb: so, that should give us less jobs to migrate in the end...14:50
*** zul has quit IRC14:51
pabelangerI suspect glean and openssh-server are racing, nodepool establishes a connection, then glean dpkg-reconfigure openssh-server, which drops the connect14:52
pabelangerwe had this issue with systemd and fixed it14:52
clarkbAJaeger: ya thats probably a good idea.14:52
*** jcoufal has quit IRC14:53
pabelangerhowever, with systemd we could depend on network-pre.target. That doesn't exist for upstart14:53
clarkbAJaeger: so if this is just new jobs we can ptobably move ahead lets just make sure they are used and we dont forget to clean out the old ones14:54
zigopabelanger: Just for fun, I tried building all of the python-xstatic* packages at once (needed anyway for building or running horizon). That's 29 packages build 3 times... (so, 87 package build). It looks like it's doing to be done in 45 minutes! :)14:54
zigoI tried hard, but couldn't get to use more than 20 nodes at once... :P14:55
* zigo wont do that again...14:55
krotscheckjtomasek: Do you still need help with phantom?14:55
jtomasekkrotscheck: yes, please14:55
jtomasekkrotscheck: strange thing is that it happens only with that patch which adds 2 new dependencies14:56
zigopabelanger: My goal was also to check if concurrent POST job would work, and it looks like it is very much ok.14:56
pabelangerclarkb: fungi: this is what I have been testing: https://review.openstack.org/#/c/368072/14:56
jtomasekkrotscheck: It is hard to debug as I am not able to reproduce it locally14:56
*** jcoufal has joined #openstack-infra14:56
pabelangerzigo: good to hear14:56
*** Hal1 has quit IRC14:57
pabelangerzigo: do you know is anybody is actually testing those builds yet?14:57
jtomasekkrotscheck: my node version is 4.2.6 and npm is 3.5.214:57
krotscheckjtomasek: So, just an FYI, I'm no longer paid to work on OpenStack, so this counts against what volunteer time I permit myself.14:57
krotscheckjtomasek: I don't remember if they've changed this, but in the past the issue with phantomjs is that it's nto actually hosted on npm.14:57
jtomasekkrotscheck: ack14:58
pabelangerclarkb: fungi: another option is for us to install a new init.d script for ssh on ubuntu-trusty14:58
pabelangerclarkb: fungi: which adds the dependency on glean14:58
krotscheckjtomasek: In reality, the npm package just loads the most recent version from bitbucket, and the relevant account is rate limited.14:58
*** annegentle has joined #openstack-infra14:58
krotscheckjtomasek: From my converstaions with the owner, their response was: "We have a mirror on the other side of the great chinese firewall, please use that"14:58
clarkbpabelanger: how is sshd starting the first time around without ssh host keys? maybe we can manipulate that to drlay it?14:59
krotscheckjtomasek: Which is not really a thing we can do.14:59
AJaegerclarkb: I tried already removing some old jobs but it's difficult. Biggest offenders are ansible and charm - with 220 unused jobs each. But those need some template reworking...14:59
krotscheckjtomasek: So what was happening at that time was that at the beginning of every day, the quota would reset, a bunch of builds would pass, and then they'd all start to fail.14:59
*** matrohon has quit IRC14:59
*** roxanagh_ has joined #openstack-infra14:59
*** mdrabe has quit IRC15:00
clarkbAJaeger: fun fun thpugh at least thr ansible team has done their own xenialing so we dont have to think about them much15:00
AJaeger;)15:00
mordredkrotscheck: that sounds like a thing we might want to figure out how to pre-cache somehow15:00
zigopabelanger: Nobody, because I haven't gone up to having services built. And I'm currently stuck, because of blocker project-config patches. IE: 3 patches for adding missing Gerrit repo: https://review.openstack.org/366352 https://review.openstack.org/366734 and https://review.openstack.org/366960 and the track-upstream patch: https://review.openstack.org/36734315:00
krotscheckmordred: Well, lemme finish15:00
AJaegerclarkb: I'm putting the full list up on a server, waiting for next sync to share the link15:00
jtomasekkrotscheck: I see, so you're saying that it might start to succeed on subsequent runs in next days?15:00
zigofungi: Could you review https://review.openstack.org/367343 BTW ?15:00
krotscheckmordred, jtomasek: It turns out that no actual human uses phantom to browse ui's.15:00
dtantsurAJaeger, oh wonderful, it seems like now we're missing quite a few real jobs which are supposed to run Oo15:00
krotscheckmordred, jtomasek: It's just a developer tool, and it lags singificantly behind the node runtime.15:01
krotscheckmordred, jtomasek: The best option we came up with is "Don't use phantom". No user uses it, and we provide both firefox and chrome running in Xvfb's for karma to grab.15:01
*** armax has joined #openstack-infra15:02
*** ddieterly is now known as ddieterly[away]15:02
jtomasekkrotscheck: I see, yeah, we've been considering switching to jsdom solution for unit testing15:02
*** asettle has joined #openstack-infra15:02
mordredkrotscheck: ah. cool15:02
AJaegerdtantsur: fun ;(15:03
krotscheckjtomasek: Also, and I hate to bring this up-> ReactJS's licensing has a patent rider with a very aggressive retaliation clause, which may make it non-OSI-compliant.15:03
openstackgerritMike Fedosin proposed openstack-infra/project-config: Add py35 and pypi jobs to Glare and its client  https://review.openstack.org/36628115:03
jtomasekkrotscheck: yep, I am aware of this15:03
dtantsurAJaeger, e.g. ironic-inspector-client config is just a mess... it misses python-jobs, and defines all jobs (except for forgotten docs) manually.. I dunno how we ended up like that15:03
*** sflanigan has joined #openstack-infra15:03
krotscheckNobody's respodned to http://lists.openstack.org/pipermail/legal-discuss/2016-September/000418.html yet15:03
pabelangerclarkb: openssh-server generates them if missing I think.  Glean will only create the root keys15:04
clarkbpabelanger: glean creates them because sshd doesnt iirc15:04
pabelangerclarkb: Hmm, let me check that15:05
*** mdrabe has joined #openstack-infra15:05
clarkbat least on debuntu. rhel/centos/fedora generate them in the init for sshd if they dont exist15:05
AJaegerdtantsur: if there's anything I can help with, feel free to ask15:06
dtantsurAJaeger, can I get my hands on your script, so that I can check the results?15:06
pabelangerclarkb: Oh, is that because we delete the original keys from the DIB?15:07
*** jaosorior has quit IRC15:07
AJaegerdtantsur: let me walk you through it: http://paste.openstack.org/show/570224/15:07
*** esikachev has quit IRC15:07
*** ddieterly[away] is now known as ddieterly15:07
dtantsurthnx15:07
*** pcaruana has quit IRC15:08
AJaegerIt cleans up the old results, runs tox to get list of all jobs defined, checks zuul output to look for jobs defined - and then creates list of used/unused jobs15:08
*** ihrachys has quit IRC15:08
dtantsurAJaeger, interesting, I don't see some of the jobs mentioned there defined e.g. gate-tempest-dsvm-ironic-inspector (without -nv)15:08
AJaegerdtantsur: So, that's the high level view. Just run it locally and double check my regex foo ;)15:08
*** hashar is now known as hasharAway15:09
dtantsursure, maybe it's my fault, lemme check again15:09
*** matthewbodkin has quit IRC15:09
*** kzaitsev_mb has joined #openstack-infra15:09
clarkbpabelanger: yes15:09
AJaegerdtantsur: git grep '{pipeline}-tempest-dsvm-ironic-inspector{job-suffix}' in project-config15:10
*** abregman has quit IRC15:10
dtantsurAJaeger, what's the group "devstack-jobs" for?15:10
dtantsurin devstack-gate.yaml15:10
AJaegerdtantsur: a nice way to instantiate those - see how it's used in jenkins/jobs/projects.yaml.15:11
mordredkrotscheck: thanks for reminding me about react15:11
AJaegerdtantsur: we can easily remove it from devstack-jobs...15:11
AJaegerdtantsur: that all comes from the big integrated gate AFAIK15:11
dtantsurAJaeger, yeah, it might be the cause of unused jobs15:11
AJaegerdtantsur: So, if you find an unused job, check the config - ./.test/jenkins-job-builder/.test/new/out/gate-tempest-dsvm-ironic-inspector in this case, read it to get the template used, and then grep for the template in jenkins/jobs to find where it's used15:12
pabelangermrhillsman: clarkb: fungi: raddaoui: So, I am seeing instability from osic-cloud8 APIs, which is causing some issues with nodepool.  http://grafana.openstack.org/dashboard/db/nodepool-osic shows a pictures of the issues.  I'm think we should turn off osic-cloud8 for the moment until we can do some more manually testing.15:12
*** asettle has quit IRC15:13
krotscheckmordred: YOu're... welcome? I'm guessing you can throw lawyers at the problem?15:13
*** amitgandhinz has quit IRC15:13
AJaegerdtantsur: so, let me cleanup that list for you...15:13
*** amitgandhinz has joined #openstack-infra15:13
*** gongysh has quit IRC15:13
zigomordred: Could you please approve https://review.openstack.org/366352 so I could build all python-*client packages?15:13
openstackgerrityolanda.robla proposed openstack-infra/puppet-infracloud: Only spin up bridge on RHEL case  https://review.openstack.org/36807515:14
*** Benj_ has joined #openstack-infra15:14
*** thcipriani|afk is now known as thcipriani15:14
mordredkrotscheck: well, I know at least one ...15:14
krotscheckmordred: Is that lawyer compact enough to throw?15:15
*** dizquierdo has joined #openstack-infra15:15
mordredkrotscheck: oh yeah15:15
pabelangerclarkb: going to put trusty failures on hold for now, since it is the lowest failure rate atm15:15
*** gouthamr has joined #openstack-infra15:15
dtantsurAJaeger, will https://github.com/openstack-infra/project-config/blob/master/jenkins/jobs/projects.yaml#L5206-L5237 generate all possible combinations?15:15
dtantsurif so, we might need moar excludes :)15:16
*** gouthamr_ has joined #openstack-infra15:16
*** vinaypotluri has joined #openstack-infra15:17
*** _nadya_ has quit IRC15:17
pabelangercorvus: clarkb: would appreciate your feedback on https://review.openstack.org/#/c/367381 and https://review.openstack.org/#/c/367952 however. Changes to paramiko ssh_connect settings for nodepool and private keys15:17
zigomordred: Thanks!15:17
zigoAJaeger: Can you add your +2A to the one of Monty? https://review.openstack.org/36635215:18
fungimordred: krotscheck: it does seem at least superficially weird that if what they wanted was a bsd-like license with explicit patent protections, they would have been more likely to just use the apache license... makes it seem like there's something else going on there15:19
mrhillsmanpabelanger if cloud8 is more of an issue than a help right now please go ahead and disable15:20
*** gouthamr has quit IRC15:20
mrhillsmanraddaoui can correct me if i am wrong but we have identified the issue at the least15:20
openstackgerritAndreas Jaeger proposed openstack-infra/project-config: Remove unused jobs from devstack-gate  https://review.openstack.org/36807815:21
AJaegerclarkb, dtantsur  ^15:21
AJaegerdtantsur: yes, that generates all possible combinations15:22
dtantsurAJaeger, thanks! I'll base my further work on top of it15:22
*** jcoufal has quit IRC15:22
openstackgerritDmitry Tantsur proposed openstack-infra/project-config: Use standard python jobs for python-ironic-inspector-client  https://review.openstack.org/36808015:23
dtantsurAJaeger, 1st part ^^ (haven't run tests yet)15:23
AJaegerzigo, done15:24
dtantsurAJaeger, what is preferred, to generate all combinations, then add exceptions, or explicitly list all expected variants?15:24
AJaegerdtantsur: I don't see a docs directory in python-ironic-inspector-client, so hope you didn't add docs jobs?15:24
dtantsurAJaeger, ouch, it seems like I derped this one15:25
dtantsuryeah, there are no docs there, probably that's why it was so messy15:25
AJaegerdtantsur: Often generating all combinations is less error prone. clarkb, what do you think in this case?15:25
AJaegerclarkb: see also dtantsur's gist from 10 mins ago15:26
pabelangermrhillsman: right now, we're only launching a few nodes on osic-cloud8, up to 10. I think we could keep it running for a bit, if it helps trace down issues on your side. However, if not, ya, we'd likely disable it for now as not to impact test jobs15:27
*** amotoki has joined #openstack-infra15:27
pabelangermrhillsman: it looks like once a node is launched, test will be run, but we are seeing some issues working with the openstack api15:27
dtantsurAJaeger, I'll probably continue with a fresh head on Monday, after your patch lands and the list shrinks a bit15:28
AJaegerproject-config cores, here're three cleanup changes, reviews are welcome: https://review.openstack.org/367844 and https://review.openstack.org/367844 https://review.openstack.org/36536115:29
AJaegerdtantsur: ok15:29
AJaegerdtantsur: does the script work for you?15:29
*** senk has quit IRC15:29
dtantsurhaven't tried yet, lemme do15:29
*** gongysh has joined #openstack-infra15:30
fungimordred: i'm refreshing my memory of how our upstream tracking implementation works... it basically updates copies of what's in the upstream remote each time manage-projects is run?15:30
*** Benj_ has quit IRC15:30
anteayaAJaeger: you have 844 linked twice15:30
fungimordred: if so, i wonder if that choice was made at a time when we fired manage-projects on every puppet pulse rather than only when there are changes to projects.yaml15:31
openstackgerritMerged openstack-infra/project-config: Add missing deb repo 3/5  https://review.openstack.org/36635215:31
AJaegeranteaya: ;( Thanks for noticing. Try https://review.openstack.org/367932 instead15:31
fungimordred: and whether we should move that functionality to a separate cron instead of having it rely on frequency of projects.yaml changes15:32
*** mhickey__ has quit IRC15:32
zigoAJaeger: Awesome, thanks.15:32
clarkbAJaeger: dtantsur I am looking at that github link and its just python jobs for instack things?15:32
clarkbAJaeger: dtantsur I feel like I am missing context on the generating all combinations question15:33
dtantsurclarkb, gah, something merged in between, and the link is no longer right15:34
clarkbdtantsur: oh ha15:34
dtantsurclarkb, take it while it's still valid: https://github.com/openstack-infra/project-config/blob/master/jenkins/jobs/projects.yaml#L5248-L5268 :)15:34
*** ZZelle has quit IRC15:34
anteayaAJaeger: keystoneauth-saml2 still has dot files: http://git.openstack.org/cgit/openstack/keystoneauth-saml2/tree/15:34
*** mdrabe has quit IRC15:34
anteayastevemar: we need the dot files removed from keystoneauth-saml2 ^^15:35
AJaegeranteaya: we removed all jobs already from it ;(15:35
*** mdrabe has joined #openstack-infra15:35
anteayaAJaeger: well the dot files remain15:35
stevemaraww man, i failed in deleting :facepalm:15:35
stevemarhttps://github.com/openstack/keystoneauth-saml215:35
*** jistr is now known as jistr|biab15:35
AJaegeranteaya: yes, so that would need new jobs added first, then removed again.15:35
fungistevemar: `git ls-files` is your friend15:36
stevemarAJaeger: anteaya remove all the files, including the README?15:36
anteayastevemar: leave the readme15:36
anteayastevemar: all other files are removed, including the dot files15:36
AJaegerstevemar: leave the README in - and only the README. But if you add another commit, you need to update the README15:36
*** ZZelle has joined #openstack-infra15:36
stevemarAJaeger: why do i need to update it?15:37
clarkbAJaeger: dtantsur I am a fan of having more matrices but applyting them as necessary to more specific templates. looks like we already do that below in the jobs list too15:37
anteayaAJaeger: why change the readme?15:37
AJaegerstevemar: I noticed that we didn't retire it properly, ACLs still exist, see https://review.openstack.org/36793215:37
*** sflanigan has quit IRC15:37
fungicould do two commits... a revert of the incomplete deletion followed by a rework that deletes the right files15:37
clarkbAJaeger: dtantsur basically instead of having a giant global matrix have the matrix for job foo and matrix for job bar and or group foo and group bar then you can have a bit more control over how things multiply15:37
AJaegeranteaya: it says checkout "HEAD^1" - this would be wrong if you add another change15:37
stevemarah15:37
*** jcoufal has joined #openstack-infra15:37
anteayaAJaeger: oh okay15:37
stevemarAJaeger: you sent me the wrong link?15:37
openstackgerritThomas Goirand proposed openstack-infra/project-config: upstream: and options: track-upstream for deb-*  https://review.openstack.org/36734315:38
AJaegerstevemar: https://review.openstack.org/367844 - I'm screwing up links to day ;(15:38
zigofungi: Merging the addition of "missing deb 3/5" created a merge conflict, please review again https://review.openstack.org/36734315:38
dtantsurclarkb, I wonder how it would look in our case though..15:39
stevemarAJaeger: ahhh15:39
clarkbAJaeger: 368078 didn't pass the layout job15:39
clarkbdtantsur: I think you would maybe have a group for ipmi, a group for ipa, a group for ssh (or whatever just examples not necessarily sure these are the specific values)15:39
stevemarAJaeger: so.. what do y'all need me to do? remove the dotfiles? or do i wait until the jobs are back?15:39
AJaegerclarkb, will investigate...15:40
anteayastevemar: well fungi gave a suggestion above15:40
clarkbdtantsur: then your driver remains fixed while you control other things like whther or not you need voting or non voting, the ramdisk, partitioning, etc for each of those groups15:40
anteayastevemar: would be simplest I think15:40
krotscheckfungi, mordred: IANAL and have no clue about such things.15:40
dtantsurclarkb, yeah, makes sense15:40
AJaegerstevemar: add jobs back, follow fungi's suggestion, remove the jobs and merge my change ;)15:40
clarkbdtantsur: it might make more sense to group my ramdisk or by partition but I think thats the general idea I would start with. Find the flag that ends up grouping things logically given what you want to test then group on that15:41
zigomordred: Can you also review https://review.openstack.org/367343 so that I can do upgrades to new upstream releases?15:41
openstackgerritMatt Riedemann proposed openstack-infra/project-config: Create gate-grenade-dsvm-neutron-nova-next-ubuntu-xenial-nv  https://review.openstack.org/36808715:41
zigofungi: How does the track-upstream option work? Is this a cron job? How often does it run?15:41
AJaegerclarkb, layout failure is "ImportError: cannot import name monkey". What's up?15:42
*** esikachev has joined #openstack-infra15:42
AJaeger"ould not import setuptools which is required to install from a source distribution."15:42
zigofungi: mordred: Outch, my bad, fixing the layout...15:42
AJaegerhttp://logs.openstack.org/78/368078/1/check/gate-project-config-layout/fcd0b64/console.html#_2016-09-09_15_32_48_81066515:42
mtreinishAJaeger: hmm, I just hit that locally trying to build the governance repo docs15:42
AJaegermtreinish: any new broken release out?15:43
clarkbAJaeger: huh that is new to me15:43
mtreinishyep setuptools released today15:43
mtreinishhttps://pypi.python.org/pypi/setuptools15:43
*** vhosakot has joined #openstack-infra15:43
mtreinishdstufft: ^^^15:43
clarkbthat is a circular import15:43
clarkbgoes monkey -> msvc -> monkey15:43
anteayamtreinish: can you +1 https://review.openstack.org/#/c/368087 which adds an experimental job to grenade?15:43
openstackgerritSteve Martinelli proposed openstack-infra/project-config: Revert "retire keystoneauth-saml2"  https://review.openstack.org/36808915:43
zigofungi: Isn't this a bug in the check script? http://logs.openstack.org/43/367343/5/check/gate-project-config-layout/43eaa5a/console.html#_2016-09-09_15_41_54_66274715:44
anteayastevemar: the patch is in merge conflict, also can you say in the commit message that this is so you can remove the forgotten dot files?15:45
mtreinishanteaya: done15:45
AJaegerzigo, read backscrool for 10 lines ;)15:45
anteayamtreinish: thank you15:45
AJaegerTeam, seems layout gate is broken now ;(15:45
stevemaranteaya: yeah, i'm rebasing locally, i'm in over my head, give me a few15:45
dstufftTalking to jason15:45
mtreinishdstufft: thanks15:45
dtantsurseems like many gates are, I just saw this import problem in ironic-inspector grenade15:45
anteayadtantsur: jobs15:46
raissajust got that import problem in sahara-tests15:46
AJaegerinfra-root, what do you think of a #status notice?15:46
mriedemis this a known failure in project-config? http://logs.openstack.org/87/368087/1/check/gate-project-config-layout/60d11e8/console.html#_2016-09-09_15_43_58_94754815:46
*** esikachev has quit IRC15:46
anteayamriedem: the monkey thing?15:47
clarkbAJaeger: probably a good idea. "New setuptools release appears to have a circular import which is breaking many jobs" ?15:47
*** IlyaG has joined #openstack-infra15:47
*** Jeffrey4l has quit IRC15:47
anteayamriedem: yeah we just found it all over the place, new setuptools release15:47
AJaegerclarkb: Let's mention monkey in it.15:47
anteayaAJaeger: agreed15:47
clarkb"New setuptools release includes a circular import of "monkey" which is breaking many jobs."15:47
AJaegerSuggestion: "New setuptools release appears to have a circular import which is breaking many jobs - check for ImportError: cannot import name monkey."15:48
anteayaeither mentions monkey so works for me15:48
clarkbthat is nice and specific15:48
anteayaeither/both15:48
clarkbok now to remember which of the commands I want15:48
AJaegerclarkb: #status notice "text"15:48
clarkbdo we want to update the topics in channels? I think that is "alert"15:48
clarkband notice won't update the topics15:48
anteayaI think update topics15:48
anteayathis is hitting everyone and we can unalert once it clears15:49
*** openstackgerrit has quit IRC15:49
AJaegerLots of red in zuul - alert15:49
*** tesseract- has quit IRC15:49
anteayaI too vote alert15:49
*** openstackgerrit has joined #openstack-infra15:49
fungiis there an upstream issue open for it?15:49
anteayathe whole gate pipeline is affected15:49
fungican link https://github.com/pypa/setuptools/issues/780 looks like15:50
anteayafungi: dunno. so far dstufft is aware and talking to somone named Jason15:50
openstackgerritamrith proposed openstack-infra/project-config: add newton gate jobs for trove  https://review.openstack.org/36806715:50
fungii expect there will be a brown-bag release forthwith15:50
clarkb#status alert New setuptools release appears to have a circular import which is breaking many jobs - check for ImportError: cannot import name monkey.15:50
openstackstatusclarkb: sending alert15:50
dstufftJason is @jaraco, the setuptools maintainer15:50
mtreinishfungi: https://github.com/pypa/setuptools/issues/78015:50
anteayadstufft: ah thank you15:50
AJaegerthanks, clarkb15:50
mtreinishfungi: you win :)15:50
fungimtreinish: the setuptools issue tracker is in my auto-complete ;)15:51
*** andreas_s has quit IRC15:51
mtreinishhah15:51
mriedemi'll get an e-r up for https://bugs.launchpad.net/openstack-gate/+bug/162191615:51
openstackLaunchpad bug 1621916 in OpenStack-Gate "setuptools 27.1.0 has a circular import error" [Undecided,New]15:51
fungi(i'm not sure if that says something about me, or about setuptools, but whatever)15:51
anteayamriedem: thanks15:51
dstufftfungi: why not both!15:51
dstuffthttps://github.com/pypa/setuptools/pull/781 should fix it I think15:51
zigoSo, to sum-up: the monkey broke setuptools... :P15:52
*** sambetts is now known as sambetts|afk15:52
fungi<mr_burns>exxxxxxellent</mr_burns>15:52
*** zul has joined #openstack-infra15:52
anteayazigo: and dstufft has a fix up15:52
fungichaos monkey at work!15:52
-openstackstatus- NOTICE: New setuptools release appears to have a circular import which is breaking many jobs - check for ImportError: cannot import name monkey.15:52
*** ChanServ changes topic to "New setuptools release appears to have a circular import which is breaking many jobs - check for ImportError: cannot import name monkey."15:52
*** slashme has joined #openstack-infra15:52
openstackgerritMatt Riedemann proposed openstack-infra/elastic-recheck: Add query for setuptools 27.1.0 bug 1621916  https://review.openstack.org/36809415:53
mriedemmtreinish: ^15:53
openstackbug 1621916 in OpenStack-Gate "setuptools 27.1.0 has a circular import error" [Undecided,New] https://launchpad.net/bugs/162191615:53
zigoanteaya: dstufft killed the money... :)15:53
anteayaor moved it15:53
anteayasometimes monkeys just need a better place to be15:54
* AJaeger will be back later15:54
mtreinishmriedem: +A15:54
anteayaAJaeger: thank you15:54
mtreinishmriedem: hmm, I wonder if we should look into adding other tracker support into e-r15:54
openstackgerritSteve Martinelli proposed openstack-infra/project-config: Revert "retire keystoneauth-saml2"  https://review.openstack.org/36808915:55
stevemarAJaeger: ummm ^ ?15:55
fungimtreinish: you can just open a reference lp bug against openstack-gate for now. that's how we've normally handled stuff like this15:55
stevemarAJaeger: i didn't want to add back *all* the jobs, but i may have made a booboo15:55
*** psilvad has joined #openstack-infra15:55
*** e0ne has quit IRC15:55
mriedemmtreinish: asselin added jira support15:55
mriedemor support to make it configurable15:56
mriedemfor other bug trackers15:56
openstackstatusclarkb: finished sending alert15:56
*** vhosakot has quit IRC15:56
mtreinishfungi: it is, I realize that. But I was jsut thinking that it wouldn't be too difficult to for tracking based on github directly15:56
*** jcoufal has quit IRC15:56
anteayastevemar: AJaeger is out of a bit whilst we address the monkey issue15:56
stevemaranteaya: coolio15:56
anteayastevemar: thanks :)15:56
fungimtreinish: agreed, if it's something you want to add, it certainly makes sense in these situations15:56
*** jcoufal has joined #openstack-infra15:57
mtreinishmriedem: oh right15:57
stevemaranteaya: i'll get all my reviews queued up, so it's ready for you all when you've caught the monkey15:57
*** dimtruck is now known as zz_dimtruck15:57
mtreinishmriedem: so I guess it's just a matter of leveraging that15:57
anteayastevemar: thank you15:57
*** dtantsur is now known as dtantsur|afk15:59
*** Jeffrey4l has joined #openstack-infra15:59
*** dragonmaster has quit IRC15:59
jlvillalI hope this monkey thing when fixed will have a funny #success entry :)15:59
*** mrtenio has joined #openstack-infra16:00
*** amotoki_ has joined #openstack-infra16:02
*** zz_dimtruck is now known as dimtruck16:02
*** jordanP has quit IRC16:03
*** gongysh has quit IRC16:03
*** amotoki_ has quit IRC16:03
openstackgerritPaul Belanger proposed openstack-infra/glean: Append to interface definition for multi-address  https://review.openstack.org/36686216:03
openstackgerritPaul Belanger proposed openstack-infra/glean: Add ipv6 support to gentoo  https://review.openstack.org/36748716:03
openstackgerritPaul Belanger proposed openstack-infra/glean: Index networks using id, not links  https://review.openstack.org/36693716:03
*** ddieterly is now known as ddieterly[away]16:04
pabelangermordred: clarkb: ^ our glean stack to fix rax-iad16:04
*** tphummel has joined #openstack-infra16:04
openstackgerritSteve Martinelli proposed openstack-infra/project-config: bring back keystoneauth-saml2 jobs temporarily  https://review.openstack.org/36808916:05
*** amotoki has quit IRC16:05
openstackgerritMerged openstack-infra/elastic-recheck: Add query for setuptools 27.1.0 bug 1621916  https://review.openstack.org/36809416:05
openstackbug 1621916 in OpenStack-Gate "setuptools 27.1.0 has a circular import error" [Undecided,New] https://launchpad.net/bugs/162191616:05
*** _nadya_ has joined #openstack-infra16:05
openstackgerritTom Fifield proposed openstack-infra/puppet-mediawiki: Skip CAPTCHA for autopatrol users  https://review.openstack.org/36811416:06
*** yamahata has joined #openstack-infra16:06
dstufft27.1.2 should fix I think16:07
*** ddieterly[away] is now known as ddieterly16:08
anteayadstufft: thank you16:09
anteayaclarkb: ^^16:09
openstackgerritMatthew Treinish proposed openstack-infra/elastic-recheck: Make Elastic Recheck Watch more reusable  https://review.openstack.org/25151516:10
*** thorst has quit IRC16:11
clarkbonce we see it on our mirror we can status ok16:11
anteayaclarkb: awesome, thank you16:11
anteayaany thoughts on how long it should take for the mirror to see it?16:12
*** akshai_ has quit IRC16:12
*** thorst has joined #openstack-infra16:12
openstackgerritSteve Martinelli proposed openstack-infra/project-config: bring back keystoneauth-saml2 jobs temporarily  https://review.openstack.org/36808916:12
clarkbwe build the mirror every 5 minutes so ~5minutes or so after the release happens16:12
anteayagreat16:12
clarkbhttps://review.openstack.org/#/c/367699/ has the votes it needs to address the linuxbridge xenial issues. So once setuptools is working again we should merge that then the project-config change16:14
anteayagreat16:14
openstackgerritSteve Martinelli proposed openstack-infra/project-config: Revert "bring back keystoneauth-saml2 jobs temporarily"  https://review.openstack.org/36813516:15
*** thorst_ has joined #openstack-infra16:15
openstackgerritSteve Martinelli proposed openstack-infra/project-config: Complete retirement of keystoneauth-saml2  https://review.openstack.org/36784416:16
*** thorst_ has quit IRC16:16
*** thorst has quit IRC16:16
stevemarAJaeger: i compiled a hilarious chain of patches, you can see them here: https://review.openstack.org/#/q/topic:retire-keystoneauth-saml2-again -- all the reverts --16:17
stevemarAJaeger: please review when you've fixed your infra monkies16:17
*** vhosakot has joined #openstack-infra16:18
*** thorst has joined #openstack-infra16:19
*** vhosakot has quit IRC16:19
openstackgerritTom Fifield proposed openstack-infra/puppet-mediawiki: Skip CAPTCHA for autopatrol users  https://review.openstack.org/36811416:19
openstackgerritJeremy Stanley proposed openstack-infra/puppet-mediawiki: Skip captcha enforcement for autopatrolled users  https://review.openstack.org/36814116:20
anteayafungi: I think fifield wins16:20
anteaya114 vs 14116:21
*** mkoderer has quit IRC16:21
*** lmiccini has quit IRC16:21
*** florianf has quit IRC16:21
*** spzala has quit IRC16:21
fungioh! his e-mail didn't mention having submitted a change for that16:22
anteayathis third one did16:22
fungianyway, i had to apply it manually in production and test it16:22
anteayaah and how does it test?16:22
*** spzala has joined #openstack-infra16:22
*** jcoufal has quit IRC16:22
fungiworks great16:22
*** cgross has quit IRC16:22
anteayaawesome16:22
*** senk has joined #openstack-infra16:22
anteayathanks for testing that16:22
*** xarses has quit IRC16:23
*** jlanoux has quit IRC16:23
*** jcoufal has joined #openstack-infra16:24
openstackgerritJames Slagle proposed openstack-infra/tripleo-ci: Use current-tripleo for undercloud upgrades  https://review.openstack.org/36814216:24
*** thorst_ has joined #openstack-infra16:24
*** thorst has quit IRC16:24
*** akshai has joined #openstack-infra16:25
*** jistr|biab is now known as jistr16:25
*** sdake has quit IRC16:28
*** thorst_ has quit IRC16:29
inc0pabelanger, sooo...we resolved issue with osic cloud816:30
*** thorst has joined #openstack-infra16:31
*** vhosakot has joined #openstack-infra16:31
*** thorst has quit IRC16:32
pabelangerinc0: oh, nice. let me check nodepool quickly16:33
*** dimtruck is now known as zz_dimtruck16:33
*** zz_dimtruck is now known as dimtruck16:34
pabelangerinc0: okay, I see 3 stuck deleting nodes from before: http://paste.openstack.org/show/570270/16:34
clarkbpabelanger: in other nodepool news we didn't finish the ovh bhs1 uploads last night :/ we will want to keep an eye on that and maybe tralk to them about how we can make that work better16:34
inc0yeah mrhillsman solved this one too16:35
pabelangerclarkb: Ya, that might be a good idea.16:35
anteayaclarkb: I like the word you coined, tralk16:35
*** raildo has joined #openstack-infra16:35
anteayait is a good word16:35
mrhillsmanpabelanger a few more need to fix up16:36
mrhillsmangive me moments16:36
*** tkelsey has quit IRC16:36
clarkbthere is a setuptools 27.1.2 in our mirror now16:37
anteayayay16:37
* clarkb looks at jobs to see if they are happy again16:37
pabelangermrhillsman: inc0: ack16:37
*** samuelBartel has quit IRC16:37
inc0pabelanger, hold on, it seems it wasnt fixed after all  - btw issue was pretty ... interesting16:37
inc0we simply got hacked16:37
pabelangereep16:38
mordredinc0: you got hacked and the hackers solved problems for you? that seems friendly16:38
inc0no, I bet we're digging someones bitcoins16:39
inc0or host a cs server16:39
inc0I hope it's nothing porn related, but whatever, it seems we'll need to repave env :(16:40
dmsimardIs that setuptools thing fixed? Looks like the bug mentioned a new release being cut with the fix16:40
anteayadmsimard: clarkb is just checking our jobs now16:40
clarkbI am watiching the tests for https://review.openstack.org/36746816:41
clarkbsince it just recently started, looks happy so far16:41
anteayaawesome16:41
dmsimardack, ty16:41
*** kzaitsev_mb has quit IRC16:41
openstackgerritsebastian marcet proposed openstack-infra/openstackid-resources: Smart Conference  https://review.openstack.org/36814816:43
fungiinc0: any idea how they gained a foothold?16:43
fungiit would be a great lesson learned for infra-cloud too if you have a "don't do <this>" anecdote16:44
*** lucasagomes is now known as lucas-afk16:44
*** mkoderer has joined #openstack-infra16:44
*** cgross has joined #openstack-infra16:44
*** notnownikki has quit IRC16:45
inc0I have good idea16:46
inc0don't keep password login on public-facing server16:47
inc0also...don't use 6 letter all lowercase password16:47
*** lmiccini has joined #openstack-infra16:47
inc0;)16:47
inc0we were sloppy, that's all16:47
inc0we carefully read all the security good practices and decided to ignore all of them16:48
clarkbI have rechecked the devstack fix for linuxbridge jobs16:48
*** pilgrimstack has quit IRC16:48
clarkbonce that is in we can approve the change to remove eth0 from being hardcoded in the configs then we can revert the change that made those tests not run on xenial in check/gate16:48
anteayaclarkb: awesome16:49
clarkbarmax: ^ fyi16:49
clarkband then I can review glean things16:49
openstackgerritMerged openstack-infra/openstackid-resources: Smart Conference  https://review.openstack.org/36814816:51
*** xarses has joined #openstack-infra16:51
zigoIs Xenial using BIOS names for ifaces, even in KVM VMs?16:51
clarkbzigo: it is16:52
fungiinc0: fair enough! so restated, i guess sshd was configured to allow password auth and you had a too-weak system account password on one or more servers and 22/tcp exposed to the internet?16:52
*** tosky has quit IRC16:52
*** jpich has quit IRC16:52
inc0yup16:53
*** gouthamr_ is now known as gouthamr16:53
fungiwe mainly mitigate it through disallowing password auth for sshd on all our systems. key auth only16:53
inc0yeah, that's what we're going to do16:53
fungieven my personal servers are configured to only allow ssh key auth16:53
inc0also I'd just listen on mgmt network16:53
clarkb#status ok setuptools 27.1.2 addresses the circular import16:54
openstackstatusclarkb: sending ok16:54
anteayaclarkb: thank you16:54
anteayadstufft: thank you16:54
inc0my personal fav is to not use 0.0.0.0 ever16:54
*** derekh has quit IRC16:54
inc0but yeah...all our knowledge16:54
anteayadstufft: and thanks to Jason16:54
inc0we were just sloppy16:54
anteayadmsimard: ^^16:54
dmsimard\o/16:54
*** ilyashakhat_mobi has joined #openstack-infra16:54
*** Swami has joined #openstack-infra16:55
dmsimardSo can we put the channel topics back on now? :p16:56
anteayasmcginnis: it is happening16:56
clarkbdmsimard: it should do it automatically16:56
anteayadmsimard: that was for you16:56
dmsimardah, okay16:56
smcginnis:)16:56
anteayasmcginnis: sorry about that, meant as reply to dmsimard16:56
clarkbdmsimard: it throttles itself to avoid getting kicked for flooding16:56
dmsimardclarkb: makes sense16:56
anteayasmcginnis: and happy friday to you16:56
*** ChanServ changes topic to "Discussion of OpenStack Developer and Community Infrastructure | docs http://docs.openstack.org/infra/ | bugs https://storyboard.openstack.org/ | source https://git.openstack.org/cgit/openstack-infra/ | channel logs http://eavesdrop.openstack.org/irclogs/%23openstack-infra/"16:56
-openstackstatus- NOTICE: setuptools 27.1.2 addresses the circular import16:56
*** trown is now known as trown|lunch16:56
fungiinc0: yep, in our case we need to allow ssh from everywhere, but key auth alone is enough to have kept us from worrying about brute-force login attacks (we just have to worry about someone compromising a trusted key, or pre-authentication vulnerabilities in the sshd)16:57
inc0yeah ofc, but you know what I mean, in Kolla for example wherever we can remove 0.0.0.0, we remove it16:57
openstackgerritAndrey Nikitin proposed openstack-infra/jeepyb: Update mechanism of creating groups in database and managing access rights with jeepyb  https://review.openstack.org/28484316:58
fungiinc0: also i hope you'd have used :: instead of 0.0.0.0 anyway (dual-stack friendly syntax for all addresses!)16:59
openstackstatusclarkb: finished sending ok16:59
*** dizquierdo has quit IRC17:00
inc0good point fungi, no idea.;)17:00
clarkbbtw I am going to weekend early today in order to do doctor appointments this afternoon. (seems like they always come in clumps)17:00
clarkbat least the pediatrician will see the girls back to back instead of requiring two seaprate appointments17:01
*** degorenko is now known as _degorenko|afk17:01
fungiclarkb: have a good afternoon17:02
fungii'm hoping i get freed up enough to get back to wiki testing for the rest of the day17:02
*** rodrigods has quit IRC17:03
anteayaclarkb: I hope you have good doctor's appointments, yay for back to back appointments17:03
*** rodrigods has joined #openstack-infra17:03
anteayaclarkb: and enjoy the weekend17:03
*** tongli has joined #openstack-infra17:03
clarkb(I'm not leaving yet just making sure you don't all expect me to be around in ~4-5 hours)17:03
*** kzaitsev_mb has joined #openstack-infra17:04
*** tqtran has joined #openstack-infra17:05
*** vhosakot has quit IRC17:05
fungii actually need to pop out for a few minutes. back in ~1 hour17:05
*** yamahata has quit IRC17:06
fungioh, did the puppet lint job issues get worked out yet? looks like we were still seeing failures as of 30 minutes ago. any fix for that i can help fast-track?17:07
anteayaclarkb: ah17:07
anteayafungi: happy errands17:07
*** chem has quit IRC17:10
*** matt-borland has quit IRC17:10
*** Na3iL has quit IRC17:11
*** JerryOpenix has joined #openstack-infra17:11
*** JerryOpenix has quit IRC17:11
*** ddieterly is now known as ddieterly[away]17:11
*** sarob has joined #openstack-infra17:12
*** sarob has quit IRC17:13
*** sarob has joined #openstack-infra17:13
*** senk has quit IRC17:14
*** zul has quit IRC17:15
*** senk has joined #openstack-infra17:15
*** zul has joined #openstack-infra17:16
*** tonytan4ever has quit IRC17:16
*** kzaitsev_mb has quit IRC17:17
*** Hal1 has joined #openstack-infra17:17
*** asselin_ has joined #openstack-infra17:17
*** rossella_s has quit IRC17:18
*** bethwhite_ has quit IRC17:19
*** rossella_s has joined #openstack-infra17:19
clarkbfungi: was that the setuptools thing?17:19
*** e0ne has joined #openstack-infra17:20
clarkbhrm shouldn't be for puppet lint17:20
*** vhosakot has joined #openstack-infra17:24
clarkbpabelanger: on https://review.openstack.org/#/c/366937/4/glean/tests/test_glean.py shoudl we add a test where multiple networks share the same link?17:26
raddaouipabelanger: clarkb , we are repaving env, should be up again in few hours17:26
clarkbraddaoui: ok17:26
pabelangerclarkb: let me check if we have a test for that17:27
*** bnemec is now known as beekneemech17:28
*** asselin__ has joined #openstack-infra17:30
*** jcoufal has quit IRC17:30
*** flepied has quit IRC17:30
*** asselin_ has quit IRC17:31
openstackgerritSumit Naiksatam proposed openstack-infra/project-config: Add non-voting job for GBP  https://review.openstack.org/36759117:32
*** e0ne has quit IRC17:32
*** devananda|dinner is now known as devananda17:32
*** thorst_ has joined #openstack-infra17:33
*** vhosakot has quit IRC17:34
*** tonytan4ever has joined #openstack-infra17:37
clarkbpabelanger: looks like its added in the next change17:37
*** thorst_ has quit IRC17:38
pabelangerclarkb: Ya, that's right. I moved it up a patch set because we didn't have test for it17:38
*** tonytan_brb has joined #openstack-infra17:38
pabelangerbut made sure we did test in the follow up17:38
*** e0ne has joined #openstack-infra17:38
clarkbpabelanger: and have we done any boot testing of real VMs yet?17:40
pabelangerclarkb: no, that is the last step to do.  I was going to ask you to create a minimal image again :)  Since I had bad luck last time around17:40
clarkbpabelanger: ah ok, I can give you what I ran if you want to try too17:41
* clarkb boots dib builder VM17:41
pabelangerclarkb: please17:41
pabelangerI'm doing something wrong locally17:42
*** tonytan4ever has quit IRC17:42
clarkbpabelanger: `DIB_INSTALLTYPE_simple_init=repo DIB_RELEASE=xenial DIB_DEV_USER_PWDLESS_SUDO=yes DIB_DEV_USER_AUTHORIZED_KEYS=/home/ubuntu/.ssh/authorized_keys DIB_DEV_USER_PASSWORD=foobar DIB_REPOLOCATION_glean=/home/ubuntu/glean DIB_REPOREF_glean=clarkb time tools/build-image.sh` is the command then I edit build-image.sh so that the elements list is minimal17:42
*** gyee has joined #openstack-infra17:43
anteayacan I get another project-config core reviewer to review this change to bring back keystoneauth-saml2 jobs so that stevemar can remove the dot files on the repo, please? https://review.openstack.org/#/c/36808917:43
*** acoles is now known as acoles_17:43
*** _nadya_ has quit IRC17:43
clarkbpabelanger: http://paste.openstack.org/show/570294/17:44
clarkbpabelanger: should I build xenial again?17:44
anteayathey were left behind on the first retirement attempt17:44
pabelangerclarkb: sure, I'll get trusty17:44
clarkbpabelanger: oh ya you have to add haveged to infra package needs too17:44
*** yamahata has joined #openstack-infra17:44
pabelangerright17:44
pabelangerneed to fix our element for that17:44
clarkbI should probably fix that properly17:45
clarkbya17:45
clarkbpabelanger: if I fetch the gentoo chagne will that include the other two? they are all stacked ya?17:45
pabelangerclarkb: yes17:46
*** _nadya_ has joined #openstack-infra17:46
clarkbok I have xenial running locally with that glean stack17:47
* clarkb is going to trust that prometheanfire's +1 means gentoo works17:48
prometheanfireyes17:48
prometheanfire:D17:48
*** salv-orlando has quit IRC17:49
*** Na3iL has joined #openstack-infra17:49
*** salv-orlando has joined #openstack-infra17:49
clarkbpabelanger: you'll want to edit the authorized keys file and the dib repolocation and reporefs for glean17:51
clarkbso they match whatever your local setup is using17:51
pabelangerclarkb: ack17:52
*** senk has quit IRC17:53
clarkband yes I create branches with my name in them :P (habit formed when using shared resources for testing)17:53
*** ilyashakhat_mobi has quit IRC17:55
*** trown|lunch is now known as trown17:55
clarkbpabelanger: once my build is done I will boot it locally to see that that at least works then if so I can put it on nodepool18:00
*** burgerk_ has quit IRC18:01
*** mfisch has joined #openstack-infra18:01
mfisch/usr/local/lib/ruby/gems/2.1.0/gems/bundler-1.10.6/lib/bundler/rubygems_integration.rb:292:in `block in replace_gem': rake is not part of the bundle. Add it to Gemfile. (Gem::LoadError)18:02
mfisch       from /usr/local/bin/rake:22:in `<main>'18:02
mfischsorry about that ^18:02
*** burgerk has joined #openstack-infra18:02
pabelangerclarkb: sure, build still running for trusty here18:03
openstackgerritSumit Naiksatam proposed openstack-infra/project-config: Add non-voting job for GBP  https://review.openstack.org/36759118:03
AJaegerclarkb: https://review.openstack.org/#/c/368078/ passes now18:04
AJaegerstevemar: all looks fine, thanks18:04
*** vhosakot has joined #openstack-infra18:04
*** vhosakot has quit IRC18:05
clarkbpabelanger: it works for me local one nic ipv4 setup18:05
*** cardeois_ has joined #openstack-infra18:05
*** akshai has quit IRC18:05
pabelangerclarkb: great! our unit testing is valid18:06
pabelangerjust converting image now18:06
stevemaranteaya: thanks for the reviews18:06
pabelangerclarkb: rax-iad should be the region we want first18:06
*** Hal1 has quit IRC18:06
anteayastevemar: thanks for taking the trouble to clean this up18:06
pabelangermaybe ord too18:06
stevemaranteaya: np18:07
clarkbpabelanger: ok you didn't happen to write down the magical shade stuff did you? I should do that if not (after I figure it out again)18:07
*** cardeois has quit IRC18:09
anteayastevemar: so let me know once that repo has zero dot files and a corrected readme18:09
stevemaranteaya: should be quick, it'll be only no-op jobs in the gate18:10
stevemaranteaya: the whole chain is here: https://review.openstack.org/#/q/topic:retire-keystoneauth-saml2-again18:10
AJaegerarmax: you gave your +2 on the dependent change, do you want to +1 https://review.openstack.org/#/c/368012/ as well?18:10
anteayastevemar: great thank you18:11
armaxAJaeger: dougwig should have a look too18:11
mfischany known issues with gerrit atm? I can't rebase18:12
mfischhttps://review.openstack.org/#/c/344464/18:12
*** burgerk has quit IRC18:12
mfisch"Unable to create new object..."18:12
clarkbmfisch: usually that means you hae a conflict18:12
*** akshai has joined #openstack-infra18:12
mfischit does say merge confluct18:13
clarkbyup there is a red cannot merge string on that change18:13
mfischwasnt familiar with that error18:13
pabelangerclarkb: http://eavesdrop.openstack.org/irclogs/%23openstack-infra/%23openstack-infra.2016-09-07.log.html#t2016-09-07T14:36:0218:13
mfischok I'll go do it by hand18:13
clarkbmfisch: means that git cannot resolve the rebase/merge on its own so you have to do it18:13
clarkbpabelanger: ty18:13
mfischclarkb: yep thanks18:13
openstackgerritMerged openstack-infra/project-config: bring back keystoneauth-saml2 jobs temporarily  https://review.openstack.org/36808918:13
*** sarob has quit IRC18:14
clarkbpabelanger: that is now in the readme in that dir18:14
*** sarob has joined #openstack-infra18:14
openstackgerritSumit Naiksatam proposed openstack-infra/project-config: Add non-voting job for GBP  https://review.openstack.org/36759118:15
pabelangerclarkb:18:15
pabelangererr18:15
pabelangerk18:15
AJaegerstevemar: before you recheck the saml2 changes, wait that zuul is reconfigured - see "Last reconfigured" at the bottom of http://status.openstack.org/zuul/18:16
AJaegerotherwise the job change is not life18:16
clarkbpabelanger: uploading now will be called clarkb-multi-addr-glean18:16
stevemarAJaeger: ah, i figured there was some lag, but assumed the recheck was harmless18:16
clarkbpabelanger: in the nodepool account rax iad18:16
mfischclarkb: manual rebase works but now I see "Conflicts with N/A: 500 Internal Server Error"18:17
AJaegerstevemar: yes, it's harmless - just premature ;)18:17
clarkbmfisch: did you update to latest master before rebasing?18:17
mfischy18:17
pabelangerclarkb: thanks18:18
mfischrebase went ok from the cli here18:18
openstackgerritMerged openstack-infra/project-config: Publish salt specs  https://review.openstack.org/36536118:18
clarkbmfisch: I think thats saying it doesn't conflcit with anything anymore18:18
clarkbmfisch: may be a bug in gerrit to keep showing that panel after you fix the conflict18:18
mfischclarkb: agreed, but I didnt expect to see an internal server error18:18
AJaegerclarkb, dtantsur|afk : http://users.suse.com/~aj/jobs-unused.txt and http://users.suse.com/~aj/jobs-used.txt are the list of unused and used jobs that I generated. In case you want to do some more analysis...18:18
mfischclarkb: I'd agree with that18:18
clarkbmfisch: I think it thinks it needs to show you that due to caching or something and its just a bug in the UX18:18
clarkbAJaeger: ty18:18
openstackgerritMerged openstack-infra/storyboard-webclient: Add a way to add tasks to worklists from the story view  https://review.openstack.org/36689918:20
openstackgerritMerged openstack-infra/project-config: Create gate-grenade-dsvm-neutron-nova-next-ubuntu-xenial-nv  https://review.openstack.org/36808718:20
*** eranrom has quit IRC18:21
*** Na3iL has quit IRC18:21
*** esberglu has quit IRC18:22
pabelangerclarkb: were getting better with nodepool, almost 20mins without a launch node failure18:22
pabelanger18mins that time18:22
clarkbpabelanger: slow but steady progress. Image upload is done if you want to take over from there18:23
pabelangerclarkb: sure18:23
*** sarob has quit IRC18:24
*** sarob has joined #openstack-infra18:24
*** sbalukoff has joined #openstack-infra18:26
*** dtardivel has quit IRC18:27
*** sarob has quit IRC18:29
*** flepied has joined #openstack-infra18:30
*** dkehn has quit IRC18:31
*** _nadya_ has quit IRC18:33
*** dkehn has joined #openstack-infra18:33
*** dkehn_ has quit IRC18:33
*** dkehn__ has quit IRC18:33
*** jcoufal has joined #openstack-infra18:34
*** esberglu has joined #openstack-infra18:34
*** tkelsey has joined #openstack-infra18:34
openstackgerritZara proposed openstack-infra/storyboard-webclient: Hide edit buttons for logged-out users  https://review.openstack.org/36817618:34
*** jed56 has quit IRC18:35
openstackgerritMerged openstack-infra/project-config: Normalize projects.yaml  https://review.openstack.org/36781718:36
*** esberglu has quit IRC18:37
AJaegerstevemar: you might need to toggle the +W for the saml2 changes18:37
*** ilyashakhat_mobi has joined #openstack-infra18:37
AJaegerstevemar: oh wait, zuul is queing right now...18:37
clarkbarmax: the devstack change for the interface thing is ~40 minutes away from merging according to zuul. You good with me merging your job updates to remove the eth0 hardcode then revert the move to experimental once that is in?18:38
*** ilyashakhat_mobi has quit IRC18:39
armaxclarkb: yes18:39
AJaegerstevemar, anteaya : saml2 is clean now, we can merge https://review.openstack.org/368135 and https://review.openstack.org/36784418:39
*** rbrndt has quit IRC18:39
anteayaclean saml2, yay18:40
anteayaAJaeger: is the readme correct? http://git.openstack.org/cgit/openstack/keystoneauth-saml2/tree/README.rst18:40
*** tkelsey has quit IRC18:40
pabelangerclarkb: Ya, ipv4 works18:40
pabelangertrying to find out why ipv6 doesn't18:41
AJaegeranteaya: yes, it is.  Thanks for double checking18:41
anteayaAJaeger: wonderful18:42
anteayastevemar: thank you18:42
anteayaAJaeger: this one next? https://review.openstack.org/#/c/368135/18:42
openstackgerritAndreas Jaeger proposed openstack-infra/project-config: Remove unused charm jobs  https://review.openstack.org/36817918:43
AJaegeranteaya: they're stacked ;) But yes18:43
*** dkehn__ has joined #openstack-infra18:43
AJaegeranteaya, clarkb: 368179 removes around 200 unused charm jobs - a tiny cleanup18:43
*** dkehn_ has joined #openstack-infra18:43
*** esberglu has joined #openstack-infra18:44
*** senk has joined #openstack-infra18:44
AJaegerclarkb: would be nice if you could review https://review.openstack.org/368078 please to get rid of a few ironic unused jobs to make it easier for them.18:44
*** zul has quit IRC18:44
clarkbAJaeger: ya will queue those up18:44
* AJaeger wishes everybody a great weekend18:44
AJaegerthanks, clarkb18:44
anteayaAJaeger: thank you, you too18:46
*** Sukhdev has joined #openstack-infra18:48
pabelangerclarkb: yay, ipv6 working too18:50
pabelangerbut we have a bug to fix18:50
clarkbpabelanger: ok18:50
*** mfisch has left #openstack-infra18:51
pabelangerclarkb: are we okay with stacking it on the end? Or do the fix in 36686218:51
clarkbpabelanger: I think we should fix the appropriate change18:52
pabelangerI'm good with that18:52
openstackgerritMerged openstack-infra/tripleo-ci: scenarios: set Debug to True  https://review.openstack.org/36689618:52
*** esberglu has quit IRC18:52
openstackgerritMerged openstack-infra/project-config: Revert "bring back keystoneauth-saml2 jobs temporarily"  https://review.openstack.org/36813518:55
openstackgerritMerged openstack-infra/project-config: Remove unused jobs from devstack-gate  https://review.openstack.org/36807818:56
*** sdague has joined #openstack-infra18:57
*** ddieterly[away] is now known as ddieterly18:57
fungijust to confirm, nobody has more details on the current state of the puppet lint issue yolanda was looking into (in scrollback around 12:41-13:13 utc)? if no, i'll start digging deeper in a bit18:57
clarkbI do not18:57
fungii think it's currently blocking all our puppet module changes18:57
*** esikachev has joined #openstack-infra18:58
anteayai do not18:58
*** zul has joined #openstack-infra19:00
*** MaryM has quit IRC19:00
*** Mary has joined #openstack-infra19:03
*** Mary is now known as Guest578319:03
stevemarAJaeger: anteaya thanks for the reviews! it was a nice sight to see after lunch :)19:05
*** rbrndt has joined #openstack-infra19:06
stevemarclarkb / fungi want to punt this one through? https://review.openstack.org/#/c/367844/19:06
anteayastevemar: thanks for the cleanup19:09
anteayagood to get it all tidied up19:09
stevemaranteaya: ma pleasure!19:09
anteaya:)19:09
*** ilyashakhat_mobi has joined #openstack-infra19:10
anteayafungi: thank you19:10
*** e0ne has quit IRC19:11
*** senk has quit IRC19:13
*** ldnunes has quit IRC19:13
*** kzaitsev_mb has joined #openstack-infra19:16
openstackgerritMerged openstack-infra/project-config: Complete retirement of keystoneauth-saml2  https://review.openstack.org/36784419:17
*** isq has quit IRC19:17
*** spzala has quit IRC19:17
openstackgerritDoug Hellmann proposed openstack-infra/release-tools: teach latest-deliverable-versions to diff against the dashboard  https://review.openstack.org/36818619:20
*** IlyaG has quit IRC19:20
openstackgerritZara proposed openstack-infra/storyboard-webclient: Fix behaviour for logged-out users  https://review.openstack.org/36817619:22
*** cgross has quit IRC19:22
*** lmiccini has quit IRC19:22
*** mkoderer has quit IRC19:23
*** ddieterly is now known as ddieterly[away]19:24
*** cardeois has joined #openstack-infra19:25
openstackgerritPaul Belanger proposed openstack-infra/glean: Append to interface definition for multi-address  https://review.openstack.org/36686219:25
openstackgerritPaul Belanger proposed openstack-infra/glean: Add ipv6 support to gentoo  https://review.openstack.org/36748719:25
*** jheroux has quit IRC19:26
*** cardeoi__ has joined #openstack-infra19:26
*** cardeois_ has quit IRC19:28
*** esberglu has joined #openstack-infra19:29
*** ddieterly[away] is now known as ddieterly19:29
*** cardeois has quit IRC19:30
*** roxanagh_ has quit IRC19:31
openstackgerritPaul Belanger proposed openstack-infra/glean: Append to interface definition for multi-address  https://review.openstack.org/36686219:31
openstackgerritPaul Belanger proposed openstack-infra/glean: Add ipv6 support to gentoo  https://review.openstack.org/36748719:31
openstackgerritAndreas Jaeger proposed openstack-infra/project-config: Cleanup: Specs repos are branchless  https://review.openstack.org/36819119:32
AJaegerclarkb: we added a few jobs too many - specs have no stable branches ^19:32
jesusaurAJaeger: thanks for the reviews on 363969 and fixing the underlying issues19:32
openstackgerritPaul Belanger proposed openstack-infra/glean: Append to interface definition for multi-address  https://review.openstack.org/36686219:33
openstackgerritPaul Belanger proposed openstack-infra/glean: Add ipv6 support to gentoo  https://review.openstack.org/36748719:33
openstackgerritShamail Tahir proposed openstack-infra/irc-meetings: Add Interop Challenge Weekly IRC Meeting  https://review.openstack.org/36685119:33
pabelangerokay19:33
pabelangerI think that is it19:33
AJaegerjesusaur: thanks for the change - it helped ;) Will +2 once it passes...19:33
clarkbAJaeger: ok19:33
*** _nadya_ has joined #openstack-infra19:33
jesusauryay19:34
* jesusaur is helping19:34
pabelangerfungi: do you have a moment to look at some ipv6 configuration?  https://review.openstack.org/#/c/366862/8/glean/tests/fixtures/test/rax-iad.debian.network.out19:34
*** cardeoi__ has quit IRC19:34
pabelangerfungi: If you can confirm the settings on eth0 for static routes19:35
anteayaAJaeger: why are you getting rid of  gate-api-wg-python27-ubuntu-trusty in 36819119:35
*** isq has joined #openstack-infra19:35
*** cardeois has joined #openstack-infra19:36
AJaegeranteaya: check the branches the project has - and when the job runs. You will notice that the repo has only master and that all ubuntu-trusty jobs are only run on older stable branches.19:36
AJaegerSo, gate-api-wg-python27-ubuntu-trusty will never be used19:36
pabelangerclarkb: glean stack ready19:36
anteayaokay the commit message just says specs jobs though19:36
AJaegeranteaya: And yes, I check the repo for branches ;)19:36
AJaegeranteaya: that repo uses the specs template19:36
anteayaoh19:36
AJaeger"openstack-specs-jobs" is used by it - and I searched for repos that use "specs-jobs"19:37
AJaegerand for most - especially these odd ones - I run "git branch -a".19:37
AJaegerstill, I might have missed one, so I appreciate double checking ;)19:38
*** sdake has joined #openstack-infra19:38
*** _nadya_ has quit IRC19:38
openstackgerritClark Boylan proposed openstack-infra/project-config: Remove hardcoding to eth0 in LinuxBridge job configuration  https://review.openstack.org/36770419:38
openstackgerritClark Boylan proposed openstack-infra/project-config: Revert "Fix linuxbridge job breakage on xenial"  https://review.openstack.org/36819519:38
clarkbanteaya: armax AJaeger fungi ^ thats the reorganizing of thinsg so that we can test linuxbridge on xenial as soon as the devstack change merges19:39
anteayasure19:39
*** dimtruck is now known as zz_dimtruck19:39
clarkbpabelanger: have you rebuilt an image using those chagnes and booted it in rax?19:39
fungiclarkb: thanks. in the meantime, check experimental should still be exercising it19:39
clarkbfungi: yup19:40
clarkbfungi: everything should just work at this point in time, its just a matter of merging things one at a time and double checking19:40
AJaegerclarkb: please self-approve once the dependend job merged19:40
clarkbAJaeger: can do19:40
fungiawesome. that's some quick work19:40
clarkb(armax already gave his blessing too)19:40
pabelangerclarkb: not yet, I'd like to get confirmation the static ipv6 routes is correct first.19:41
pabelangerI am testing them now19:41
*** mbacchi has quit IRC19:41
openstackgerritShamail Tahir proposed openstack-infra/irc-meetings: Add Interop Challenge Weekly IRC Meeting  https://review.openstack.org/36685119:42
*** sdake has quit IRC19:42
clarkbAJaeger: on https://review.openstack.org/#/c/368191/1/zuul/layout.yaml is the reason more of them don't use the zuul jobs template because they don't want or we don't want them publishing the specs to the spec publishing location?19:42
AJaegerzigo, somehow you screwed up with openstack/deb-nodepool - that one is in zuul/layout but not in gerrit/projects.yaml ;(19:42
AJaegerclarkb: the template is the minimal set of jobs, but many use python27 jobs in addition.19:43
clarkboh I see that now, thanks19:43
AJaegeror pep8 in addition19:44
clarkblooks like also pep8 ya19:44
*** sdake has joined #openstack-infra19:44
*** zz_dimtruck is now known as dimtruck19:47
openstackgerritAndreas Jaeger proposed openstack-infra/project-config: Remove wrongly set up deb-nodepool  https://review.openstack.org/36821419:47
AJaegerdeb-nodepool set up is broken, let's remove it - and readd it later ^19:47
*** mbacchi has joined #openstack-infra19:48
openstackgerritMerged openstack-infra/project-config: change post_test_hook location for osc functional tests  https://review.openstack.org/36586519:48
*** cardeois has quit IRC19:49
* AJaeger leaves again...19:49
clarkbAJaeger: enjoy your weekend19:49
*** ccamacho has quit IRC19:49
*** cardeois has joined #openstack-infra19:50
openstackgerritPaul Belanger proposed openstack-infra/glean: Append to interface definition for multi-address  https://review.openstack.org/36686219:52
openstackgerritPaul Belanger proposed openstack-infra/glean: Add ipv6 support to gentoo  https://review.openstack.org/36748719:52
pabelangerroute -6 add fd30::/48 gw fe80::f001 should be valid syntax19:52
*** esikache1 has joined #openstack-infra19:53
pabelangerOh, maybe not19:53
pabelangerhmm19:53
clarkbpabelanger: -A inet619:54
clarkbpabelanger: or maybe use ip route19:54
pabelangerya, going to do ip route I think19:54
pabelangermost of the examples are using it19:54
*** ddieterly is now known as ddieterly[away]19:54
*** esikachev has quit IRC19:56
pabelangerup ip -6 route add fd30::/48 via fe80::f001 dev eth0 || true20:01
pabelangerthink that is right20:01
*** _nadya_ has joined #openstack-infra20:02
openstackgerritPaul Belanger proposed openstack-infra/glean: Append to interface definition for multi-address  https://review.openstack.org/36686220:02
*** cardeois has quit IRC20:02
openstackgerritPaul Belanger proposed openstack-infra/glean: Add ipv6 support to gentoo  https://review.openstack.org/36748720:02
*** gyee has quit IRC20:02
pabelangerclarkb: okay, building new image now20:02
*** _nadya_ has quit IRC20:03
clarkbpabelanger: ya that looks roughly correct. However, do you need a default route too?20:03
pabelangerclarkb: that is already working20:03
*** tongli has quit IRC20:03
pabelangerwell, the syntax is working20:03
clarkbgotcha20:03
pabelangerI was only having issues with static routes20:03
pabelangerokay, build started20:04
* clarkb is worried the devstack fix for linuxbridge may timeout one of its jobs20:05
clarkbI think we have a few more minutes to finish up tempest and report bcak20:05
clarkbwhere is the turbo button20:05
*** mbacchi has quit IRC20:06
*** esberglu has quit IRC20:06
* anteaya looks around20:06
anteayayou don't hold the turbo down, it's for quick boosts20:06
anteayayeah like you know20:06
openstackgerritMerged openstack-infra/project-config: Cleanup: Specs repos are branchless  https://review.openstack.org/36819120:06
*** cardeois has joined #openstack-infra20:07
*** zul has quit IRC20:10
*** zul has joined #openstack-infra20:10
*** esikache1 has quit IRC20:11
*** cardeois has quit IRC20:12
*** drawsmcgraw1 has quit IRC20:13
openstackgerritBen Nemec proposed openstack-infra/tripleo-ci: Limit Heat engine workers to 4 in rh1  https://review.openstack.org/36065020:13
openstackgerritBen Nemec proposed openstack-infra/tripleo-ci: Limit heat, neutron, and nova workers  https://review.openstack.org/36822020:13
*** drawsmcgraw has joined #openstack-infra20:13
mordredclarkb, pabelanger: heya! sorry - today has eaten my lunch - are there any glean or other things I should be looking at?20:15
clarkbmordred: yes the stack around https://review.openstack.org/367487 pabelanger is doing real world testing of it now20:16
*** ilyashakhat_mobi has quit IRC20:16
harlowjacan not import monkey?20:16
clarkbmordred: it was mostly working except for ipv6 route addtions so fix for that is being tested now20:16
harlowjawhattttt20:16
anteayaharlowja: recheck20:16
harlowja(no i'm just wondering what monkey is, lol)20:16
mordredclarkb: sweet20:16
anteayaharlowja: the first of two setuptools releases today couldn't find monkey20:17
harlowjalol20:17
harlowjathat just sounds funny20:17
harlowja:)20:17
fungiharlowja: luckily the monkey has been found and returned to its native habitat20:17
harlowjasafe?20:17
harlowjahopefully no poo thrown?20:17
funginot in here at least20:17
clarkbprobably on twitter20:17
fungimost of us are more evolved primates20:18
harlowjaha20:18
*** tonytan_brb has quit IRC20:18
harlowjaso u think fungi so u think...20:18
*** ddieterly[away] is now known as ddieterly20:18
fungiyeah, no doubt the "bug reports" submitted via twitter were rife with poo flinging20:18
dimsLOL20:18
* mordred really should finish the statusbot twitter publisher20:18
dtroyer++20:19
dtroyerI need a reason to read more twitter20:19
fungiharlowja: i _did_ say "most"20:19
harlowja:)20:19
* fungi is, on the other hand, a long-standing member of the devolutionary army20:19
anteayafungi: does your army have turbo buttons?20:20
fungino, but we have flowerpots20:20
anteayanice20:20
*** thorst_ has joined #openstack-infra20:20
mordredharlowja: OH! the twitter support merged20:20
harlowjai've seen movies about this, doesn't seem to end well for humans20:20
clarkbmy army just demands food all the time20:20
mordredharlowja: I guess I just need to make an account and get an API key and configure it20:20
mordredharlowja: https://review.openstack.org/#/c/92677/20:21
anteayaclarkb: a two person army20:21
*** kgiusti has left #openstack-infra20:21
pabelangerclarkb: just converting to vhd now20:21
clarkbzomg this might actually pass and merge20:21
*** superdan is now known as dansmith20:27
clarkbI have approved https://review.openstack.org/#/c/367704/ which will stop hardcoding eth020:27
clarkband am going to approve its child now20:27
clarkbwe will want to watch neutron changes once zuul and jjb things update20:28
openstackgerritMerged openstack-infra/statusbot: Explicitly catch Exception  https://review.openstack.org/23378120:28
*** cardeois has joined #openstack-infra20:29
*** pabelanger is now known as pall20:29
*** ddieterly is now known as ddieterly[away]20:29
*** salv-orl_ has joined #openstack-infra20:30
*** ddieterly[away] is now known as ddieterly20:31
*** ddieterly has quit IRC20:31
*** xarses_ has joined #openstack-infra20:32
*** salv-orlando has quit IRC20:32
*** baoli has quit IRC20:33
*** cardeois has quit IRC20:33
*** salv-orl_ has quit IRC20:33
*** jkilpatr has quit IRC20:33
*** Guest5783 has quit IRC20:33
*** baoli has joined #openstack-infra20:33
*** xarses has quit IRC20:34
*** salv-orlando has joined #openstack-infra20:34
*** roxanagh_ has joined #openstack-infra20:35
*** mkoderer has joined #openstack-infra20:38
openstackgerritMerged openstack-infra/statusbot: Explicitly handle ImportError for pid_file_module  https://review.openstack.org/23378020:39
*** lmiccini has joined #openstack-infra20:39
* clarkb makes note to contact ovh about bhs1 image uploads20:39
*** cgross has joined #openstack-infra20:40
*** gyee has joined #openstack-infra20:41
anteaya8 point buck in my dooryard20:41
anteayahe is so beautiful20:41
openstackgerritMerged openstack-infra/project-config: Remove hardcoding to eth0 in LinuxBridge job configuration  https://review.openstack.org/36770420:43
*** jcoufal has quit IRC20:43
openstackgerritMerged openstack-infra/project-config: Revert "Fix linuxbridge job breakage on xenial"  https://review.openstack.org/36819520:43
*** askb has joined #openstack-infra20:44
*** rfolco_ has joined #openstack-infra20:45
*** rfolco has quit IRC20:46
*** mbacchi has joined #openstack-infra20:50
*** tonytan4ever has joined #openstack-infra20:50
*** fguillot has quit IRC20:51
*** raildo has quit IRC20:53
*** e0ne has joined #openstack-infra20:54
*** jkilpatr has joined #openstack-infra20:56
*** Mary has joined #openstack-infra20:56
*** bin_ has quit IRC20:57
*** Mary is now known as Guest4681920:57
*** openstackstatus has quit IRC20:57
pallYay20:58
pallmordred: clarkb: ssh devuser@2001:4802:7801:102:be76:4eff:fe20:387b20:58
pallssh devuser@162.242.226.10020:58
pallthat is rax-iad20:58
*** openstackstatus has joined #openstack-infra20:58
*** ChanServ sets mode: +v openstackstatus20:58
clarkbpall: and xenial?20:59
pallthat is trusty20:59
pallI can do xenial now20:59
clarkbah ok20:59
clarkbcool20:59
clarkb(should check since systemd has been special enough lately)20:59
anteayapall: are you also pabelanger?20:59
mordredI was just about to ask the same thing20:59
clarkbanteaya: ya I had to unfilter my smartfilters to get that context21:00
anteayaclarkb: thanks21:00
pallSorry, ya21:00
*** pall is now known as pabelanger21:00
pabelangerthere we go21:00
anteayamy brother's name is paul21:00
anteayathat was his nick in high school21:00
anteayathought he was in channel21:00
clarkbtelnet://2001:4800:1ae1:18:f816:3eff:fedb:122e:19885 is a linuxbridge job on xenial that just started21:00
* clarkb telenets21:00
*** Guest46819 has quit IRC21:01
*** baoli has quit IRC21:02
*** baoli has joined #openstack-infra21:02
*** _nadya_ has joined #openstack-infra21:03
*** lascii is now known as alaski21:04
*** mbacchi has quit IRC21:04
*** mbacchi has joined #openstack-infra21:04
*** ilyashakhat_mobi has joined #openstack-infra21:05
*** notnownikki has joined #openstack-infra21:07
*** baoli has quit IRC21:07
*** _nadya_ has quit IRC21:08
*** e0ne has quit IRC21:09
*** gyee has quit IRC21:12
*** notnownikki has quit IRC21:14
*** gyee has joined #openstack-infra21:15
*** inc0 has quit IRC21:16
fungisomebody set us up the telenets21:20
* mordred hands fungi a box of telenets he found21:21
*** ddieterly has joined #openstack-infra21:21
*** trown is now known as trown|outtypewww21:21
clarkbI am a tyop machine21:21
mordredclarkb: you pretty much just computer on your phone now don't you?21:25
pabelangerclarkb: mordred: both xenial and trusty with the glean updates for rax-iad21:25
pabelangeripv4 / ipv6 on eth021:26
fungiso to rehash the current broken with all our puppet-lint and beaker-rspec jobs, it looks like we're unable to install the puppet-lint gem due to dependency conflicts: http://logs.openstack.org/14/368114/2/check/gate-puppet-mediawiki-puppet-beaker-rspec-centos-7/010af66/console.html#_2016-09-09_21_08_29_26875321:26
*** thorst_ has quit IRC21:28
anteaya:(21:29
*** ddieterly has quit IRC21:29
anteayawell the gem is there: https://rubygems.org/gems/puppet-lint21:29
anteayawhat version is it after?21:30
mordredpabelanger: WOOT!21:30
mordredpabelanger: zomg. it's almost like we have working internet. in a CLOUD21:30
*** HeOS has quit IRC21:31
*** xarses has joined #openstack-infra21:31
*** xarses_ has quit IRC21:31
*** xarses has quit IRC21:31
anteayafungi: I can't decipher what version it is looking for21:32
*** mwhahaha has quit IRC21:32
*** xarses has joined #openstack-infra21:32
*** akshai has quit IRC21:32
anteayafungi: we may have specified a range of versions that can't be fulfilled21:32
fungianteaya: yep, that's what i'm trying to suss out now21:33
fungipuppet-lint-absolute_template_path wants puppet-lint >=1.1,< 3.021:34
*** abregman has joined #openstack-infra21:34
*** annegentle has quit IRC21:34
fungimost of the others there want puppet-lint >=1.0,< 3.021:34
fungiexcept21:34
*** mdrabe has quit IRC21:35
fungipuppet-lint-unquoted_string-check wants puppet-lint (~> 1.0)21:35
*** mdrabe has joined #openstack-infra21:35
anteayaah21:35
anteayasigh21:35
anteayathat would make it impossible to fulfill21:35
fungiso my guess is we were previously getting puppet-lint 1.0 and then puppet-lint-absolute_template_path decided today that it needs at least puppet-lint 1.121:35
anteayaalso https://github.com/puppetlabs/puppetlabs_spec_helper21:36
anteaya1.2.2 wants 2.021:36
anteayabut my read is that change happened 2 weeks ago21:37
fungiyeah, i wonder if that's an artifact of a new puppetlabs_spec_helper release or a new puppet-lint-absolute_template_path release21:37
anteayawell the puppetlabs_spec_helper release was 2 weeks ago21:37
*** rfolco_ has quit IRC21:38
anteayahow long have we been affected by this?21:38
fungijust today21:38
clarkbok I am now semi afk will keep an eye on those linuxbridge jobs though21:38
fungipuppet-lint-absolute_template_path 1.0.1 was released a couple of weeks ago as well, according to https://rubygems.org/gems/puppet-lint-absolute_template_path21:39
anteayaclarkb: thanks, have a good weekend21:39
anteayawonder what happened today then21:39
anteayaI'm at a loss, but the gems definitely are fighting21:40
anteayafungi: puppet-lint-unquoted_string-check is loaded twice21:42
anteayafirst with puppet-lint (< 3.0, >= 1.0)21:43
*** rtheis has quit IRC21:43
*** jamesdenton has quit IRC21:43
anteayathen with puppet-lint (~> 1.0)21:43
openstackgerritElizabeth K. Joseph proposed openstack-infra/puppet-statusbot: Add Twitter support  https://review.openstack.org/36823821:43
anteayasorry 7 times21:43
anteayawhy is puppet-lint-unquoted_string-check loaded 7 times21:44
*** drawsmcgraw has quit IRC21:44
fungii read that as it trying to resolve to a version which would be compatible with the other dependencies21:44
*** igormarnat has quit IRC21:44
*** drawsmcgraw has joined #openstack-infra21:44
openstackgerritElizabeth K. Joseph proposed openstack-infra/system-config: Add Twitter account details to our statusbot  https://review.openstack.org/36823921:44
fungiso, yeah, it's more likely puppetlabs_spec_helper that's at fault here21:44
*** asilenkov has quit IRC21:44
*** rakhmerov has quit IRC21:44
pleia2mordred: those should get us there ^^21:44
fungii'm just not piecing together eth timeline, but am digging for a recent change which passed these jobs to compare21:45
pleia2modulo actual reviews in case I missed something ;)21:45
*** katyafervent_awa has quit IRC21:45
mordredpleia2: woot!21:45
mordredpleia2: did you put the keys into the hieras already?21:45
anteayafungi: cool21:45
pleia2mordred: working on that now21:45
mordredwoot21:45
*** kzaitsev_ws has quit IRC21:45
fungianteaya: http://logs.openstack.org/64/366964/1/gate/gate-puppet-mediawiki-puppet-lint/ab41f88/console.html#_2016-09-08_19_12_58_12190021:46
*** gordc has quit IRC21:46
fungithere's a working run from yesterday and the versions of things it resolved to install21:46
*** mbacchi has quit IRC21:46
*** asilenkov has joined #openstack-infra21:46
fungi"Installing puppetlabs_spec_helper 1.1.121:46
fungi"21:46
pleia2g/ 11421:47
pleia2derp21:47
*** kzaitsev_ws has joined #openstack-infra21:47
*** igormarnat has joined #openstack-infra21:47
*** rakhmerov has joined #openstack-infra21:47
anteayafungi: also puppet-lint-unquoted_string-check 0.3.021:48
fungiyep21:48
*** katyafervent_awa has joined #openstack-infra21:49
fungiwhich hasn't had a newer release according to https://rubygems.org/gems/puppet-lint-unquoted_string-check21:49
clarkbalso we have success for linuxbridge ubuntu xenial21:49
anteayayay success21:49
anteayayeah so yesterday were had been 0.3.0 of unquoted_string-check and today we want an older version?21:51
anteaya0.1.021:51
anteayas/were had been/we had been using21:52
*** mwhahaha has joined #openstack-infra21:52
anteayafungi: should we pin the puppetlabs_spec_helper version in our spec_helper?21:53
*** dimtruck is now known as zz_dimtruck21:54
*** ilyashakhat_mobi has quit IRC21:54
fungiwell, we pinned the spec helper a few weeks ago https://review.openstack.org/359421 and then unpinned it the next day https://review.openstack.org/35953921:55
fungibut that seems to have been related to changes in ruby interpreter version requirements21:55
anteayaI think we pin it again with a new comment21:56
anteayasince a new reason has reared its head21:56
anteayaunless there is a better way I am missing21:56
kevinbentonclarkb: was looking at Ihar's comment on https://review.openstack.org/#/c/367716/ . do you think i should try to parse the TUNNEL_RANGES config instead?21:56
anteayamoar kevinbenton, how can I be so lucky?21:57
fungicrinkle: nibalizer: no idea if either of you are around again yet, but trying to figure out why this just cropped up today http://logs.openstack.org/14/368114/2/check/gate-puppet-mediawiki-puppet-lint/a456a93/console.html#_2016-09-09_21_02_31_430459 (the release dates for the versions of things involved seem to be weeks old at best)21:57
kevinbentonanteaya: when people say that i can never tell if it's a good thing or a bad thing :)21:57
anteayakevinbenton: it is nice to see you21:57
anteayakevinbenton: we both know I know far too little to be lying in wait with some bug to surprise you with :)21:58
clarkbkevinbenton: I dont know that there is much need unless devstack decides to change it later to overlap21:58
clarkbnot sure how often it would change21:58
kevinbentonanteaya: can never tell. Canadians are shifty characters ;)21:58
anteayawe are so21:58
*** fguillot has joined #openstack-infra21:58
anteayahave to keep both eyes on us :)21:58
kevinbentonclarkb: yeah, i don't expect it to change realistically21:59
kevinbentonclarkb: also it would be a non-trivial thing to parse correctly because it can be a comma-separated list of ranges21:59
clarkbwhy not start with ehat we have now then deal with parsing later21:59
clarkbthis addresses the immediate concern/issue21:59
fungianteaya: oh! look just above the gem installation on the broken vs working runs22:00
* anteaya looks22:00
kevinbentonclarkb: sounds good. just wanted to make sure nobody was waiting on parsing22:00
fungianteaya: hint... https://rubygems.org/gems/bundler22:00
anteayafungi: new bundler22:00
clarkbkevinbenton: I'm off to doctor viaits butaybe fungi mordred or pabelanger can review22:00
anteayafungi: good eye22:00
anteayaclarkb phone is the best22:01
kevinbentonclarkb: ack. thanks again22:01
openstackgerritElizabeth K. Joseph proposed openstack-infra/system-config: Add Twitter account details to our statusbot  https://review.openstack.org/36823922:01
fungicrinkle: nibalizer: nevermind--looks like we're bitten by changes in dependency resolution brought on by today's bundler 1.13.0 release22:01
clarkbwe did the thing where we had kids while living in city and now dont live in city but like their doctors so have to drive too far for these things22:02
mordredpleia2: I has question on that change22:03
kevinbentonclarkb: just take the company helicopter. that's a perk now, right?22:03
*** mbacchi has joined #openstack-infra22:03
pleia2mordred: sure22:03
anteayafungi: doesn't look like anyone has filed an issue against bundler 1.13 that looks like our situation22:03
fungianteaya: agreed, i just finished skimming open and closed issues and pull requests for it22:04
pleia2mordred: ah yeah, since true/false, on it22:04
anteayagood doctors are worth driving for, mind you I'm not in a van with twins in traffic22:04
mordredpleia2: looks like you did the right thing on the puppet module itself22:04
* pleia2 nods22:05
openstackgerritElizabeth K. Joseph proposed openstack-infra/system-config: Add Twitter account details to our statusbot  https://review.openstack.org/36823922:05
*** tonytan_brb has joined #openstack-infra22:06
mordredpleia2: woot \o/22:07
*** tonytan4ever has quit IRC22:07
pleia2I haven't paid attention, are we having rspec problems today? (failed job on the puppet patch)22:07
fungiEmilienM: yolanda: new details on the mysterious gem resolution issue from earlier today. looks like bundler 1.13.0 may have changed dependency resolver behavior. i'm working on pinning it to 1.12.5 for infra's puppet jobs until we can work out more details to file a bug upstream22:08
pleia2how fortuitous, thanks fungi22:08
fungiindeed, good timing pleia2 ;)22:09
*** mriedem has quit IRC22:11
openstackgerritsebastian marcet proposed openstack-infra/openstackid-resources: Notifications API  https://review.openstack.org/36824522:13
*** yee379 has joined #openstack-infra22:16
*** vhosakot has joined #openstack-infra22:16
fungiEmilienM: hrm, actually i don't think we can easily pin beaker just for infra's jobs... it looks like at some point we decided to have puppet-openstack, fuel and infra collectively use the same set of jobs?22:20
anteayaoh my22:20
sdakemaybe i'm just dense - but did the post button in gerrit go away22:20
mordredsdake: what button?22:21
fungii'm more inclined to stop running lint and rspec jobs temporarily on our puppet modules unless puppet-openstack and fuel agree we can pin beaker for all of us collectively22:21
mordredfungi: I'm fine with that22:21
sdakenm i'm dense22:21
sdakemordred its reply->post22:21
mordredsdake: :)22:21
anteayayeah if you are not on the most current patchset the button disappears22:21
sdakeand was showoing oddy because of my brokne laptop sren22:21
sdakeanteaya that wasn't the problem but yes I am ware of that22:22
anteayafungi: I'm also fine with that22:22
anteayasdake: okay22:22
sdakeanteaya operator erorr on my aprt :)22:22
*** yamahata has quit IRC22:22
anteayaokay22:22
anteayafungi: I don't think our modules will get wildly out of control as a result of a few days without linters22:23
*** inc0 has joined #openstack-infra22:24
fungion the other hand, agreeing that we'll all run a common set of jobs comes with the price that when those jobs break for one team's repos, the jobs may get adjusted for all22:25
*** ddieterly has joined #openstack-infra22:25
anteayaare those jobs not broken for them too?22:25
fungiapparently they aren't hitting this, or so said EmilienM earlier in channel (about 10 hours ago)22:26
anteayaI wonder how22:26
fungiit's possible their spec helper dependency set is not as strange as ours22:26
fungiwe have separate spec helper repos, with different dependencies22:27
*** ddieterly has quit IRC22:27
*** mdrabe has quit IRC22:27
anteayaah22:27
anteayait is past 6pm on a Friday, at this point I am mostly nodding in agreement22:28
*** thorst has joined #openstack-infra22:28
*** abregman has quit IRC22:28
anteayaand standing by to review a patch indicating what you would like to do, should one materialize22:28
*** ddieterly has joined #openstack-infra22:31
fungiyeah, i'm working on putting together an upstream bug report first22:33
anteayaah22:33
*** rlandy has quit IRC22:33
*** thorst has quit IRC22:33
*** vhosakot has quit IRC22:35
*** xyang1 has quit IRC22:36
*** vhosakot has joined #openstack-infra22:36
mordredfungi: yah - I think when we get acceptance from puppet and fuel teams on changing beaker - we should extra-verify the theory that if we need to pin something like that for one of the users of the jobs, we'll pin it for all of them22:37
*** yamahata has joined #openstack-infra22:37
*** sdague has quit IRC22:38
fungier, i said pin beaker above. i obviously meant bundler22:38
fungiEmilienM: pin bundler, sorry, not beaker22:39
*** sdake has quit IRC22:40
mordredyah22:41
mordredand I also knew that and continued the game22:41
*** vinaypotluri has quit IRC22:42
*** vhosakot has quit IRC22:42
*** zhurong has joined #openstack-infra22:46
mwhahahawhat's the bundler problem?22:46
fungimwhahaha: 1.13.0 release today changed its dependency resolution behavior and can't install https://git.openstack.org/openstack-infra/puppet-openstack_infra_spec_helper now22:47
fungii'm about done composing a bug report for them22:47
mwhahahathat's odd since we use a similar method22:49
fungimwhahaha: i'm assuming it's something specific to the set of deps in ours22:50
*** inc0 has quit IRC22:50
fungithat tickles a behavior change in the resolver22:50
mwhahahaoh we do pin puppet-lint 1.1.022:50
mwhahahaand you don't22:50
mwhahahatrying to remember where we do this tho22:52
fungihttps://github.com/bundler/bundler/issues/496122:53
*** zhurong has quit IRC22:54
zigopabelanger: Jeremy & Monty already +2 that patch, can you workflow it now? https://review.openstack.org/36734322:54
fungimwhahaha: i wonder if it's related to https://github.com/bundler/bundler/issues/4960 which was also just opened moments ago22:54
zigofungi: Or maybe you can?22:55
pleia2zigo: the file is a bit picky about syntax, I recommend cleaning up the trailing whitespace on like 182022:55
pleia2s/like/line22:56
zigoOk.22:56
*** ociuhandu has quit IRC22:56
fungioh, yep, gertty doesn't highlight trailing whitespace for me22:56
*** ddieterly has quit IRC22:57
fungizigo: anyway, i'm happy to approve asap if you want to do one more that strips out excess trailing whitespace22:57
zigoWill this break something?22:57
*** rbrndt has quit IRC22:57
zigofungi: Doing it right now22:57
zigo"most" puts trailing space in red, it's easy to see.22:58
*** hongbin has quit IRC22:58
openstackgerritThomas Goirand proposed openstack-infra/project-config: upstream: and options: track-upstream for deb-*  https://review.openstack.org/36734322:59
zigofungi: There you go.22:59
*** ddieterly has joined #openstack-infra22:59
zigofungi: Is this track-upstream like a cron job? How often does it run?22:59
*** hasharAway has quit IRC23:00
openstackgerritSteve Martinelli proposed openstack-infra/project-config: fix osc gate: post_test_hook.sh not found  https://review.openstack.org/36825223:01
zigoLikely, my Add missing deb repo 4/5 and 5/5 will merge conflict after this patch is merged.23:01
fungizigo: i was trying to work that out. i think we want to switch it to an independent cron job, since it looks like right now it runs as part of manage-projects so only when something in project-config for gerrit changes for at least one project (acl configs, project additions/removals, et cetera). that's pretty frequent at the moment, like ~daily at least, but i think we should probably make the23:01
fungitrack-upstream updates happen hourly rather than on an ad-hoc basis23:01
zigoOk.23:02
openstackgerritSteve Martinelli proposed openstack-infra/project-config: fix osc gate: post_test_hook.sh not found  https://review.openstack.org/36825223:02
stevemarfungi: o/23:02
fungiwe've only been using it for one rarely-used repo so far, so haven't really been impacted by it yet23:02
stevemarfungi: anyway you could look at ^ i done broke the gate :(23:02
openstackgerritVarun Gadiraju proposed openstack-infra/project-config: Fixes python 3 syntax issues with missing parentheses in call to 'print'  https://review.openstack.org/36825323:03
zigofungi: Does it run in rackspace?23:03
zigoIt'd be wise if it did, so it would be close to github.23:03
fungizigo: it runs locally on review.openstack.org, which is currently hosted in rackspace's "dfw" region in texas, usa23:03
zigoOk.23:03
mwhahahafungi: i think it's puppet-lint-empty_string-check from puppet-mediawiki23:04
*** _nadya_ has joined #openstack-infra23:04
mwhahahai tested against puppet-manilla and included that gem in the Gemfile and it puked23:05
mwhahahaw/o it and just the spec helper it was fine23:05
* stevemar thanks fungi 1000 times23:05
*** ddieterly has quit IRC23:06
fungimwhahaha: oh, interesting. i wonder if we're not using the spec helper in that module yet?23:06
mwhahahano you are23:06
vgadirajHi all, I am working on ironic and when I was running tox in py 3.5 jenkins-project was failing because a couple print statements were missing parentheses23:06
mwhahahabut that's an 'extra' one according to the comment23:06
mwhahahalet me debug further23:06
fungiohhhh23:06
vgadirajsubmitted a basic syntax fix23:07
mwhahahahttps://rubygems.org/gems/puppet-lint-empty_string-check/versions/0.2.223:07
mwhahahaanyway so it's some sort of combination of bundler and that gem with the others :D23:08
mwhahahabut i would agree that it's a bundler problem, but if you pull that empty string check it seems to work just fine23:08
fungimwhahaha: intresting, so if you just install https://git.openstack.org/openstack-infra/puppet-openstack_infra_spec_helper it works?23:08
mwhahahayea i swapped out puppet-openstack_spec_helper with puppet-openstack_infra_spec_helper in puppet-manilla with bundler 1.13.0 and it was fine23:09
fungiunfortunately i'm not looking forward to needing to patch this across a bunch of our modules. that was more or less the promise of using a spec helper gem23:09
mwhahahabut as soon as i added that empty string check to the puppet-manilla Gemfile it blew up23:09
mwhahahaso  it's probably related to the minimum version thing but in a round about way23:09
*** _nadya_ has quit IRC23:09
*** fguillot has quit IRC23:10
fungimwhahaha: thanks, i've updated the description on https://github.com/bundler/bundler/issues/4961 accordingly23:11
mwhahahaor just pin puppetlabs_spec_helper to 1.1.123:11
fungijust confirmed, we have 71 puppet modules independently declaring a dependency on puppet-lint-empty_string-check23:13
*** ddieterly has joined #openstack-infra23:13
mwhahahai'd pin spec_helper to 1..1.123:13
mwhahahathat'll solve it for sure23:13
mwhahahathe problem is that puppetlabs_spec_helper 1.2.x requires puppet-lint 2.0 (which in it's own is problematic)23:13
fungigiving it a shot now23:14
openstackgerritJeremy Stanley proposed openstack-infra/puppet-openstack_infra_spec_helper: Pin puppetlabs_spec_helper < 1.2  https://review.openstack.org/36825423:17
fungimwhahaha: ^ like that?23:17
openstackgerritMerged openstack-infra/project-config: upstream: and options: track-upstream for deb-*  https://review.openstack.org/36734323:18
mwhahaha'~> 1.1.1'23:18
fungiwhat's the difference between those?23:18
mwhahaha~> 1.1.1 will track 1.1.x23:18
mwhahaha~> 1.1 will track 1.x23:18
fungiweird23:18
mwhahaharubyisms23:19
fungiyeah, i will readily admit i don't know the first thing about ruby23:19
mwhahaha< might work but i've usually used ~> or pinned to a specific version23:19
fungiso why ~> 1.1.1 and not ~> 1.1.0?23:19
mwhahahacould be either23:20
mwhahahai just picked 1.1.1 cause that's the current known working version23:20
openstackgerritJeremy Stanley proposed openstack-infra/puppet-openstack_infra_spec_helper: Pin puppetlabs_spec_helper ~> 1.1.1  https://review.openstack.org/36825423:20
fungithanks. updated ^23:20
*** armax has quit IRC23:20
fungii'll make a puppet-mediawiki change depends-on that and see if it passes jobs now23:21
openstackgerritJeremy Stanley proposed openstack-infra/puppet-mediawiki: Skip CAPTCHA for autopatrol users  https://review.openstack.org/36811423:22
fungithat one ^23:22
mwhahahawe shall see23:22
*** sdake has joined #openstack-infra23:22
openstackgerritThomas Goirand proposed openstack-infra/project-config: Fix add deb-nodepool  https://review.openstack.org/36825623:24
zigofungi: This patch fixes what AJaeger found out (ie: nodepool was added, but missing from gerrit/projects.yaml_23:24
mwhahahaboooo nope23:25
mwhahahayea the next simpliest fix is to pin bundler to 1.12.523:26
*** mrjk has quit IRC23:27
*** pradk has quit IRC23:27
openstackgerritThomas Goirand proposed openstack-infra/project-config: Add missing deb repo 4/5  https://review.openstack.org/36673423:27
openstackgerritMerged openstack-infra/project-config: fix osc gate: post_test_hook.sh not found  https://review.openstack.org/36825223:27
*** xarses has quit IRC23:28
openstackgerritThomas Goirand proposed openstack-infra/project-config: Add missing deb repo 5/5  https://review.openstack.org/36696023:31
fungimwhahaha: that's what i was originally going to do, but that does mean changing jobs that are used not only by the infra team's modules but also openstack-puppet and fuel23:32
mwhahahai happen to probably be able to speak for both of those :D23:32
mwhahahai'm running a test to see if fuel-library is broken23:33
*** zul has quit IRC23:33
*** roxanagh_ has quit IRC23:35
mwhahahafuel-library is not currently broken23:37
mwhahahatesting a puppet-openstack module23:37
*** Swami has quit IRC23:39
mwhahahaanyway it's time for me to wander off, i'd personally be ok with pinning bundler for now across the jobs but it is friday evening so maybe wait until monday?23:43
mwhahahaalso who releases on a friday :D23:43
*** armax has joined #openstack-infra23:43
*** kzaitsev_mb has quit IRC23:48
*** ddieterly has quit IRC23:54
*** mbacchi has quit IRC23:54
sdakehey i suspect nobody is around23:55
sdakebut i'm having a realy wierd gate problem23:55
sdakexhttp://logs.openstack.org/69/367269/16/check/gate-kolla-dsvm-deploy-centos-source-centos-7-nv/2ea3982/console.html#_2016-09-09_20_46_13_18531623:55
sdakeit seems like the ssh takes 3 minutes23:55
*** fguillot has joined #openstack-infra23:58
*** gyee_ has joined #openstack-infra23:58
*** ddieterly has joined #openstack-infra23:59
*** ddieterly has quit IRC23:59

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