Wednesday, 2017-11-01

*** dave-mccowan has joined #openstack-infra00:01
*** slaweq has quit IRC00:03
*** dave-mcc_ has quit IRC00:03
*** baoli has quit IRC00:03
*** sflanigan has quit IRC00:04
*** pahuang has quit IRC00:05
openstackgerritJames E. Blair proposed openstack-infra/zuul feature/zuulv3: On reconfiguration, re-enqueue items at the same position  https://review.openstack.org/51679900:07
jeblairclarkb, mwhahaha: ^ there's a fix00:07
*** slaweq has joined #openstack-infra00:12
jeblairmwhahaha: that bug may have had a significant impact on dwell times in the gate pipeline.  basically, any time a change at the head of the queue was failing, the queue behind it was not doing useful work; so we wouldn't effectively start testing the next passing change until the one at the head finished all its jobs.00:12
jeblairmwhahaha: thanks for finding that00:12
clarkbjeblair: I'm reviewing the change and curious if items_to_remove is valid when we check against it in scheduler.py00:14
clarkbjeblair: are we iterating across the list in such a way that we always process item ahead first so it will be in items_to_remove from the last pass through?00:14
clarkbfor item in shared_queue.queue: <- is what determines that I think00:14
jeblairclarkb: yeah... it's a little weird -- it's a queue that's also a tree.  :|  the queue itself is always strictly linear, but your "item ahead" may not be the item immediately preceding you in the queue, it may be one farther up (if the item preceding you is failing).00:16
*** Apoorva has quit IRC00:16
jeblairclarkb: but those two things mean that your "item ahead" does always precede you in the linear queue00:16
clarkbgot it so it will be in the items_to_remove list if appropriate00:17
jeblairclarkb: which means that since we iterate over the linear queue, we will have always processed the item ahead before we get to that item.  and it will either be in the remove list or enqueued.00:17
jeblairclarkb: at least, that's my reasoning.  :)00:17
jeblair(thinking about it graphically -- the order of the items on the status page is the order in the linear queue.  but the little lines don't always point to the one ahead, sometimes they skip items to point further up)00:18
jeblair(but the re-enqueue algorithm goes strictly in order down the page)00:18
*** links has joined #openstack-infra00:20
clarkbya ist an in order traversal of the tree00:20
clarkbjust making sure that is the case00:21
*** dave-mccowan has quit IRC00:21
*** pahuang has joined #openstack-infra00:21
clarkband I've just confirmed assertHistory checks that all the job match and not just a subset so the test lgtm00:22
clarkbactually00:22
clarkbjeblair: does the test need to release a job after the failure to get it started, then reconfigure and make sure it doesn't abort at that point?00:23
jeblairclarkb: i think that's covered by other tests... lemme check00:23
jeblairclarkb: well actually hrm00:24
clarkbmy concern is an abort on top of an abort may just be a noop00:24
clarkbmaybe a wait for settled before the reconfigure is sufficient00:24
clarkband just double check that the current state is no longer abort but queued00:24
openstackgerritMerged openstack-infra/puppet-bup master: Ignore postgres working directory  https://review.openstack.org/51679800:24
jeblairclarkb: job2 for change A crosses the restart00:24
jeblairclarkb: as do both of the jobs for change B00:25
jeblair(both of the re-launched jobs, that is)00:25
clarkboh I see we do wait until settled afterwards then it is just state asserts00:25
clarkbso if reconfigure did abort anything else they would show up as new aborts00:26
clarkbI've +2'd the change. This was a fun one00:26
jeblairclarkb: yep.  since we verify we have exactly 2 aborts -- from the initial pre-reconfigure failure -- i think we're covered.00:26
*** edmondsw has joined #openstack-infra00:26
jeblairclarkb: did you want to look at the override-branch change, https://review.openstack.org/516451 or should i push it through (it has 2x+2)00:28
clarkbjeblair: I think its probably fine and I need to go get my trick or treaters ready00:28
clarkb(the general plan seemed fine)00:28
jeblairclarkb: kk.  i'll +W it then00:28
*** edmondsw has quit IRC00:31
*** thorst has joined #openstack-infra00:31
*** ansiwen[q] has joined #openstack-infra00:33
fungiregarding 516799, nice find!00:34
*** ansiwen[q] is now known as ansiwen_q00:34
*** ansiwen_q is now known as ansiwen[q]00:35
*** thorst has quit IRC00:36
*** sflanigan has joined #openstack-infra00:37
*** sflanigan has joined #openstack-infra00:37
mtreinishfungi: I'm back online down under now, and looking at o-h it looks like you got the subunit worker stuff solved (although with some dropped data over the weekend)00:38
mtreinishdid it solve the mqtt errors too?00:38
*** ansiwen[q] has quit IRC00:40
*** pvaneck has quit IRC00:40
*** xingchao has joined #openstack-infra00:42
openstackgerritMerged openstack-infra/zuul feature/zuulv3: Add support for override-checkout, deprecate override-branch  https://review.openstack.org/51645100:43
mwhahahajeblair: cool so maybe that'll help queue times in the future as well?00:44
openstackgerritJames E. Blair proposed openstack-infra/project-config master: Grafana: add more zuul executor/merger info  https://review.openstack.org/51680000:44
jeblairmwhahaha: yeah i think so00:45
*** edmondsw has joined #openstack-infra00:45
mwhahahaNifty00:45
*** slaweq has quit IRC00:45
openstackgerritJames E. Blair proposed openstack-infra/project-config master: Grafana: fix gerrit event graph  https://review.openstack.org/51680100:46
*** hashar has quit IRC00:47
openstackgerritJames E. Blair proposed openstack-infra/project-config master: Grafana: drop geard workers gauge  https://review.openstack.org/51680200:47
*** hongbin has joined #openstack-infra00:49
openstackgerritJames E. Blair proposed openstack-infra/project-config master: Grafana: add more zuul executor/merger info  https://review.openstack.org/51680000:50
openstackgerritJames E. Blair proposed openstack-infra/project-config master: Grafana: fix gerrit event graph  https://review.openstack.org/51680100:50
openstackgerritJames E. Blair proposed openstack-infra/project-config master: Grafana: drop geard workers gauge  https://review.openstack.org/51680200:50
openstackgerritMerged openstack-infra/zuul feature/zuulv3: On reconfiguration, re-enqueue items at the same position  https://review.openstack.org/51679900:50
*** slaweq has joined #openstack-infra00:50
jeblairi'll restart the scheduler after dinner; it should be installed by then, and it should be less disruptive than waiting till tomorrow00:51
*** LindaWang has joined #openstack-infra00:51
*** markvoelker has joined #openstack-infra00:52
*** aeng has quit IRC00:54
fungimtreinish: well, puppet-subunit2sql is still not deployable with ensure=>latest, but we can discuss remaining solutions at another time. real load issue was addressed with a performance fix to the gear library00:57
fungiit was also impacting the logstash workers in a similar manner00:58
mtreinishah, ok00:59
*** baoli has joined #openstack-infra01:02
*** huanxie has joined #openstack-infra01:02
*** baoli has quit IRC01:06
ianwclarkb: do you remember playing with lxcfs on translate.o.o ?01:07
*** salv-orlando has quit IRC01:08
clarkbNo01:08
*** salv-orlando has joined #openstack-infra01:09
*** xingchao has quit IRC01:09
*** xingchao has joined #openstack-infra01:11
*** bobh has joined #openstack-infra01:11
*** salv-orlando has quit IRC01:13
*** xingchao has quit IRC01:16
*** xingchao has joined #openstack-infra01:18
openstackgerritIan Wienand proposed openstack-infra/system-config master: Add new backup host to puppet  https://review.openstack.org/51614801:19
openstackgerritIan Wienand proposed openstack-infra/system-config master: Backup zuulv3 with bup  https://review.openstack.org/51615701:19
openstackgerritIan Wienand proposed openstack-infra/system-config master: Remove ci-backup-rs-ord.openstack.org  https://review.openstack.org/51615901:19
jeblairconfig-core: https://review.openstack.org/516800 and 2 children will make zuul grafana dashboard shinier and more useful01:19
*** xingchao has quit IRC01:20
ianwinfra-root: would everyone agree that the follow host is unused and can be removed01:20
ianw fd76ccd1-3483-4345-9683-9b23afa0b571 | ci-backup-rs-ord.openstack.org    | ACTIVE | public=198.101.148.81, 2001:4801:7806:45:4240:b6ff:fe14:19b8; private=10.181.100.2    |                                         | 15 GB Classic v1 |01:20
ianwthe real ci-backup-rs-ord.openstack.org being 23.253.166.5901:21
fungiianw: yes, that was the older one which got replaced01:22
ianwok, i'll delete it then, as it has no volumes attached and isn't doing anything01:22
*** slaweq has quit IRC01:23
*** slaweq has joined #openstack-infra01:25
*** markvoelker has quit IRC01:26
dmsimardjeblair: commented on https://review.openstack.org/#/c/516800/01:26
dmsimardjeblair: hrm, looking again, I'm not sure how it works if you specify a span of >12, maybe it's relative or something01:28
*** edmondsw has quit IRC01:29
dmsimardyup, nevermind that -- looking at places where we had a span of >12, grafana folded the graphs automatically .. for example in the first panel the spans are 2 each and there's 6 graph per row01:30
*** xingchao has joined #openstack-infra01:30
*** xingchao has quit IRC01:31
*** bobh has quit IRC01:31
*** bobh has joined #openstack-infra01:32
*** zhurong has joined #openstack-infra01:33
*** bobh has quit IRC01:33
*** smatzek has joined #openstack-infra01:33
*** xinliang has quit IRC01:37
*** xingchao has joined #openstack-infra01:37
openstackgerritMerged openstack-infra/project-config master: Grafana: add more zuul executor/merger info  https://review.openstack.org/51680001:37
*** xingchao has quit IRC01:38
dmsimardianw: re: iptables within the bridge subnet01:38
dmsimardianw: context was from earlier in the day with inc001:39
*** dingyichen has joined #openstack-infra01:39
openstackgerritMerged openstack-infra/project-config master: Grafana: fix gerrit event graph  https://review.openstack.org/51680101:39
openstackgerritMerged openstack-infra/project-config master: Grafana: drop geard workers gauge  https://review.openstack.org/51680201:39
dmsimardhe is working on a multi node set up and apparently those rules were necessary -- see https://review.openstack.org/#/c/512779/01:39
*** sflanigan has quit IRC01:40
*** pahuang has quit IRC01:40
dmsimardthe exact details escape me, but we had a discussion around it earlier today.. let me get some links01:41
*** liujiong_lj has joined #openstack-infra01:41
ianwdmsimard: it's ok ... just sometimes (depending on kernel & distro) you have to ensure bridges actually use iptables with a proc flag.  but this is ovs so i'm sure it's fine01:42
*** xingchao has joined #openstack-infra01:42
dmsimardhttp://eavesdrop.openstack.org/irclogs/%23openstack-infra/%23openstack-infra.2017-10-31.log.html#t2017-10-31T16:53:4301:42
*** psachin has joined #openstack-infra01:43
dmsimardso https://review.openstack.org/#/c/516757/ has +4, just need +W :)01:43
dmsimardand then need +3 on iptables persistence https://review.openstack.org/#/c/513943/ with the matching integration tests https://review.openstack.org/#/c/513934/01:44
*** baoli has joined #openstack-infra01:44
*** cuongnv has joined #openstack-infra01:46
*** xingchao has quit IRC01:46
ianwdmsimard: you can +w it if you want ... i just thought it was something we should watch a bit to make sure no unintended consequences01:47
*** smatzek has quit IRC01:48
*** felipemonteiro_ has joined #openstack-infra01:48
*** smatzek has joined #openstack-infra01:48
*** xinliang has joined #openstack-infra01:49
*** xinliang has quit IRC01:49
*** xinliang has joined #openstack-infra01:49
dmsimardianw: pretty safe, inc0 also had his patch use Depends-On to properly set up the rules01:50
*** xingchao has joined #openstack-infra01:51
* ianw notes dmsimard's famous last words :)01:51
dmsimardI mean, we've done worse01:51
dmsimardlike merging a _projects typo01:51
* dmsimard cough01:51
ianwindeed :)01:51
*** smatzek has quit IRC01:52
*** namnh has joined #openstack-infra01:53
*** kiennt26 has joined #openstack-infra01:53
*** sflanigan has joined #openstack-infra01:53
*** sflanigan has joined #openstack-infra01:53
*** pahuang has joined #openstack-infra01:54
*** xingchao has quit IRC01:55
*** yamahata has quit IRC01:56
*** slaweq has quit IRC01:59
dmsimardI don't know how you people run your log pruning, our first one just finished in ~7 days and only have a 2TB volume (was at 1.5TB used)02:01
dmsimardI guess our volume I/O kind of sucks, though.02:01
openstackgerritMerged openstack-infra/zuul-jobs master: Authorize the multi-node-bridge network in iptables if there's one  https://review.openstack.org/51675702:04
*** kiennt26 has quit IRC02:06
*** slaweq has joined #openstack-infra02:06
pabelangerdmsimard: we'd discussed hashing by date, to make it easier to delete things in bulk, could do the same in RDO02:06
*** kiennt26 has joined #openstack-infra02:06
*** baoli has quit IRC02:06
dmsimardpabelanger: the main problem is that you first crawl all files, delete old ones -- and then delete directories that are empty02:06
dmsimardit's a very safe approach02:06
kfox1111so, our multinode jobs seem to be running differently in v3.02:07
dmsimardbut ideally you wouldn't need to crawl all files -- but I get that it's otherwise kind of hard to base deletion purely on directory mtime02:07
kfox1111in v2, only the master got the script started on it. in v3, itseems like the slaves also run the main script?02:07
dmsimardkfox1111: what's "main script" ?02:07
kfox1111is there a way to revert to the old behavior?02:07
kfox1111we have a script in kolla-kubernetes/tools/setup_gate.sh02:07
dmsimardkfox1111: the jobs run playbooks, you have a host definition in that playbook (ex: "all", "primary", etc), the playbook will run against the hosts matching that definition.02:08
kfox1111so we need to tweak the new job to run just primary?02:08
dmsimardkfox1111: it depends what you're expecting -- what's the job in question ?02:08
kfox1111legacy-kolla-kubernetes-deploy-centos-binary-2-ceph-multi02:09
kfox1111I'm expecting the previous behavior of the script starting only on the master, and it setting the slaves up.02:09
dmsimardkfox1111: this is what runs: http://git.openstack.org/cgit/openstack-infra/openstack-zuul-jobs/tree/playbooks/legacy/kolla-kubernetes-deploy-centos-binary-2-ceph-multi/run.yaml02:09
dmsimardkfox1111: I guess the part you don't expect to run on all nodes is "tools/setup_gate.sh deploy centos binary ceph-multi centos-7-2-node shell 2 gate"02:10
kfox1111ok. cool. should I just tweak hosts: there to be primary?02:10
kfox1111right.02:10
dmsimardkfox1111: ok, this is what your inventory looks like: http://logs.openstack.org/27/516727/3/check/legacy-kolla-kubernetes-deploy-centos-binary-2-ceph-multi/536da46/zuul-info/inventory.yaml02:11
dmsimardkfox1111: if everything else looks fine, you'd probably just want to split that last task into another play and have it target only "primary"02:12
dmsimardmakes sense ?02:12
kfox1111yeah. I think so.02:12
kfox1111if I split the task into a different file, do I need to include it somewhere else to get it to work?02:12
dmsimardkfox1111: you don't need to split it into another file, it can be in the same file, just different plays -- like this for example is two plays: https://git.openstack.org/cgit/openstack-infra/project-config/tree/playbooks/base/pre.yaml02:13
kfox1111ah. ok. thanks. :)02:14
dmsimardkfox1111: we can merge a fix for you inside the legacy openstack-zuul-jobs, but I'd recommend looking into migrating those in-tree inside kolla-k8s so you're able to be independant in playing with your things02:14
kfox1111yeah. gotta get it fixed quick. then can work on migrating more perminantly.02:15
kfox1111so, something like this?02:18
openstackgerritKevin Fox proposed openstack-infra/openstack-zuul-jobs master: kolla-kubernetes multinode gate fix  https://review.openstack.org/51681402:18
*** iyamahat has quit IRC02:20
*** gildub has quit IRC02:20
*** markvoelker has joined #openstack-infra02:23
dmsimardkfox1111: looks sane to me, added small comment02:24
openstackgerritKevin Fox proposed openstack-infra/openstack-zuul-jobs master: kolla-kubernetes multinode gate fix  https://review.openstack.org/51681402:27
kfox1111k. tweaked.02:27
openstackgerritDavid Moreau Simard proposed openstack-infra/project-config master: Re-order Zuul graphs  https://review.openstack.org/51681602:28
dmsimardjeblair: ^ a small nit02:29
dmsimardkfox1111: +202:29
kfox1111cool. thanks for the help.02:30
jeblairdmsimard: ++02:32
jeblairi love that we have 18.000 mergers02:32
dmsimardthat's a lot of mergers02:32
dmsimardDo we really need all those ?02:32
*** thorst has joined #openstack-infra02:32
jeblairdmsimard: it includes the executors too02:33
dmsimardoh02:33
jeblairso we have 10 executors and 8 dedicated mergers02:33
jeblair(the dedicated mergers are small hosts)02:33
jeblairbut to answer your question -- i'm not sure -- that's one of the things i want to use these new stats to find out02:33
dmsimardit looks like the executors are pretty loaded at times, it'll be interesting to keep an eye on that02:34
dmsimardare the executors their own zuul merger or something somehow ? or do they feed from just any merger ?02:34
jeblairdmsimard: they are their own.02:35
dmsimardwhat's the other 8 do ? :)02:35
jeblairdmsimard: speculative configuration loading and verifying that changes can merge02:35
dmsimardoh, makes sense02:35
dmsimardpurpose built software written from scratch, it rocks02:36
jeblairi'm going to restart the scheduler now02:36
*** thorst has quit IRC02:37
*** slaweq has quit IRC02:38
jeblair(it looks like the top tripleo change in the gate is dead anyway, so this is probably a net benefit)02:38
*** salv-orlando has joined #openstack-infra02:39
*** dhinesh has quit IRC02:40
*** dhinesh has joined #openstack-infra02:40
jeblairfor fun, watch the merge queue graph now02:42
jeblair(zoomed in to 'last 5m')02:43
jeblairthat's all the cat jobs needed to get the initial configuration02:43
openstackgerritMatthew Thode proposed openstack/diskimage-builder master: Make python changes more reliable  https://review.openstack.org/51681902:44
jeblairre-enqueueing changes now02:44
*** dhinesh has quit IRC02:45
*** salv-orlando has quit IRC02:45
SamYapleive *almost* convinced the team to do zuulv3 for our internal openstack deployment testing (currently there is some syntax checks..... but thats it)02:45
dmsimardjeblair: 3k? wtf?02:45
SamYapleso i might have some hands on operation experincewith it at a bit of scale soon02:45
dmsimardjeblair: is that right ?02:46
jeblairdmsimard: no, more like 4k actually.02:46
dmsimardjeblair: seems like a lot, is there a lot of implicit "jobs" in there or are all those in zuulv3.o.o status page ?02:46
pabelangerjeblair: question, why didn't infracloud-chocolate release ready nodes?02:47
dmsimardSamYaple: keep in mind that zuul v3 is not "released" yet so while it works there might be short deprecations or things like that.02:47
jeblairSamYaple: neat!  there are still definitely rough edges for new deployments... and, well, basically no deployment documentation, but we're working on it and i'm sure we'd love your help with both of those.  :)02:47
dmsimardSamYaple: what do you plan on deploying it with ?02:48
pabelangerinfracloud-vanilla did, but chocolate seems to still have an issue02:48
jeblairdmsimard: those are 'cat' jobs, which are basically, "check out this branch of this repo and give me the zuul.yaml files you find"  we have a lot of project*branch combinations, and zuul has to check every one of them to builds its configuration.02:48
jeblairdmsimard: the 18 mergers do that in about 3 minutes.02:48
dmsimardjeblair: oh, I didn't realize what you meant by cat jobs02:49
jeblairthe name of that job in gearman is 'merger:cat'02:49
*** slaweq has joined #openstack-infra02:49
*** ijw has quit IRC02:50
dmsimardmeow02:50
dmsimardI'm off, see ya tomorrow :)02:50
*** ijw has joined #openstack-infra02:50
*** stakeda has joined #openstack-infra02:50
*** ijw has quit IRC02:51
openstackgerritMatthew Thode proposed openstack/diskimage-builder master: Make preinstall.d more deterministic  https://review.openstack.org/51682102:53
jeblairpabelanger: i don't know.  it looks complicated.  maybe let's look into it with shrews tomorrow?02:53
*** zhurong has quit IRC02:54
pabelangersure02:54
*** yamahata has joined #openstack-infra02:55
jeblairpabelanger, Shrews: one thing i see that's wrong is this:02:55
*** huanxie has quit IRC02:55
jeblair| 0000632928 | infracloud-chocolate   | nova     | centos-7         | None                                 | failed   | 00:06:05:31 | locked   | None                                               | None            | None            | None                                   | 22       | nl02.openstack.org-29406-PoolWorker.infracloud-chocolate-main   | 100-0000802736 | None     | None    |02:55
jeblairthat's a node just sitting there in failed state, not being deleted.  so it's holding the request open.  the request is for 2 nodes, one of which is ready.02:56
*** markvoelker has quit IRC02:57
jeblairthat node entry should be deleted.  it's not actionable.02:57
jeblairnodepool.task_manager.ManagerStoppedException: Manager infracloud-chocolate is no longer running02:58
jeblairperhaps that's why it's not being deleted02:58
openstackgerritMerged openstack-infra/project-config master: Re-order Zuul graphs  https://review.openstack.org/51681602:59
*** dtantsur|afk has quit IRC03:01
*** bobh has joined #openstack-infra03:01
*** gildub has joined #openstack-infra03:01
SamYapledmsimard: i plan on deploying it with sheer power of will03:02
SamYaplejeblair: mrhillsman has apparently deployed zuulv3 to some some sucess already03:02
*** armax has quit IRC03:03
pabelangerjeblair: Hmm, I rolled up to 60 max-servers then back to 56 by manually changing nodepool.yaml, possible that done something with our manager for infracloud-chocolate03:06
pabelangerhopefully not03:06
openstackgerritMatthew Thode proposed openstack/diskimage-builder master: Enable support for Gentoo overlays  https://review.openstack.org/51682303:07
*** yamamoto has joined #openstack-infra03:08
*** felipemonteiro_ has quit IRC03:10
*** bobh has quit IRC03:13
*** edmondsw has joined #openstack-infra03:14
*** edmondsw has quit IRC03:19
*** hongbin has quit IRC03:19
*** kiennt26 has quit IRC03:20
*** kiennt26 has joined #openstack-infra03:21
*** slaweq has quit IRC03:23
*** ijw has joined #openstack-infra03:24
*** zhurong has joined #openstack-infra03:27
*** rosmaita has quit IRC03:28
*** slaweq has joined #openstack-infra03:30
*** salv-orlando has joined #openstack-infra03:31
*** thorst has joined #openstack-infra03:33
*** salv-orl_ has joined #openstack-infra03:36
*** thorst has quit IRC03:38
*** salv-orlando has quit IRC03:40
ianwclarkb: i don't think #pypa channel is logged, but i got some very good info on over-installing system packages just now from dstufft.  i'm going to write it all up in that github issue03:41
*** salv-orl_ has quit IRC03:43
*** markvoelker has joined #openstack-infra03:54
*** slaweq has quit IRC04:02
*** gcb_ has quit IRC04:04
*** slaweq has joined #openstack-infra04:05
*** gcb_ has joined #openstack-infra04:05
*** coolsvap has joined #openstack-infra04:16
openstackgerritgongysh proposed openstack-infra/project-config master: Remove tacker legacy tripleo job  https://review.openstack.org/51683804:23
*** gongysh has joined #openstack-infra04:23
*** ijw has quit IRC04:25
*** ykarel has joined #openstack-infra04:26
*** jascott1 has quit IRC04:27
*** jascott1 has joined #openstack-infra04:28
*** markvoelker has quit IRC04:28
*** jascott1 has quit IRC04:32
*** janki has joined #openstack-infra04:33
*** jascott1 has joined #openstack-infra04:33
*** ramishra has joined #openstack-infra04:37
*** gildub has quit IRC04:38
*** slaweq has quit IRC04:38
*** udesale has joined #openstack-infra04:39
*** slaweq has joined #openstack-infra04:45
*** bswartz has quit IRC04:48
*** robled has quit IRC04:53
*** dhinesh has joined #openstack-infra04:57
*** salv-orlando has joined #openstack-infra05:03
*** edmondsw has joined #openstack-infra05:03
openstackgerritOpenStack Proposal Bot proposed openstack/os-testr master: Updated from global requirements  https://review.openstack.org/50364505:04
*** luzC has quit IRC05:05
*** luzC has joined #openstack-infra05:06
*** edmondsw has quit IRC05:07
*** salv-orlando has quit IRC05:07
*** huanxie has joined #openstack-infra05:10
*** armaan has joined #openstack-infra05:12
*** ijw has joined #openstack-infra05:14
*** ijw has quit IRC05:16
*** dsariel__ has joined #openstack-infra05:16
*** slaweq has quit IRC05:18
*** slaweq has joined #openstack-infra05:19
*** ijw has joined #openstack-infra05:22
ramishrait seems zuul is voting -1 at times inspite of all jobs finishing successfully. https://review.openstack.org/#/c/516710/, something wrong?05:24
*** markvoelker has joined #openstack-infra05:24
*** ijw has quit IRC05:27
*** armaan has quit IRC05:29
*** janki has quit IRC05:30
*** gildub has joined #openstack-infra05:33
AJaegerramishra: press the "Toggle CI" button at the bottom to see full information05:33
AJaegerramishra: I see some errors like MERGER_FAILURE that came from a full disk, this is fixed now. So, please add a "recheck" comment.05:34
ramishraAJaeger: Ok, thanks!05:34
*** thorst has joined #openstack-infra05:34
openstackgerritMerged openstack-infra/openstack-zuul-jobs master: kolla-kubernetes multinode gate fix  https://review.openstack.org/51681405:35
AJaegerconfig-core, please review https://review.openstack.org/516397 to fix tarball generation05:35
*** sridhar_ram has joined #openstack-infra05:36
*** aeng has joined #openstack-infra05:36
*** ijw has joined #openstack-infra05:36
*** armaan has joined #openstack-infra05:37
*** thorst has quit IRC05:39
openstackgerritMatthew Thode proposed openstack/diskimage-builder master: Enable support for Gentoo overlays  https://review.openstack.org/51682305:43
*** janki has joined #openstack-infra05:48
openstackgerritMatthew Thode proposed openstack/diskimage-builder master: Add the groundwork for musl profile support  https://review.openstack.org/51684405:50
*** cshastri has joined #openstack-infra05:50
openstackgerritMatthew Thode proposed openstack/diskimage-builder master: Enable support for Gentoo overlays  https://review.openstack.org/51682305:53
*** markvoelker has quit IRC05:58
*** markvoelker has joined #openstack-infra06:01
*** huanxie has quit IRC06:01
AJaegerconfig-core, please review https://review.openstack.org/516397 to fix tarball generation and https://review.openstack.org/516610 for the requirements propose job06:03
*** ijw has quit IRC06:04
*** salv-orlando has joined #openstack-infra06:04
*** markvoelker has quit IRC06:06
*** salv-orlando has quit IRC06:08
ianwAJaeger: 516397 ... i feel like we discussed that in the meeting?06:10
ianwover removing zuul-cloner from the base job all together06:10
AJaegerianw: yes, that is related - but we need this now to not break jobs. Once mordred's changes are in, we might be able to get rid of this06:12
*** udesale__ has joined #openstack-infra06:12
AJaegerthanks for reviews, ianw06:14
*** udesale has quit IRC06:15
*** udesale__ has quit IRC06:18
*** gongysh has quit IRC06:19
*** udesale__ has joined #openstack-infra06:19
ykarelIs there some way(apart from parsing status.json) to get the status of a pipeline(For ex: post/release/release-post etc) run in zuulv3 for a particular commit.06:20
ykarelAJaeger, ianw ^^06:20
*** witek has quit IRC06:20
openstackgerritAndreas Jaeger proposed openstack-infra/project-config master: Upload artifacts only on success  https://review.openstack.org/51685106:20
AJaegerykarel: not that I'm aware of06:21
ianwyeah i think REST-y apis are on the way06:21
*** udesale has joined #openstack-infra06:21
*** threestrands has quit IRC06:22
ykarelAJaeger, Ok ianw: any link?06:22
AJaegerianw: what do you think about 516851 ?06:23
*** witek has joined #openstack-infra06:23
*** slaweq has quit IRC06:23
*** udesale__ has quit IRC06:23
AJaegerykarel: check whether the openstack-infra/zuul repo has any changes for that. Might not be there yet...06:23
ykarelAJaeger, Ok06:24
*** slaweq has joined #openstack-infra06:25
*** aeng has quit IRC06:25
ianwykarel: i'm thinking of the dashboard stuff mentioned in https://etherpad.openstack.org/p/zuulv3-roadmap06:31
*** ihrachys_ has joined #openstack-infra06:32
*** ihrachys has quit IRC06:32
ykarelianw, Ok will check, Thanks06:33
openstackgerritNam Nguyen Hoai proposed openstack-infra/openstack-zuul-jobs master: Remove Congress legacy jobs  https://review.openstack.org/51044006:34
*** kukacz has quit IRC06:36
*** annp has joined #openstack-infra06:37
openstackgerritAndreas Jaeger proposed openstack-infra/openstack-zuul-jobs master: Fix periodic neutron jobs  https://review.openstack.org/51685606:38
*** gongysh has joined #openstack-infra06:38
openstackgerritAndreas Jaeger proposed openstack-infra/project-config master: Fix networking-odl/-bagpipe periodic jobs  https://review.openstack.org/51685806:40
AJaegerianw: and two more changes for neutron that might be temporary ^06:40
ianwAJaeger: nit on the whitespace06:42
openstackgerritAndreas Jaeger proposed openstack-infra/openstack-zuul-jobs master: Fix periodic neutron jobs  https://review.openstack.org/51685606:43
AJaegerianw: thanks - fixed06:43
*** kukacz has joined #openstack-infra06:43
*** dhinesh has quit IRC06:44
*** d0ugal_ has quit IRC06:45
openstackgerritMerged openstack-infra/project-config master: Increase timeout for requirements propose job  https://review.openstack.org/51661006:49
*** edmondsw has joined #openstack-infra06:51
*** links has quit IRC06:53
openstackgerritAndreas Jaeger proposed openstack-infra/openstack-zuul-jobs master: Fix periodic neutron jobs  https://review.openstack.org/51685606:54
openstackgerritAndreas Jaeger proposed openstack-infra/openstack-zuul-jobs master: Rework periodic stable docs jobs  https://review.openstack.org/51686606:54
*** d0ugal_ has joined #openstack-infra06:55
*** edmondsw has quit IRC06:56
*** jtomasek has joined #openstack-infra06:56
*** slaweq has quit IRC06:59
*** markvoelker has joined #openstack-infra07:02
*** slaweq has joined #openstack-infra07:03
*** salv-orlando has joined #openstack-infra07:05
*** pgadiya has joined #openstack-infra07:07
*** dhajare has joined #openstack-infra07:08
*** salv-orlando has quit IRC07:09
*** spectr-RH has joined #openstack-infra07:12
*** spectr has quit IRC07:13
openstackgerritMerged openstack-infra/openstack-zuul-jobs master: Create build-openstack-puppet-tarball  https://review.openstack.org/51598007:17
openstackgerritMerged openstack-infra/openstack-zuul-jobs master: Remove publish-openstack-puppet-branch-tarball from post pipeline  https://review.openstack.org/51598207:17
openstackgerritMerged openstack-infra/openstack-zuul-jobs master: Remove project-team-guide-publish  https://review.openstack.org/51405407:17
*** jascott1 has quit IRC07:18
*** jascott1 has joined #openstack-infra07:19
*** aviau has quit IRC07:19
*** aviau has joined #openstack-infra07:19
*** links has joined #openstack-infra07:20
*** robled has joined #openstack-infra07:21
openstackgerritMerged openstack/diskimage-builder master: Update proliant-tools to support Gen10 Proliant servers  https://review.openstack.org/50935907:22
openstackgerritMerged openstack-infra/openstack-zuul-jobs master: Cleanup ironic-inspector legacy jobs  https://review.openstack.org/51573807:22
*** Dinesh_Bhor has joined #openstack-infra07:23
*** jascott1 has quit IRC07:23
openstackgerritTristan Cacqueray proposed openstack-infra/zuul feature/zuulv3: web: add /tenants route  https://review.openstack.org/50326807:24
openstackgerritTristan Cacqueray proposed openstack-infra/zuul feature/zuulv3: web: add /{tenant}/status route  https://review.openstack.org/50326907:25
*** salv-orlando has joined #openstack-infra07:25
openstackgerritTristan Cacqueray proposed openstack-infra/zuul feature/zuulv3: web: add /{tenant}/jobs route  https://review.openstack.org/50327007:27
*** zhurong has quit IRC07:29
openstackgerritTristan Cacqueray proposed openstack-infra/zuul feature/zuulv3: web: add /{tenant}/builds route  https://review.openstack.org/46656107:30
openstackgerritTristan Cacqueray proposed openstack-infra/zuul feature/zuulv3: web: make console-stream tenant scoped  https://review.openstack.org/50545207:30
*** huanxie has joined #openstack-infra07:30
openstackgerritTristan Cacqueray proposed openstack-infra/zuul feature/zuulv3: web: add /{source}/{project}.pub route  https://review.openstack.org/50253007:32
openstackgerritMerged openstack-infra/project-config master: Remove publish-openstack-puppet-branch-tarball  https://review.openstack.org/51598407:34
openstackgerritJens Harbott (frickler) proposed openstack-infra/devstack-gate master: Revert "Work around cffi install error"  https://review.openstack.org/51687207:35
*** markvoelker has quit IRC07:35
*** thorst has joined #openstack-infra07:35
openstackgerritJean-Philippe Evrard proposed openstack-infra/project-config master: Add os_congress role to openstack-ansible  https://review.openstack.org/51687407:39
*** zhurong has joined #openstack-infra07:39
*** thorst has quit IRC07:40
*** jaosorior has joined #openstack-infra07:42
*** rcernin has quit IRC07:42
*** slaweq has quit IRC07:43
*** kiennt26 has quit IRC07:44
*** kiennt26 has joined #openstack-infra07:45
*** sridhar_ram has quit IRC07:45
*** shardy_afk is now known as shardy07:47
*** slaweq has joined #openstack-infra07:47
*** hashar has joined #openstack-infra07:48
evrardjpit looks like I have to do something with a Zuul administrator: https://review.openstack.org/#/c/516874 ? What is the procedure?07:48
*** tesseract has joined #openstack-infra07:48
openstackgerritMerged openstack-infra/openstack-zuul-jobs master: Move publish-openstack-puppet-branch-tarball into ozj  https://review.openstack.org/51598107:50
openstackgerritMerged openstack-infra/openstack-zuul-jobs master: Revert "Remove publish-openstack-puppet-branch-tarball from post pipeline"  https://review.openstack.org/51598307:51
*** slaweq_ has joined #openstack-infra07:51
AJaegerevrardjp: read the complete creators guide at http://docs.openstack.org/infra/manual/creators.html - you need to split the change in two07:52
evrardjpthanks07:52
*** jbadiapa has quit IRC08:02
openstackgerritJean-Philippe Evrard proposed openstack-infra/project-config master: Add os_congress role to openstack-ansible  https://review.openstack.org/51687408:06
openstackgerritJean-Philippe Evrard proposed openstack-infra/project-config master: Add os_congress role to openstack-ansible  https://review.openstack.org/51688408:06
openstackgerritAndreas Jaeger proposed openstack-infra/project-config master: Fix networking periodic jobs  https://review.openstack.org/51685808:06
openstackgerritJean-Philippe Evrard proposed openstack-infra/project-config master: Add os_congress role to openstack-ansible  https://review.openstack.org/51687408:06
openstackgerritAndreas Jaeger proposed openstack-infra/project-config master: Fix networking periodic jobs  https://review.openstack.org/51685808:07
openstackgerritJean-Philippe Evrard proposed openstack-infra/project-config master: Add os_congress role to openstack-ansible  https://review.openstack.org/51688408:08
openstackgerritJean-Philippe Evrard proposed openstack-infra/project-config master: Add os_congress role to openstack-ansible  https://review.openstack.org/51687408:09
*** martinkopec has joined #openstack-infra08:10
fricklerianw: AJaeger: is there any reason not to merge https://review.openstack.org/516711 and https://review.openstack.org/516694 afterwards? makes me suspicous to see double +2 but no +W08:12
openstackgerritAndreas Jaeger proposed openstack-infra/project-config master: Fix openstack-infra publishing  https://review.openstack.org/51601008:12
AJaegerargh, merge conflict. ianw, clarkb do you want to review again, please? ^08:12
AJaegerfrickler: that's a neutron job - and we wait for neutron liaison to +1 first beforew we +A08:12
AJaegersee https://wiki.openstack.org/wiki/CrossProjectLiaisons#Infra for liaisons we wait for08:13
fricklerAJaeger: ah, that makes sense, thanks08:13
AJaegerso, approved the first - and we can approve https://review.openstack.org/#/c/516694/ after recheck08:14
AJaegerfrickler: do you want to review https://review.openstack.org/#/c/516010/ ? Had already two +2s and then a merge conflict ;808:14
* AJaeger will now be offline, back later...08:14
*** armaan has quit IRC08:15
*** e0ne has joined #openstack-infra08:17
*** pcaruana has joined #openstack-infra08:17
openstackgerritMerged openstack-infra/project-config master: Remove legacy-grenade-dsvm-neutron-nova-next  https://review.openstack.org/51671108:17
*** Goneri has joined #openstack-infra08:18
*** slaweq has quit IRC08:19
*** armaan has joined #openstack-infra08:19
openstackgerritJens Harbott (frickler) proposed openstack-infra/openstack-zuul-jobs master: Do not run legacy-grenade-dsvm-designate-pdns4 on stable/ocata  https://review.openstack.org/51688508:19
*** kjackal_ has quit IRC08:20
*** slaweq has joined #openstack-infra08:22
*** dtantsur has joined #openstack-infra08:23
*** xarses has joined #openstack-infra08:23
*** xarses_ has joined #openstack-infra08:26
*** xarses has quit IRC08:28
*** spectr-RH has quit IRC08:32
*** markvoelker has joined #openstack-infra08:32
*** spectr has joined #openstack-infra08:33
openstackgerritKazunori Shinohara proposed openstack-infra/project-config master: Add nodejs4-jobs to heat-dashboard project  https://review.openstack.org/51688908:33
openstackgerritKazunori Shinohara proposed openstack-infra/project-config master: Add nodejs4-jobs to heat-dashboard project  https://review.openstack.org/51688908:34
*** salv-orlando has quit IRC08:35
*** salv-orl_ has joined #openstack-infra08:36
*** kjackal_ has joined #openstack-infra08:38
*** edmondsw has joined #openstack-infra08:39
*** salv-orl_ has quit IRC08:40
*** rcernin has joined #openstack-infra08:42
*** d0ugal_ has quit IRC08:42
*** edmondsw has quit IRC08:44
*** d0ugal has joined #openstack-infra08:44
*** d0ugal has quit IRC08:44
*** d0ugal has joined #openstack-infra08:44
*** dingyichen has quit IRC08:49
*** csomerville has joined #openstack-infra08:58
*** cody-somerville has quit IRC08:58
*** slaweq has quit IRC08:59
*** ccamacho has quit IRC09:00
*** xarses_ has quit IRC09:00
*** jpich has joined #openstack-infra09:02
*** priteau has joined #openstack-infra09:03
*** markvoelker has quit IRC09:06
*** jistr_ is now known as jistr09:07
*** gouthamr has quit IRC09:07
*** panda|ruck is now known as panda|ruck|bbl09:08
yamamotodocs.o.o doesn't seem to have doc changes in https://review.openstack.org/#/c/515535/ . is it a known issue?09:11
*** esberglu_ has joined #openstack-infra09:11
*** esberglu has quit IRC09:11
*** zhurong has quit IRC09:16
openstackgerritYAMAMOTO Takashi proposed openstack-infra/infra-manual master: zuul v3: Include file extension in playbook path  https://review.openstack.org/51689609:18
*** derekh has joined #openstack-infra09:18
*** yamamoto has quit IRC09:20
*** ralonsoh has joined #openstack-infra09:20
*** ralonsoh has quit IRC09:20
openstackgerritTristan Cacqueray proposed openstack-infra/zuul feature/zuulv3: web: add /{tenant}/status route  https://review.openstack.org/50326909:28
openstackgerritTristan Cacqueray proposed openstack-infra/zuul feature/zuulv3: web: add /{tenant}/jobs route  https://review.openstack.org/50327009:28
openstackgerritTristan Cacqueray proposed openstack-infra/zuul feature/zuulv3: web: add /{tenant}/builds route  https://review.openstack.org/46656109:28
openstackgerritTristan Cacqueray proposed openstack-infra/zuul feature/zuulv3: web: make console-stream tenant scoped  https://review.openstack.org/50545209:28
openstackgerritTristan Cacqueray proposed openstack-infra/zuul feature/zuulv3: web: add /{source}/{project}.pub route  https://review.openstack.org/50253009:28
*** lucas-afk is now known as lucasagomes09:31
*** gmann is now known as gmann_afk09:31
*** lifeless has quit IRC09:32
*** yamamoto has joined #openstack-infra09:34
*** thorst has joined #openstack-infra09:36
*** nicolasbock has joined #openstack-infra09:37
*** salv-orlando has joined #openstack-infra09:37
*** ccamacho has joined #openstack-infra09:37
*** ralonsoh has joined #openstack-infra09:39
*** thorst has quit IRC09:41
*** yamahata has quit IRC09:45
*** gongysh has quit IRC09:47
openstackgerritOpenStack Proposal Bot proposed openstack/os-testr master: Updated from global requirements  https://review.openstack.org/50364509:52
*** jkilpatr has joined #openstack-infra09:56
*** mat128 has joined #openstack-infra09:56
*** links has quit IRC09:57
*** electrofelix has joined #openstack-infra09:57
openstackgerritTristan Cacqueray proposed openstack-infra/nodepool feature/zuulv3: Refactor provider config to driver module  https://review.openstack.org/48838409:58
openstackgerritTristan Cacqueray proposed openstack-infra/nodepool feature/zuulv3: Implement a static driver for Nodepool  https://review.openstack.org/46862409:58
*** kiennt26 has quit IRC09:58
openstackgerritTristan Cacqueray proposed openstack-infra/nodepool feature/zuulv3: Add username to build and upload information  https://review.openstack.org/45396809:59
*** alexchadin has joined #openstack-infra10:00
*** LindaWang has quit IRC10:00
*** markvoelker has joined #openstack-infra10:03
*** ykarel is now known as ykarel|lunch10:04
dtantsurhey folks! is it possible to somehow remove the ironic release from pypi? https://pypi.python.org/pypi/ironic/6.3.010:06
*** salv-orlando has quit IRC10:07
dtantsurwe were not supposed to publish there, it's probably an artifact of the zuul v3 transition10:07
*** salv-orlando has joined #openstack-infra10:07
*** cuongnv has quit IRC10:08
*** jkilpatr has quit IRC10:11
*** liujiong_lj has quit IRC10:11
*** salv-orlando has quit IRC10:12
openstackgerritTristan Cacqueray proposed openstack-infra/nodepool feature/zuulv3: Implement an OpenContainer driver  https://review.openstack.org/46875310:12
*** pgadiya has quit IRC10:12
*** namnh has quit IRC10:12
openstackgerritTristan Cacqueray proposed openstack-infra/nodepool feature/zuulv3: builder: do not cleanup image for driver not managing image  https://review.openstack.org/51692010:14
*** gridinv has quit IRC10:16
*** LindaWang has joined #openstack-infra10:17
ianwdtantsur: in a word, i think no.  missing releases or things going backwards always ends badly10:25
*** pgadiya has joined #openstack-infra10:26
dtantsurianw: hmm, then what should we do about it? I don't want people to think that's the only ironic release we ever published..10:26
*** gridinv has joined #openstack-infra10:27
ianwdtantsur: oh, ok, so it's the only thing ever released ...10:29
ianwand you definitely don't want it there?10:30
*** boden has joined #openstack-infra10:31
dtantsurianw: I think we don't release servers to pypi, do we?10:32
dtantsurI don't like it, but it seems a (semi-)offical policy10:32
ianwi guess not.  i'll delete it via the ui10:33
ianwdtantsur: ok, i think that's back the way it was10:34
*** ldnunes has joined #openstack-infra10:34
*** pgadiya has quit IRC10:36
*** markvoelker has quit IRC10:37
*** Goneri has quit IRC10:38
dtantsurthanks ianw10:41
ianwdtantsur: thanks for pointing it out, i wonder if any others escaped?  you're right, having one release in pypi is going to be quite confusing10:43
*** pgadiya has joined #openstack-infra10:48
*** smatzek has joined #openstack-infra10:50
*** udesale has quit IRC10:50
*** kjackal_ has quit IRC10:52
*** armaan has quit IRC10:52
*** armaan has joined #openstack-infra10:53
*** Goneri has joined #openstack-infra10:53
*** rfolco_ has joined #openstack-infra10:53
*** makowals has quit IRC10:54
*** pbourke has quit IRC10:54
*** yamamoto has quit IRC10:56
*** pbourke has joined #openstack-infra10:56
*** rcernin has quit IRC10:57
*** hashar is now known as hasharAway10:58
*** gildub has quit IRC10:58
*** sambetts|afk is now known as sambetts10:59
*** yamamoto has joined #openstack-infra11:00
*** lifeless has joined #openstack-infra11:02
*** boden has quit IRC11:03
*** kjackal_ has joined #openstack-infra11:04
odyssey4meit appears that gerrit has slowed down to a crawl11:05
ianwper mail to infra, i disabled the duplicate account 24821 and disabled it11:06
ianwodyssey4me : give it a minute, i had to flush the caches after deleting a duplicate account11:07
*** stakeda has quit IRC11:07
odyssey4meah ok, thanks :)11:07
*** sshnaidm|afk is now known as sshnaidm11:10
*** tpsilva has joined #openstack-infra11:14
*** huanxie has quit IRC11:17
*** edmondsw has joined #openstack-infra11:21
*** dave-mccowan has joined #openstack-infra11:22
openstackgerritOpenStack Proposal Bot proposed openstack/os-testr master: Updated from global requirements  https://review.openstack.org/50364511:28
*** gildub has joined #openstack-infra11:30
*** e0ne has quit IRC11:32
*** markvoelker has joined #openstack-infra11:34
*** jpich has quit IRC11:34
*** e0ne has joined #openstack-infra11:35
*** jpich has joined #openstack-infra11:35
*** thorst has joined #openstack-infra11:37
fungiianw: dtantsur: we can delete them as long as we're reasonably sure nobody is installing it from pypi. what ianw mentions is more of a concern around git tag deletion11:38
fungior deleting broken releases from pypi in hopes that uses will "roll back" to a previous release11:39
*** alexchadin has quit IRC11:39
dtantsurack11:39
* fungi is not really around for the net couple of days. starting the long journey to sydney shortly11:40
fungis/net/next/11:40
dtantsursafe travel!11:40
*** wolverineav has joined #openstack-infra11:40
*** thorst has quit IRC11:42
*** alexchadin has joined #openstack-infra11:43
*** ccamacho has quit IRC11:46
*** jcoufal has joined #openstack-infra11:47
*** ykarel|lunch is now known as ykarel11:47
*** wolverineav has quit IRC11:47
fungithanks!11:48
*** alexchadin has quit IRC11:48
*** dtantsur is now known as dtantsur|bbl11:48
*** jcoufal_ has joined #openstack-infra11:50
*** dprince has joined #openstack-infra11:52
*** jcoufal has quit IRC11:54
openstackgerritMerged openstack-infra/openstack-zuul-jobs master: Don't run legacy-grenade-dsvm-neutron* jobs in newton or ocata  https://review.openstack.org/51669411:58
*** rhallisey has joined #openstack-infra11:59
*** armaan has quit IRC11:59
*** rhallisey has quit IRC11:59
*** armaan has joined #openstack-infra11:59
*** thorst has joined #openstack-infra12:00
*** rhallisey has joined #openstack-infra12:01
*** lucasagomes is now known as lucas-hungry12:04
fricklerconfig-core: another grenade on newton-eol fix https://review.openstack.org/51688512:04
*** markvoelker has quit IRC12:07
*** salv-orlando has joined #openstack-infra12:09
*** weshay|PTO is now known as weshay12:09
*** bobh has joined #openstack-infra12:13
*** pgadiya has quit IRC12:14
*** salv-orlando has quit IRC12:14
*** coolsvap has quit IRC12:15
Shrewsjeblair: pabelanger: well, the failed node is not getting deleted because there is no server ID12:16
openstackgerritAndreas Jaeger proposed openstack-infra/openstack-zuul-jobs master: Rework periodic stable jobs  https://review.openstack.org/51686612:17
openstackgerritAndreas Jaeger proposed openstack-infra/openstack-zuul-jobs master: Remove stable periodic docs/py27 jobs  https://review.openstack.org/51697212:17
AJaegerfrickler: commented - I prefer to have this on the job definition, like the other grenade jobs have.12:18
*** udesale has joined #openstack-infra12:18
AJaegerfungi, safe travels!12:18
Shrewsjeblair: pabelanger: that node (0000632928) was attempting to be launched during the whole ManagerStoppedException episode (beginning around 2017-10-31 20:49)12:20
*** jcoufal_ has quit IRC12:21
*** panda|ruck|bbl is now known as panda|ruck12:22
*** jcoufal has joined #openstack-infra12:23
openstackgerritOpenStack Proposal Bot proposed openstack/os-testr master: Updated from global requirements  https://review.openstack.org/50364512:25
*** trown|outtypewww is now known as trown12:25
Shrewspabelanger: Do these "Creating new ProviderManager" events correspond to you manually editing the nodepool.yaml file? http://paste.openstack.org/show/625202/12:26
ShrewsI don't understand why the task manager thread would not start on reconfiguration though12:27
*** catintheroof has joined #openstack-infra12:28
*** salv-orlando has joined #openstack-infra12:29
kazshHi, could you someone infra root check this minor change for heat-dashboard ?  https://review.openstack.org/#/c/516889/2  AJaeger: thanks for your review :)12:30
*** armaan has quit IRC12:31
*** armaan has joined #openstack-infra12:31
openstackgerritChandan Kumar proposed openstack-infra/openstack-zuul-jobs master: Remove legacy tempest-tox-plugin-sanity-check jobs  https://review.openstack.org/51697712:32
*** rlandy has joined #openstack-infra12:33
*** armaan has quit IRC12:33
*** armaan has joined #openstack-infra12:33
*** hemna has joined #openstack-infra12:34
*** bhavik1 has joined #openstack-infra12:35
*** markvoelker has joined #openstack-infra12:36
Shrewspabelanger: jeblair: I restarted nl02. Doing so released the locks on the infracloud-chocolate "ready" nodes, so it wasn't zuul holding those locks. I'm confused as to what went wrong there.12:38
Shrewsinfra-root: ^^^^12:38
Shrewsnodepool-launcher on nl02, that is12:38
openstackgerritSam Betts proposed openstack-infra/openstack-zuul-jobs master: Update timeout on openstack-tox-compare-cover job  https://review.openstack.org/51698012:39
*** bhavik1 has quit IRC12:39
*** gildub has quit IRC12:41
Shrewspabelanger: i'm seeing quota errors for citycloud, too12:42
Shrewspabelanger: also, "No valid host was found" during server creation on ovh-gra1. Odd12:46
*** yamamoto has quit IRC12:46
*** bobh has quit IRC12:46
*** markvoelker has quit IRC12:48
*** markvoelker has joined #openstack-infra12:54
*** gcb_ has quit IRC12:57
openstackgerritJens Harbott (frickler) proposed openstack-infra/openstack-zuul-jobs master: Do not run legacy-grenade-dsvm-designate-pdns4 on stable/ocata  https://review.openstack.org/51688512:57
*** gcb_ has joined #openstack-infra13:00
*** yamamoto has joined #openstack-infra13:02
*** dhajare has quit IRC13:05
openstackgerritDavid Shrewsbury proposed openstack-infra/nodepool feature/zuulv3: Use >= in instance count comparison to max-servers  https://review.openstack.org/51698813:05
Shrewspabelanger: jeblair: I think that ^^^ was at least one problem with chocolate13:06
Shrewspabelanger: jeblair: i manually deleted some chocolate nodes to get the number of instances below max-servers, and i'm seeing them being used now13:06
Shrewspabelanger: jeblair: i now have to get ready for an eye exam. i may not be looking at a screen for a few hours.13:07
*** lucas-hungry is now known as lucasagomes13:08
*** kgiusti has joined #openstack-infra13:10
*** rloo has joined #openstack-infra13:10
*** rosmaita has joined #openstack-infra13:12
*** salv-orlando has quit IRC13:14
*** salv-orlando has joined #openstack-infra13:15
*** baoli has joined #openstack-infra13:16
*** lbragstad has joined #openstack-infra13:18
*** ramishra has quit IRC13:18
*** salv-orlando has quit IRC13:19
*** bobh has joined #openstack-infra13:25
*** smatzek has quit IRC13:27
*** bswartz has joined #openstack-infra13:27
*** lbragstad has quit IRC13:30
*** mat128 has quit IRC13:34
mpetersonhi, question, if I were to start to define a custom job that's a sibling of devstack or devstack-tempest, where would I start looking to understand what I need to parametize and what extra steps I need to add?13:34
*** hasharAway is now known as hashar13:35
openstackgerritMerged openstack-infra/project-config master: Add nodejs4-jobs to heat-dashboard project  https://review.openstack.org/51688913:38
*** lbragstad has joined #openstack-infra13:39
*** ykarel is now known as ykarel|afk13:40
fricklermpeterson: shade might give a good example: https://review.openstack.org/50036513:40
mpetersonfrickler: right, the link in the migration manual. is there another reference (ie: manual, where these jobs are defined, etc)?13:42
*** mriedem has joined #openstack-infra13:47
openstackgerritMerged openstack-infra/project-config master: Add ansible-role-k8s-tripleo  https://review.openstack.org/51531613:48
*** armax has joined #openstack-infra13:49
fricklermpeterson: the job itself is defined in the devstack repo and you can find e.g. the readmes for the roles it uses there. I don't know of any other documentation13:50
openstackgerritFlavio Percoco proposed openstack-infra/project-config master: Add ansible-role-k8s-tripleo to zuul.d  https://review.openstack.org/51531713:50
*** ykarel|afk has quit IRC13:50
*** esberglu_ has quit IRC13:51
*** Goneri has quit IRC13:51
*** esberglu has joined #openstack-infra13:51
mpetersonfrickler: okey, thanks13:51
*** Goneri has joined #openstack-infra13:53
*** alexchadin has joined #openstack-infra13:54
*** eharney has joined #openstack-infra13:55
*** kiennt26 has joined #openstack-infra13:55
*** esberglu has quit IRC13:56
*** kiennt26 has quit IRC13:57
openstackgerritOpenStack Proposal Bot proposed openstack/os-testr master: Updated from global requirements  https://review.openstack.org/50364513:57
*** kiennt26 has joined #openstack-infra13:57
*** hongbin has joined #openstack-infra13:58
*** ralonsoh has quit IRC13:59
*** tesseract has quit IRC14:06
*** mat128 has joined #openstack-infra14:06
*** mat128 has quit IRC14:08
*** esberglu has joined #openstack-infra14:08
openstackgerritAndreas Jaeger proposed openstack-infra/project-config master: Use periodic-stable-jobs  https://review.openstack.org/51699614:12
openstackgerritAndreas Jaeger proposed openstack-infra/openstack-zuul-jobs master: Use generic stable periodic jobs  https://review.openstack.org/51699714:12
openstackgerritAndreas Jaeger proposed openstack-infra/openstack-zuul-jobs master: Remove now obsolete periodic-stable templates  https://review.openstack.org/51699814:12
*** armaan has quit IRC14:13
*** janki has quit IRC14:13
*** janki has joined #openstack-infra14:13
*** armaan has joined #openstack-infra14:13
mwhahahaso i think i found a new issue with zuul. it seems that i managed to bypass the check queue14:13
AJaegermwhahaha: how did you do that?14:14
mwhahahai have no idea14:14
mwhahahabut 515884,1 failed check but is now currently showing up as failed in gate14:14
mwhahahaor rather it seems that the failure in check was ignored14:15
jeblairShrews: right, but a failed node with no server id should just be deleted from the zk database.  there's no reason to keep it around.14:15
jeblairShrews: i imagine it would be except that it was locked.  so there's a path where a node launch can fail, and the node can stay locked, preventing it from being deleted.14:16
jeblairShrews: maybe because of the manager being stopped or restarted14:16
AJaegerinfra-root, http://git.openstack.org/cgit/openstack/ansible-role-k8s-tripleo exists but it's not listed in http://git.openstack.org/cgit and https://review.openstack.org/#/c/515317/3 gives a " The project "openstack/ansible-role-k8s-tripleo" was not found." Could somebody check what's going on, please?14:17
jeblairAJaeger: it needs to be listed in project-config/zuul/main.yaml14:17
*** armaan has quit IRC14:18
AJaegerjeblair: argh ;( I would have expected it to be there, missed that in project creation review ;(14:18
AJaegerthanks14:18
AJaegerjeblair: please check https://review.openstack.org/#/c/515884/ - has -1 from Zuul but enters gate14:18
*** ykarel|afk has joined #openstack-infra14:19
mwhahahaAJaeger: jeblair: I added to ether pad under 'check job ignored so patch went to the gate even when check job failed'14:19
AJaegerjeblair: it's listed there - but flaper87 is too quick, it just merged 30 mins ago.. So, all good - we need to wait ;914:22
*** rbrndt has joined #openstack-infra14:22
AJaegerjeblair: is https://review.openstack.org/516997 the way you suggest to do periodic jobs?14:24
*** dhinesh has joined #openstack-infra14:26
flaper87AJaeger: danke :D14:26
* flaper87 is impatient14:27
AJaegermwhahaha: I think in this case it's fine - it had a +1 from Zuul, got approved and just entered gate directly - but also restarted check.14:27
*** rfolco has quit IRC14:27
AJaegermwhahaha: no, it's not - checking timing ;(14:27
AJaegermwhahaha: ignore my comments above, please14:28
mwhahahaAJaeger: what comments? ;)14:28
AJaegermwhahaha: exactly14:28
AJaegerflaper87: you need to rebase again...14:29
jeblairmwhahaha, AJaeger: it entered the gate pipelite at 21:50:02; at that time it had a +1 from zuul, a code-review +2 and a workflow +114:29
mwhahahajeblair: but if it's abanonded and restored shouldn't it clear all and reset?14:29
jeblairthe comment from zuul from the check-tripleo pipeline is the triggering event (despite check-tripleo not voting, gerrit emitted the event with a verified+1 vote since that was still zuul's current vote from the last check run)14:30
AJaegerjeblair: this morning zuul commented "Verified Starting gate jobs." - so that was far later14:30
rloohi, has anyone noticed that the build-openstack-releasenotes job doesn't always fire? Missing: https://review.openstack.org/#/c/516060/14:30
jeblairmwhahaha: apparently not?14:30
rloodone: https://review.openstack.org/#/c/495385/14:30
*** ykarel|afk is now known as ykarel14:31
rloo??14:31
jeblairAJaeger: yes, i believe it does that after the first job starts running14:31
*** felipemonteiro_ has joined #openstack-infra14:31
AJaegerrloo: why should it build release notes if nothing is touched? We only build releasenotes if certain files are changed.14:31
mwhahahajeblair: seems like a dangerous flow that might allow for flakey changes to get merged14:31
*** udesale has quit IRC14:31
AJaegerrloo: and none of them are changed, so this is fine...14:32
rlooAJaeger: OH. why do we always build docs? Maybe something changes there all the time...14:32
rlooAJaeger: phew!14:32
*** felipemonteiro__ has joined #openstack-infra14:32
rlooAJaeger: I was going crazy, trying to figure out if it had to do with all this zuul v3 migration!14:32
AJaegerrloo: http://git.openstack.org/cgit/openstack-infra/openstack-zuul-jobs/tree/zuul.d/jobs.yaml#n44714:33
jeblairmwhahaha: i guess it depends on the circumstances.  abandoning and restoring an approved change is pretty rare.14:33
rlooAJaeger: thx for explaining!14:33
AJaegerrloo: we always build docs since docs include often autogenerated code...14:33
mwhahahajeblair: i still think it shouldn't gate until all check jobs have reported14:33
* mwhahaha shrugs14:33
jeblairmwhahaha: they had14:34
jeblairfrom the previous run14:34
rlooAJaeger: ah, that makes sense. thx again!14:34
AJaegerrloo: so, go ahead and let's get https://review.openstack.org/#/c/516060/ in ;)14:34
rlooAJaeger: yup, working on that, and other zuul v3 related patches for some of the ironic projects ;)14:35
jeblairAJaeger: 516997 lgtm14:35
AJaegerrloo: yeah, seen you've been busy...14:35
*** yamamoto has quit IRC14:35
openstackgerritRonelle Landy proposed openstack-infra/tripleo-ci master: DO NOT MERGE - Testing specific DLRN hash tag Also testing dlrn_hash_tag_newest set to specific hash.  https://review.openstack.org/51662414:35
mwhahahajeblair: imho an abandon/restore should completely clear previous state but ok. still seems like an odd interaction14:36
*** felipemonteiro_ has quit IRC14:36
rlooAJaeger: lesson learned, never ask for a volunteer to do things, you might get picked to do it yourself. Hence my involvement :D14:36
*** yamamoto has joined #openstack-infra14:37
openstackgerritSagi Shnaidman proposed openstack-infra/openstack-zuul-jobs master: Remove periodic tripleo ci jobs  https://review.openstack.org/51700214:37
sshnaidmweshay, EmilienM mwhahaha ^^14:37
AJaegerjeblair: thanks. So, I'll have some dancing around between project-config and ozj in front of me with the help of the config-cores then ;)14:37
EmilienMsshnaidm: thx14:37
EmilienMclarkb, fungi: fyi a (little) effort to remove useless CI jobs https://review.openstack.org/51700214:38
jeblairmwhahaha: yeah, that's not unreasonable.  but i think in some cases, the status-quo is reasonable as well.14:38
* AJaeger hugs rloo14:39
mwhahahajeblair: sure. I don't think it's critical but it does impact the system as a whole because it did cause a failure in the gate which reset the queue.14:40
* rloo blushes14:40
jeblairEmilienM: those jobs don't use the tripleo cloud do they?14:41
*** yamamoto has quit IRC14:42
EmilienMjeblair: they were using openstack-infra/multinode and now fully migrated to RDO cloud14:42
EmilienMjeblair: so we don't need them anymore in openstack zuuml14:42
EmilienMzuul even14:42
*** cshastri has quit IRC14:43
jeblairEmilienM: i guess thought you were moving the ones that needed the tripleo hardware, not all of them14:43
AJaegerconfig-core, please review the stack starting at  https://review.openstack.org/51685614:43
EmilienMjeblair: *all* periodic jobs move to RDO CI, because we want to run them every 4 hours14:43
*** tesseract has joined #openstack-infra14:43
*** gongysh has joined #openstack-infra14:44
*** gongysh has quit IRC14:44
jeblairEmilienM: oh.  did our teams ever talk about this?  like an email thread or meeting or something i can catch up on?14:44
EmilienMjeblair: I would ask that quesiton to the tripleo CI team, weshay ^14:45
jeblairi've been pretty distracted lately and i haven't been able to keep up with everything14:45
EmilienMjeblair: let me look in my mailbox14:45
EmilienMjeblair: I don't think it was directly communicated to *you* but announced in the weekly (or so) "CI Squad Meeting Summary"14:46
EmilienMoh wait14:46
EmilienMit was discussed in [openstack-dev] [infra][tripleo] initial discussion for a new periodic pipeline14:46
EmilienMjeblair: http://lists.openstack.org/pipermail/openstack-dev/2017-March/113471.html14:47
EmilienMjeblair: conclusion was: move to RDO cloud14:47
*** psachin has quit IRC14:48
*** alexchadin has quit IRC14:50
weshaythanks sshnaidm14:52
jeblairEmilienM: indeed that seems to be the case.  i'm not sure i agree with that approach.  i'd much rather openstack projects continue to use the openstack ci system as much as they are able.  third-party ci should only be for things that can not physically be tested in the public system due to hardware or software licensing limitations.14:52
EmilienMjeblair: it was clear infra wan't willing to run periodic jobs every 4 hours14:53
weshayjeblair, there are two seperate moves here.. The first was to move *all* the periodic jobs out of upstream infra14:53
EmilienMwasn't*14:53
weshaythe second was to move ovb jobs ( the ones requiring tripleo hardware ) to third party14:54
jeblairEmilienM: i read early in the thread that it seemed folks were fine with it.  just not doing so at the expense of the check pipeline.  ie, keeping them at low precedence.14:55
weshayjeblair, right.. which is why ovb jobs will be third party voting14:56
*** LindaWang has quit IRC14:57
*** LindaWang has joined #openstack-infra14:57
*** cody-somerville has joined #openstack-infra14:58
*** gordc has joined #openstack-infra14:58
*** csomerville has quit IRC14:59
*** vhosakot has joined #openstack-infra14:59
gordchey folks, anyone know how/where grenade figures out which stable branch to pull in for the 'old' clone.14:59
jeblairEmilienM: anyway, it's probably not useful to relitigate this now.  i'm not going to -2 any changes or anything.  but i would like to discuss this further once everyone is once again available.  i'd like to make sure we all know where this is heading.14:59
weshayjeblair, like a group discussion or 1-1?15:02
jeblairweshay: group i think?15:05
weshayagree.. jeblair and pabelanger should be in on that as well15:05
openstackgerritOpenStack Proposal Bot proposed openstack/os-testr master: Updated from global requirements  https://review.openstack.org/50364515:05
*** LindaWang has quit IRC15:06
mriedemclarkb: i see the indexing behind by message here changed, looks like things were fixed? http://status.openstack.org/elastic-recheck/ - any idea what was wrong?15:07
mriedemthought it was some key issue last week15:08
*** martinkopec has quit IRC15:08
*** mat128 has joined #openstack-infra15:08
*** qadaemon has joined #openstack-infra15:15
*** qadaemon has quit IRC15:15
*** ijw has joined #openstack-infra15:15
openstackgerritMatt Riedemann proposed openstack-infra/elastic-recheck master: Add query for nova bug 1729371  https://review.openstack.org/51700815:17
openstackbug 1729371 in OpenStack Compute (nova) "ResourceTracker races to delete instance allocations before instance is mapped to a cell" [High,Triaged] https://launchpad.net/bugs/172937115:17
*** smatzek has joined #openstack-infra15:19
*** catintheroof has quit IRC15:21
*** dhinesh has quit IRC15:24
*** dhinesh has joined #openstack-infra15:25
*** markvoelker_ has joined #openstack-infra15:26
*** eharney has quit IRC15:27
AJaegerconfig-core, please review https://review.openstack.org/516397 to fix tarball generation and https://review.openstack.org/516851 to upload artifacts only on success15:29
*** markvoelker has quit IRC15:29
sshnaidmjeblair, AJaeger if I remove periodic job, should I do changes in openstack-infra/project-config as well? https://review.openstack.org/#/c/517002/15:31
*** eharney has joined #openstack-infra15:31
openstackgerritJean-Philippe Evrard proposed openstack-infra/project-config master: Retiring old OpenStack-Ansible projects  https://review.openstack.org/51701215:32
*** dhinesh has quit IRC15:36
evrardjpcould anyone tell me what job replaced the ones explained here https://docs.openstack.org/infra/manual/drivers.html#step-1-end-project-gating  ?15:36
*** dhinesh has joined #openstack-infra15:36
evrardjplooks like merge-check isn't defined anymore15:37
pabelangermgagne: we are seeing some quota issues in nodepool, do you mind confirming the limits again? We are currently setup for 19015:37
evrardjpI can replace the docs, but I don't know what this was before15:37
*** spectr has quit IRC15:37
pabelangermgagne: seem to be hitting 160 instances, then quota error15:38
*** ykarel is now known as ykarel|afk15:38
*** hashar has quit IRC15:39
*** yamamoto has joined #openstack-infra15:41
openstackgerritMerged openstack-infra/elastic-recheck master: Add query for nova bug 1729371  https://review.openstack.org/51700815:42
openstackgerritSagi Shnaidman proposed openstack-infra/tripleo-ci master: DNM: test ci  https://review.openstack.org/51701615:42
openstackbug 1729371 in OpenStack Compute (nova) pike "ResourceTracker races to delete instance allocations before instance is mapped to a cell" [High,Triaged] https://launchpad.net/bugs/172937115:42
sshnaidmpabelanger,  if I remove periodic job, should I do changes in openstack-infra/project-config as well? https://review.openstack.org/#/c/517002/15:43
*** dprince has quit IRC15:43
*** ykarel|afk has quit IRC15:44
clarkbmriedem: it was a combination of things, new log format needed new queries in e-r to check lag, also we were double indexing things which made it really slow, and the gearman server had enough jobs in it that it was having performance issues15:44
openstackgerritMerged openstack-infra/openstack-zuul-jobs master: Update timeout on openstack-tox-compare-cover job  https://review.openstack.org/51698015:44
pabelangersshnaidm: you need to remove a job first from the pipeline, in project-config zuul.d folder15:45
clarkbevrardjp: merge-check has been replaced by the system-required template15:45
evrardjpyeah just found it out with a good git blame15:45
evrardjpjust at the second15:45
evrardjpI will fix that an the docs15:45
*** hashar has joined #openstack-infra15:45
evrardjpthanks clarkb!15:45
evrardjpyou confirmed my investigation!15:45
openstackgerritJean-Philippe Evrard proposed openstack-infra/project-config master: Retiring old OpenStack-Ansible projects  https://review.openstack.org/51701215:46
clarkbgordc: it is hardcoded in devstack-gate. Basically depedending on current branch and type of upgrade it just has a list of what is yhe branch ahead and what is the branch behind15:46
mriedemclarkb: ah i see https://github.com/openstack-infra/elastic-recheck/commit/69b588cb2b3847754f01f350d7aa9f4c2b476801 nice catch15:46
*** yamamoto has quit IRC15:47
*** dtantsur|bbl is now known as dtantsur15:47
openstackgerritSagi Shnaidman proposed openstack-infra/project-config master: Remove tripleo-ci periodic jobs  https://review.openstack.org/51701915:48
clarkbmriedem: I think something is still off in finding uncategorised failures15:49
*** ralonsoh has joined #openstack-infra15:50
gordcclarkb: hmm.. ok i'll take a closer look. thanks for the pointer.15:51
openstackgerritSagi Shnaidman proposed openstack-infra/openstack-zuul-jobs master: Remove periodic tripleo ci jobs  https://review.openstack.org/51700215:51
openstackgerritJean-Philippe Evrard proposed openstack-infra/infra-manual master: Replace merge-check by system-required  https://review.openstack.org/51702015:52
evrardjpAJaeger: ^ docs thing related to one of your patches :p15:53
evrardjpthought you might be interested .15:53
*** ansiwen[q] has joined #openstack-infra15:54
*** yamahata has joined #openstack-infra15:54
*** ansiwen[q] is now known as ansiwen_q15:54
*** ansiwen_q is now known as ansiwen[q]15:55
mnaserevrardjp: left a small note15:56
*** ansiwen[q] is now known as ansiwen_q15:56
*** janki has quit IRC15:56
*** Sukhdev has joined #openstack-infra15:57
evrardjpmnaser: https://github.com/openstack-infra/project-config/blob/master/zuul.d/pipelines.yaml#L33615:57
evrardjpyou're right!15:57
evrardjpconsistency...15:57
mnaser:p15:57
*** coolsvap has joined #openstack-infra15:58
openstackgerritJean-Philippe Evrard proposed openstack-infra/infra-manual master: Replace merge-check by system-required  https://review.openstack.org/51702015:58
evrardjpmnaser: updated!15:58
mnaserevrardjp: super unrelated but im wondering if the template: - name: system-required format is valid at all15:59
*** ansiwen_q is now known as ansiwen[q]15:59
evrardjpmnaser: I don't think it is. Did I let that?15:59
*** dhinesh has quit IRC15:59
evrardjpdarn!15:59
evrardjpI did15:59
mnaserevrardjp: but that was there beforehand15:59
mnaserin infra-docs15:59
evrardjpyeah16:00
evrardjpmy bad16:00
mnaseroh you made the change beforehand? :p16:00
evrardjp<-- silly hobbit!16:00
evrardjpno, I just left my brain in the garage. Give me a sec I'll fetch it.16:00
*** xarses has joined #openstack-infra16:00
openstackgerritJean-Philippe Evrard proposed openstack-infra/infra-manual master: Replace merge-check by system-required  https://review.openstack.org/51702016:01
*** ijw has quit IRC16:02
*** jascott1 has joined #openstack-infra16:03
mnaserevrardjp: im so sorry i should have mentioned it earlier but s/template:/templates:/ and i wont bother you anymore :p16:04
evrardjpI should pay more attention16:04
evrardjplet me fix that quick16:04
*** jascott1 has quit IRC16:04
*** ansiwen[q] is now known as ansiwen_q16:05
openstackgerritJean-Philippe Evrard proposed openstack-infra/project-config master: Retiring old OpenStack-Ansible projects  https://review.openstack.org/51701216:05
AJaegermnaser: could you review the stack starting at https://review.openstack.org/#/c/516856 , please?16:06
mnaserAJaeger: sure one sec16:06
AJaegerclarkb: care to give https://review.openstack.org/#/c/516010/ - the infra-publications change another +2, please? I had to rebase...16:06
openstackgerritJean-Philippe Evrard proposed openstack-infra/infra-manual master: Replace merge-check by system-required  https://review.openstack.org/51702016:06
*** iyamahat has joined #openstack-infra16:07
*** catintheroof has joined #openstack-infra16:07
*** kiennt26 has quit IRC16:09
*** trown is now known as trown|lunch16:10
*** ldnunes has quit IRC16:10
*** dhajare has joined #openstack-infra16:11
*** Apoorva has joined #openstack-infra16:12
AJaegerevrardjp: thanks for the doc update. On the retirement change, I'd like to see PTL +116:12
evrardjpthat's me :p16:12
evrardjpI can +1 my own patch if you want.16:12
evrardjp:p16:12
AJaegerevrardjp: not needed in that case ;)16:13
AJaegerevrardjp: indeed you are - congrats. Sorry, missed that change...16:13
evrardjpAJaeger: haha! I like the fact that you have checked :)16:13
evrardjpand thanks!16:14
mnaserAJaeger: i have reviewed the stack up to the point where we wait for merges to review the rest16:15
AJaegermnaser: ok, will recheck once those are in and then ask again ;)16:15
mnaser:)16:16
AJaegermnaser, could I trouble you for review https://review.openstack.org/516397 to fix tarball generation and https://review.openstack.org/516851 to upload artifacts only on success as well, please?16:16
* AJaeger has too many open reviews...16:16
openstackgerritMerged openstack-infra/project-config master: Add ansible-role-k8s-tripleo to zuul.d  https://review.openstack.org/51531716:16
openstackgerritMerged openstack-infra/openstack-zuul-jobs master: Fix periodic neutron jobs  https://review.openstack.org/51685616:17
*** salv-orlando has joined #openstack-infra16:17
*** gouthamr has joined #openstack-infra16:20
*** Sukhdev has quit IRC16:20
*** salv-orlando has quit IRC16:21
*** jschlueter|znc is now known as jschlueter16:21
mnaserAJaeger: dmsimard got the second one, first one took a lil while to understand why neutron and horizon were there :p16:22
dmsimardyou beat me to the first one, I was already aware of context :)16:22
AJaegermnaser: yeah, hope we get rid of those soon...16:22
Shrewsjeblair: ah, that failed node was locked because it was part of the nodeset for the request that caused chocolate to be stuck16:22
*** efried is now known as efried_rollin16:22
*** ldnunes has joined #openstack-infra16:23
Shrewsjeblair: all nodes (ready or failed) get unlocked together after the request is fulfilled16:23
openstackgerritMerged openstack-infra/openstack-zuul-jobs master: Rework periodic stable jobs  https://review.openstack.org/51686616:23
jeblairShrews: it failed with a 'manager not running' error iirc16:24
gordcclarkb: you recall anything changing in the past day that would change how branches in grenade are set up?16:24
*** ijw has joined #openstack-infra16:24
gordclooking at a patch which previously was correctly pulling in stable branch but is now pulling in master: http://paste.openstack.org/show/625233/16:24
*** Rockyg has joined #openstack-infra16:25
openstackgerritRob Cresswell proposed openstack-infra/project-config master: Remove legacy networking-cisco jobs  https://review.openstack.org/51703516:25
Shrewsjeblair: right16:25
*** csomerville has joined #openstack-infra16:25
clarkbgordc: not that recently16:25
clarkblast time changes should have been made was around release time16:26
openstackgerritMiguel Lavalle proposed openstack-infra/project-config master: Remove legacy-neutron-dsvm-api from Neutron  https://review.openstack.org/51672416:26
openstackgerritRob Cresswell proposed openstack-infra/openstack-zuul-jobs master: Remove legacy networking-cisco jobs  https://review.openstack.org/51703616:27
pabelangerShrews: re: pastebin, yes that lines up around the time I decresed the max-servers back to 5616:27
clarkbgordc: there may have been a cleanup of newton?16:27
openstackgerritRob Cresswell proposed openstack-infra/project-config master: Remove legacy networking-cisco jobs  https://review.openstack.org/51703516:27
gordcclarkb: weird. the devstacklog says it's pulling in master but at some point it switches to stable... (and that switch behaviour seems to have disappeared now)16:27
openstackgerritMerged openstack-infra/project-config master: Add openstack/requirements to publish-openstack-python-branch-tarball  https://review.openstack.org/51639716:28
gordcclarkb: possibly? hmm.. i'll take a closer look at logs16:28
pabelangerShrews: citycloud errors are known, we have 7 stuck nodes. Going to open a support ticket now16:28
*** cody-somerville has quit IRC16:28
*** csomerville has quit IRC16:28
dmsimardmnaser: https://review.openstack.org/#/c/515974/ needs rebased16:29
jeblairShrews: so the launcher thread should have been able to delete that node and release the request, yeah?  but it just left it there in failed+locked16:30
Shrewspabelanger: ok. we should get that nodepool fix in so that doesn't happen again. i don't know the exact circumstances that led to so many chocolate nodes being locked, but that fix is certainly the cause of the entire pool being paused16:30
openstackgerritMerged openstack-infra/infra-manual master: Replace merge-check by system-required  https://review.openstack.org/51702016:30
openstackgerritMerged openstack-infra/project-config master: Upload artifacts only on success  https://review.openstack.org/51685116:30
mnaserdmsimard: of course it did a conflict was just a matter of time in  a change like that :p16:30
mnaseri'll get to it shortly16:30
Shrewsjeblair: chocolate was paused trying to satisfy a min-ready request (forces a new launch), but we were over capacity of max-servers. the min-ready request should have been declined16:31
openstackgerritRob Cresswell proposed openstack-infra/openstack-zuul-jobs master: Remove legacy networking-cisco jobs  https://review.openstack.org/51703616:31
jeblairShrews: yeah, but it also should have been able to reclaim the failed node16:31
Shrewsjeblair: not until the request it was for had been fulfilled or failed16:32
openstackgerritMerged openstack-infra/project-config master: Retiring old OpenStack-Ansible projects  https://review.openstack.org/51701216:32
jeblairShrews: yes, though it should have been able to do that -- it had exhausted its 3 launch attempts for the second node.16:33
evrardjpthanks AJaeger and dmsimard :)16:33
dmsimardclarkb: so I don't have any ideas for the .gz thing. Happy to try your approach.16:34
dmsimardclarkb: oh it already merged16:36
dmsimardthe logstash queue is still growing endlessly though ?16:36
*** thiagolib has joined #openstack-infra16:36
clarkbI dont think so e-r says we are only 5 hours behind16:36
clarkbbut I havent checked gearman itself16:37
*** slaweq has joined #openstack-infra16:37
*** dhinesh has joined #openstack-infra16:37
*** felipemonteiro__ has quit IRC16:38
openstackgerritMerged openstack-infra/project-config master: Fix networking periodic jobs  https://review.openstack.org/51685816:40
*** slaweq has quit IRC16:42
pabelangerokay, citycloud emailed, I've cc'd fungi and clarkb16:43
*** dsariel__ has quit IRC16:44
openstackgerritMerged openstack-infra/project-config master: Cleanup legacy-grenade-dsvm-neutron* branch restrictions  https://review.openstack.org/51670516:45
openstackgerritMerged openstack-infra/project-config master: Refactor nonha multinode ooq into project template  https://review.openstack.org/51597216:45
openstackgerritMerged openstack-infra/project-config master: Drop irrelevant-files from TripleO jobs  https://review.openstack.org/51597316:45
openstackgerritMerged openstack-infra/project-config master: Drop files from TripleO jobs  https://review.openstack.org/51598516:45
*** catintheroof has quit IRC16:45
*** ykarel|afk has joined #openstack-infra16:46
*** wolverineav has joined #openstack-infra16:47
andreafjeblair: hi - anything holding https://review.openstack.org/#/c/509233/ back? I'd really like to see that moving forward16:51
*** catintheroof has joined #openstack-infra16:52
*** pcaruana has quit IRC16:52
fungijeblair: EmilienM: weshay: catching up while i have a few minutes waiting for a plane... what pushed tripleo to move their periodic jobs to third-party is that they wanted them _reliably_ run every 4 hours, and we wouldn't guarantee that under eavy gate/check volume those might get get queued for many hours until resources were available to run them16:53
*** dhinesh has quit IRC16:53
fungimriedem: we merge a performance fix for the gear library which sped up processing for our logstash and subunit workers16:53
fungioh, clarkb also answered16:53
EmilienMfungi: to be fair, RDO cloud is so busy now that our jobs don't run every 4h16:54
EmilienMfungi: have a safe flight16:54
clarkbdmsimard: just checked and the job count is up to ~125k16:54
clarkbdmsimard: so ya not entirely sure we've sorted out all the slowness16:54
AJaegermnaser: do you want to continue with the periodic changes? https://review.openstack.org/#/c/516972/ is ready now16:55
mnaserAJaeger: sure one sec16:55
clarkbpabelanger: will you be spinning up new logstash workers today?16:55
AJaegerthanks, mnaser16:55
clarkbdmsimard: I think ^ is the next step in trying to address the backlog16:56
*** ijw has quit IRC16:56
dmsimardclarkb: how many workers do we have ? On phone right but I remember seeing like 18 on cacti16:56
pabelangerclarkb: yes! I was able to get logstash-worker16 online16:56
* fungi is hating the terrible keyboard on this burner laptop16:56
fungidmsimard: 20 logstash workers last time i counted16:57
clarkbya 20 is what we ran with for a long time, but we are/were down to 1516:57
*** gyee has joined #openstack-infra16:58
clarkbworker 14 has a full / so I am looking into that now16:58
*** dave-mccowan has quit IRC16:58
*** panda|ruck is now known as panda|ruck|bbl16:58
dmsimardWow, and they're not able to keep up ?16:58
clarkbcurrently not keeping up16:59
dmsimardWhat's the bottleneck ?16:59
clarkbI think its a combo of network io and regexing ~billion strings a day17:00
clarkbES itself seems fine and will take what we throw at it, its the stuff upstream of it17:00
openstackgerritMerged openstack-infra/project-config master: Add os_congress role to openstack-ansible  https://review.openstack.org/51687417:00
*** sbezverk has quit IRC17:01
clarkbcrm114 is what filled the disk17:02
*** e0ne has quit IRC17:02
clarkbit looks like the explosion of tripleo log files is at least partially to blame17:02
*** dave-mccowan has joined #openstack-infra17:03
clarkb15G extra17:03
*** openstackgerrit has quit IRC17:03
clarkb3.7G undercloud17:03
clarkbEmilienM: we are indexing all of the tripleo log files individually now?17:03
clarkbI think that may account for the increase in volume17:03
clarkband is enough unique files that crm114 is exploding its disk use17:04
clarkbI think we need 13MB per file we index with crm11417:04
clarkband since the tables crm114 uses are fixed that can't grow, what grows is adding more files to it17:04
*** wolverineav has quit IRC17:05
*** openstackgerrit has joined #openstack-infra17:05
openstackgerritMerged openstack-infra/openstack-zuul-jobs master: Remove stable periodic docs/py27 jobs  https://review.openstack.org/51697217:05
clarkblooks like we also have log files that are based on hostname so we just create crm114 dirs for them and then never reuse them17:05
clarkbeg ceph-mon-centos-7-ovh-gra1-000063210317:06
openstackgerritClint 'SpamapS' Byrum proposed openstack-infra/zuul feature/zuulv3: Improve error handling in webapp /keys  https://review.openstack.org/51705317:06
openstackgerritMerged openstack-infra/openstack-zuul-jobs master: Use generic stable periodic jobs  https://review.openstack.org/51699717:06
*** jcoufal has quit IRC17:07
clarkbI'm going to push up a patch to disable crm114 then we'll need to delete all teh crm114 content and restart the workers17:07
*** jcoufal has joined #openstack-infra17:07
EmilienMclarkb: I'm not aware of any change on that regard17:08
openstackgerritJean-Philippe Evrard proposed openstack-infra/project-config master: Retire old OSA projects (phase 3)  https://review.openstack.org/51705417:08
*** wolverineav has joined #openstack-infra17:09
openstackgerritPaul Belanger proposed openstack-infra/system-config master: Add more logstash-workers  https://review.openstack.org/51705517:10
*** mdbooth has quit IRC17:10
*** ari[m] has quit IRC17:10
openstackgerritClark Boylan proposed openstack-infra/system-config master: Disable crm114 on the logstash worker nodes  https://review.openstack.org/51705617:10
clarkbEmilienM: I thought you had a change to make use of the regex system?17:11
clarkbinfra-root review on 517056 is appreciated17:11
*** ijw has joined #openstack-infra17:12
*** ari[m] has joined #openstack-infra17:12
pabelangerclarkb: fungi: 517055 brings logstash-workers back online, doing logstash-worker18 now17:12
openstackgerritDavid Shrewsbury proposed openstack-infra/nodepool feature/zuulv3: Add additional launcher logging  https://review.openstack.org/51705717:12
clarkbEmilienM: ya one sec I see it on disk17:12
*** armaan has joined #openstack-infra17:12
clarkbEmilienM: Id5b9be6130e4e4506418a254a5e57e105fa4d03c that one17:12
*** mdbooth has joined #openstack-infra17:12
clarkbEmilienM: we may need to revert that, stablize logstash then work to find a way to make that viable17:12
EmilienMclarkb: we wanted to save log files for all services in /var/log17:13
clarkbEmilienM: yes I know, but there are a few bugs in there I see17:13
EmilienMok cool, revert it17:13
clarkbEmilienM: first is that there are many logs that aren't console logs getting picked up17:13
*** lucasagomes is now known as lucas-afk17:13
clarkbanother is we are indexing unique filenames like ceph-mon-centos-7-ovh-gra1-0000632103/something/or/other which means crm114 will just add those to disk until it runs out17:14
fungibetter to do like devstack-gate and move/copy them to common paths and names before retrieval, i suppose17:15
clarkbit also looks like we may be indexing redundant copies of some logs, let me find some example paths17:16
*** dhajare has quit IRC17:16
*** caphrim007 has joined #openstack-infra17:16
clarkb/var/lib/crm114/logs/subnode-2/var/log/extra/docker/containers/cinder_scheduler/log/cinder/cinder-manage_log_txt_gz and /var/lib/crm114/logs/subnode-2/var/log/extra/docker/containers/logrotate_crond/log/containers/cinder/cinder-manage_log_txt_gz17:17
clarkbon the crm114 side I think we want to treat those as being the same log so have a single entry for cinder-manage_log_txt_gz17:17
clarkbon the tripleo side you should make sure we aren't copying multiple copies of the same log17:17
weshayre: containers probably17:17
*** salv-orlando has joined #openstack-infra17:18
weshayyup containers17:18
pabelangerlogstash-worker18.o.o online, moving to 1917:20
openstackgerritClark Boylan proposed openstack-infra/project-config master: Revert "tripleo: index /var/log/*.log.txt files"  https://review.openstack.org/51705817:21
clarkbthere is a revert so that we can stabilize17:21
*** jcoufal has quit IRC17:21
openstackgerritSagi Shnaidman proposed openstack-infra/tripleo-ci master: DNM: test image build  https://review.openstack.org/51705917:21
openstackgerritEmilien Macchi proposed openstack-infra/project-config master: tripleo: fix release jobs layout  https://review.openstack.org/51706017:22
*** jcoufal has joined #openstack-infra17:22
*** salv-orlando has quit IRC17:22
*** jpich has quit IRC17:22
fricklergordc: stable/newton no longer exists, thus running grenade on stable/ocata won't work for most projects anymore, so you probably have to disable that job like in https://review.openstack.org/51688517:23
openstackgerritEmilien Macchi proposed openstack-infra/project-config master: tripleo: fix release jobs layout  https://review.openstack.org/51706017:23
EmilienMcan someone familiar with zuul v3 jobs for release review that ^ please17:23
clarkbEmilienM: weshay I think step 0 on unreverting is to produce a complete list of all the files that match those regexes on today's jobs. From that we can look at what we want  to get indexed, apply the correct tags to those, and then make any changes to crm114 necessary to actually do that reliably17:23
weshayk17:23
weshaythat sounds reasonable17:23
AJaegermnaser, frickler, could you review now https://review.openstack.org/#/c/516996/ to move forward with periodic change, please?17:26
*** salv-orlando has joined #openstack-infra17:26
weshaypabelanger, remove tripleo periodic upstream jobs  https://review.openstack.org/#/c/517019/17:28
gordcfrickler: hmm... is this new? i don't remember ever disabling grenade on N-2 gate. that said, our grenade does little to nothing so i'm ok with this.lol17:28
openstackgerritMerged openstack-infra/system-config master: Include retired projects/deliverables in elections  https://review.openstack.org/48854317:29
openstackgerritMerged openstack-infra/system-config master: Use foundation member IDs in invitations list  https://review.openstack.org/48855517:29
clarkbEmilienM: commented on the release change17:30
*** slaweq has joined #openstack-infra17:31
*** trown|lunch is now known as trown17:34
*** camunoz has joined #openstack-infra17:34
*** hashar is now known as hasharAway17:35
weshaypabelanger, ovb migration is blocked atm by a newton bug on rdo-cloud17:35
weshaywe're getting the patch on soon17:35
pabelangerweshay: okay, left comment and +2, not to block. Thought it was only OVB periodic moving too17:35
pabelangerweshay: k17:35
fricklergordc: I think this may have happened more globally with zuul v2, matching any *grenade* job or the like, but I haven't checked in detail17:36
*** mdbooth has quit IRC17:36
*** ari[m] has quit IRC17:36
openstackgerritAlex Schultz proposed openstack-infra/project-config master: Drop TripleO jobs from Puppet modules  https://review.openstack.org/51679417:36
*** ari[m] has joined #openstack-infra17:37
openstackgerritAlex Schultz proposed openstack-infra/project-config master: Drop TripleO jobs from Puppet modules  https://review.openstack.org/51679417:37
EmilienMclarkb: how do you explain this error then? http://logs.openstack.org/28/517028/1/check/openstack-tox-validate/2b00b1e/job-output.txt.gz#_2017-11-01_16_18_40_18572717:38
*** mdbooth has joined #openstack-infra17:38
gordcfrickler: cool cool. i'll disable and quote you if we need someone to blame. :)17:38
clarkbEmilienM: I don't know, just pointing out if you look at pypi there is what appears to be long histories of publishing there17:39
clarkbEmilienM: could be a bug in the release scripts themselves?17:39
gordcfrickler: actually, yeah i notice grenade was active on stable/newton patches either. works for me.17:39
gordcwasnt*17:39
openstackgerritJean-Philippe Evrard proposed openstack-infra/project-config master: Add os_congress role to openstack-ansible  https://review.openstack.org/51688417:40
*** ykarel|afk has quit IRC17:40
fricklergordc: actually, it is strange that newton-eol has been tagged 8 days ago, but your job succeeded 2 days ago and fails only now17:40
gordcfrickler: yeah, that's what was confusing me. i guess it was getting lucky. i'm still not sure how it manages to switch to correct stable when it clones master.17:41
EmilienMsmcginnis, dhellmann : if you're around, can you help me to figure out this one please? http://logs.openstack.org/28/517028/1/check/openstack-tox-validate/2b00b1e/job-output.txt.gz#_2017-11-01_16_18_40_18572717:41
clarkbI've stopped the lgostash worker processes and am in the process of cleaning out dirs to free disk space17:42
funginewton eol is sort of a rolling thing, not all repos have been eol'd yet as they're working to land some final fixes and get a last point release tagged first17:42
EmilienMclarkb: sounds like all tripleo projects have wrong release-type, I'm looking at the script now17:42
EmilienMclarkb: honestly I don't know why we push tripleo project son pypi. Removing this jobs makes sense to me17:43
EmilienMclarkb: we don't deploy from source and always use rpms from delorean.17:44
*** rosmaita has quit IRC17:46
fricklerfungi: but does deletion of stable/newton happen later than tagging newton-eol? I can't see when the former happen, the later was 8 days ago here http://git.openstack.org/cgit/openstack/ceilometer17:46
openstackgerritEmilien Macchi proposed openstack-infra/project-config master: tripleo: fix release jobs layout  https://review.openstack.org/51706017:46
EmilienMclarkb: commit message update17:46
fricklerfungi: still the jobs 2 day ago has stable/newton pushed http://logs.openstack.org/43/516443/1/check/grenade-dsvm-ceilometer/71dfb24/job-output.txt.gz#_2017-10-30_21_21_26_47391817:46
fricklerfungi: while todays hasn't http://logs.openstack.org/43/516443/2/check/grenade-dsvm-ceilometer/5b742ca/job-output.txt.gz#_2017-11-01_14_53_33_30708817:47
pabelangerclarkb: we're ready to land: https://review.openstack.org/517055/ all new logstash-workers are online.17:47
fricklerfungi: or did the zuul-mergers cache the branch after it has been deleted?17:47
fungifrickler: one possibility, i suppose, is that zuul executors aren't pruning branch removals17:47
pabelangerfungi: https://review.openstack.org/517055/ too when you have a moment17:48
clarkbpabelanger: thanks17:48
fricklerfungi: yes, that would explain the delayed failures.17:48
*** hasharAway is now known as hasharDinner17:48
clarkb01 02 03 are running workers against, I may have to restart them depending on if puppet races me and starts running them with crm114 again17:48
clarkbconfig-core can I get a second review on https://review.openstack.org/#/c/517058/ please?17:48
clarkbpabelanger: did you accept their new ssh keys so that my crm disablement will get applied?17:49
pabelangerclarkb: just doing that now17:50
*** sshnaidm is now known as sshnaidm|afk17:50
openstackgerritEmilien Macchi proposed openstack-infra/project-config master: tripleo: fix release jobs layout  https://review.openstack.org/51706017:50
*** rosmaita has joined #openstack-infra17:51
pabelanger#status log logstash-worker16.o.o to logstash-worker20.o.o now online and SSH keys accepted17:52
openstackstatuspabelanger: finished logging17:52
fricklerconfig-core: /me has another newton-eol fix needing a second review: https://review.openstack.org/51688517:52
openstackgerritMerged openstack-infra/system-config master: Disable crm114 on the logstash worker nodes  https://review.openstack.org/51705617:53
clarkb2017-11-01 17:38:24,822 Retrieving: http://logs.openstack.org/81/516581/2/gate/legacy-heat-dsvm-functional-convg-mysql-lbaasv2/1c9accf/logs/libvirt/libvirtd.txt.gz?level=INFO 2017-11-01 17:39:06,906 Pushing 988855 log lines.17:54
clarkbthat ^ is also going to be very slow17:54
clarkblooks like it may have actually OOM'd it17:55
*** dhinesh has joined #openstack-infra17:56
openstackgerritMerged openstack-infra/project-config master: Revert "tripleo: index /var/log/*.log.txt files"  https://review.openstack.org/51705817:57
openstackgerritMerged openstack-infra/openstack-zuul-jobs master: Do not run legacy-grenade-dsvm-designate-pdns4 on stable/ocata  https://review.openstack.org/51688517:58
*** felipemonteiro_ has joined #openstack-infra17:59
*** felipemonteiro__ has joined #openstack-infra18:00
*** ralonsoh has quit IRC18:01
*** felipemonteiro_ has quit IRC18:04
*** panda|ruck|bbl is now known as panda|ruck18:04
pabelangerinfra-root: can I get a +3 on https://review.openstack.org/517055/ I'd like to finish that up this afternoon. Happy to self-approve too18:04
AJaegerclarkb, config-core, please review https://review.openstack.org/#/c/516010/ to fix infra-publish jobs - I had to rebase ;(18:04
*** salv-orl_ has joined #openstack-infra18:05
openstackgerritClint 'SpamapS' Byrum proposed openstack-infra/zuul feature/zuulv3: Add BaseSource.getProjectReadonly and refactor  https://review.openstack.org/51706718:06
clarkbok the jenkins log worker processes are running on 01-05 and I expect they will be fine from now on. For 06-20 they are not running and I am just going to clear out the crm data so that when puppet runs it will get it all started there18:07
* AJaeger will move fixed comments from zuulv3-issues to zuulv3-fixed now18:07
*** salv-orlando has quit IRC18:08
EmilienMclarkb: could you please take a second look? https://review.openstack.org/#/c/517060/18:09
openstackgerritMerged openstack-infra/nodepool feature/zuulv3: Use >= in instance count comparison to max-servers  https://review.openstack.org/51698818:10
openstackgerritMerged openstack-infra/nodepool feature/zuulv3: Add additional launcher logging  https://review.openstack.org/51705718:10
clarkbAJaeger: I've +2'd it but won't approve as I actually need to finish packing to catch my flight later today18:12
AJaegerdmsimard: shall I https://review.openstack.org/#/c/513943 +A now? Wanted to wait until you're around18:12
pabelangerclarkb: okay,18:13
openstackgerritDavid Shrewsbury proposed openstack-infra/nodepool feature/zuulv3: Unpause a declined request  https://review.openstack.org/51706818:13
pabelangererr18:13
clarkbEmilienM: you probably want the release team to sign off on that? Are we sure no one is consuming it from pypi?18:13
pabelangerclarkb: okay, I've just +3'd 517055 to open up firewalls on logstash-workers18:13
clarkbjust beacuse red hat doesn't doesn't mean someone else isn't18:13
dmsimardAJaeger: sure, hadn't seen your comment18:13
AJaegerclarkb: safe travels. do you mind if I approve to move forward here?18:13
clarkbAJaeger: ya I thinkyou can approve if you are able to monitor it18:14
EmilienMclarkb: I pinged dhellmann and smcginnis but not reply yet18:14
EmilienMclarkb: I'm happy to restore pypi later if that makes sense18:14
EmilienMbut for now, we need to release things and I don't see anyone around using pypi for tripleo projects, we ship everything via rpm, upstream and downstream18:14
AJaegerclarkb: it needs content from openstack-infra/publications to merge - will keep an eye on that one...18:14
EmilienMwe don't have any tooling deploing tripleo from pypi18:15
*** ansiwen_q is now known as ansiwen[q]18:17
EmilienMmwhahaha: can you sign-off https://review.openstack.org/#/c/517060/ please?18:18
openstackgerritMerged openstack-infra/project-config master: Remove tripleo-ci periodic jobs  https://review.openstack.org/51701918:20
*** dhinesh_ has joined #openstack-infra18:22
AJaegerpabelanger, mnaser, dmsimard, next change for periodic jobs - could one of you review https://review.openstack.org/#/c/516996/ , please?18:22
openstackgerritMerged openstack-infra/project-config master: Fix openstack-infra publishing  https://review.openstack.org/51601018:22
*** Sukhdev has joined #openstack-infra18:23
*** dhinesh has quit IRC18:25
*** dprince has joined #openstack-infra18:25
openstackgerritMerged openstack-infra/project-config master: Retire old OSA projects (phase 3)  https://review.openstack.org/51705418:25
*** yamahata has quit IRC18:26
*** Sukhdev_ has joined #openstack-infra18:28
*** tesseract has quit IRC18:28
*** Sukhdev_ has quit IRC18:29
*** Sukhdev has quit IRC18:29
*** iyamahat has quit IRC18:29
openstackgerritMerged openstack-infra/system-config master: Add more logstash-workers  https://review.openstack.org/51705518:29
*** vhosakot has quit IRC18:29
*** vhosakot_ has joined #openstack-infra18:30
pabelanger^ okay, firewalls should be reloading here in 30mins, I can then start processes on the new workers18:30
*** ansiwen[q] has quit IRC18:30
openstackgerritAndreas Jaeger proposed openstack-infra/project-config master: Remove legacy jobs from Barbican  https://review.openstack.org/51039018:30
*** bnemec has quit IRC18:35
*** Sukhdev has joined #openstack-infra18:35
clarkbpabelanger: make sure crm is disabled first18:36
clarkbpabelanger: files in /etc/logprocessor18:36
openstackgerritJeremy Stanley proposed openstack-infra/system-config master: Use cgit more in contributor listing  https://review.openstack.org/51707718:37
pabelangerclarkb: yah, puppet just ran on those hosts and updated configs18:38
pabelangerso, next run firewalls will open18:38
pabelangerthen we can start18:38
clarkbcool18:38
clarkbI'm starting workers on 06-15 really quickly18:38
clarkbthen back to packing18:38
pabelangerclarkb: direct flight or down to LA?18:39
AJaegerconfig-core, a few job removals from openstack-zuul-jobs for review: https://review.openstack.org/#/c/512635/ https://review.openstack.org/#/c/516011/ https://review.openstack.org/#/c/5170018:39
fungiboarding my first flight now. looking forward to seeing a lot of you next week!18:39
pabelangerfungi: ++18:40
clarkbpabelanger: down to LA then direct from there18:40
clarkbI actually get to run into fungi in LA later tonight18:40
openstackgerritClint 'SpamapS' Byrum proposed openstack-infra/zuul feature/zuulv3: Do not add invalid projets via the /keys API  https://review.openstack.org/51707818:41
pabelangerclarkb: nice18:41
*** rwsu has quit IRC18:42
* SpamapS is filled with FOMO not going to Sydney :-/18:42
*** e0ne has joined #openstack-infra18:44
mwhahahaEmilienM: i want to say we do publish to pypi for like tripleo-common and instack-undercloud18:44
mwhahahaEmilienM: will need to verify tho. I think we need it for the unit tests or something silly like that18:44
*** salv-orl_ has quit IRC18:45
EmilienMmwhahaha: indeed, this is a valid use case that I missed18:46
*** salv-orlando has joined #openstack-infra18:46
EmilienMmwhahaha: not sure why release scripts see these projects as python-service though18:46
mwhahahaEmilienM: no idea about that part18:46
*** MasterOfBugs has joined #openstack-infra18:46
*** coolsvap has quit IRC18:47
*** iyamahat has joined #openstack-infra18:48
clarkbwe are at a 145k logstash gearamn job right now. I think we compare against that watermark in 24 hours or so18:48
clarkbwe'll have new workers, disks are no longer full, and so on18:48
*** salv-orlando has quit IRC18:50
*** dtantsur is now known as dtantsur|afk18:53
openstackgerritJohn Trowbridge proposed openstack-infra/tripleo-ci master: Use playbook from tripleo-quickstart-extras for OVB  https://review.openstack.org/51350818:53
*** sbezverk has joined #openstack-infra18:57
EmilienMclarkb: I think I found out18:58
EmilienMclarkb: I'm preparing a new patchset18:58
EmilienMclarkb: we're missing release-type in all stable deliverables in openstack/releases for tripleo project18:59
*** Apoorva has quit IRC19:00
*** Apoorva has joined #openstack-infra19:01
*** salv-orlando has joined #openstack-infra19:01
*** sambetts is now known as sambetts|afk19:02
*** rlandy is now known as rlandy|brb19:03
*** openstackgerrit has quit IRC19:03
*** bnemec has joined #openstack-infra19:03
AJaegerdmsimard: thanks!19:03
dmsimard?19:03
*** openstackgerrit has joined #openstack-infra19:04
openstackgerritAndreas Jaeger proposed openstack-infra/openstack-zuul-jobs master: Replace legacy-tox-build with native job  https://review.openstack.org/51708119:04
openstackgerritMerged openstack-infra/project-config master: Add os_congress role to openstack-ansible  https://review.openstack.org/51688419:04
openstackgerritMerged openstack-infra/project-config master: Remove legacy networking-cisco jobs  https://review.openstack.org/51703519:04
AJaegerdmsimard: thanks for reviewing my long list of requests ;)19:05
*** Apoorva has quit IRC19:05
dmsimardAJaeger: oh I'm just trying to churn through a bit of review backlog in no particular order :/19:06
*** yamahata has joined #openstack-infra19:06
AJaegerdmsimard: ah,ok - yeah, there's a long list but we're getting there ;)19:06
openstackgerritMerged openstack-infra/openstack-zuul-jobs master: Remove periodic tripleo ci jobs  https://review.openstack.org/51700219:06
*** jascott1 has joined #openstack-infra19:07
dmsimardAJaeger: you're a machine19:07
dmsimard(an awesome machine)19:07
*** efried_rollin is now known as efried19:07
AJaeger;)19:08
dmsimarddefinitely can't keep up19:08
dmsimardI thought we cached the cirros image in the nodepool image, did I hallucinate that ?19:08
dmsimardoh wait, nevermind, it's through the devstack thing19:09
* dmsimard was looking in the wrong place19:09
openstackgerritMerged openstack-infra/project-config master: Use periodic-stable-jobs  https://review.openstack.org/51699619:11
openstackgerritMerged openstack-infra/zuul-jobs master: Persist iptables rules  https://review.openstack.org/51394319:11
openstackgerritAndreas Jaeger proposed openstack-infra/project-config master: Merge project-config linter jobs  https://review.openstack.org/51708619:15
AJaegerconfig-core, I think we can merge the linter jobs now for project-config ^19:15
openstackgerritAndreas Jaeger proposed openstack-infra/openstack-zuul-jobs master: Remove project-config-zuul-jobs-linters  https://review.openstack.org/51708719:16
*** Rockyg has quit IRC19:16
*** catintheroof has quit IRC19:16
*** ijw has left #openstack-infra19:17
openstackgerritEmilien Macchi proposed openstack-infra/project-config master: tripleo: fix release jobs layout  https://review.openstack.org/51706019:17
*** owalsh is now known as owalsh_biab19:18
*** catintheroof has joined #openstack-infra19:18
AJaegerdmsimard: could you review https://review.openstack.org/517087 as well, please? Then my periodic job cleanup is completely done... I rechecked already but am confident it will pass ;)19:18
dmsimardAJaeger: hunting something down right now, will look after19:19
AJaegerdmsimard: sure - thanks19:19
openstackgerritEmilien Macchi proposed openstack-infra/project-config master: tripleo: fix release jobs layout  https://review.openstack.org/51706019:19
*** rlandy|brb is now known as rlandy19:21
openstackgerritPaul Belanger proposed openstack-infra/system-config master: Also add logstash-worker works to cacti  https://review.openstack.org/51708819:21
AJaegerinfra-root, I just see that on nova, the post job publish-openstack-python-branch-tarball has error "error" without log file, see http://logs.openstack.org/ef/ef487de22204fe391e0f536a43ed30df95374540/post/19:22
AJaegerWe recently merged https://review.openstack.org/#/c/516397/ - is there an error in it?19:22
AJaegeror can you get a logfile, please?19:22
*** Goneri has quit IRC19:25
*** Goneri has joined #openstack-infra19:26
*** jcoufal_ has joined #openstack-infra19:27
*** jcoufal has quit IRC19:30
openstackgerritAndreas Jaeger proposed openstack-infra/project-config master: Revert "Add openstack/requirements to publish-openstack-python-branch-tarball"  https://review.openstack.org/51709319:30
*** jcoufal has joined #openstack-infra19:31
AJaegerinfra-root, config-core, that's the short-term fix - but would like to know what the real problem is ^19:31
*** hasharDinner has quit IRC19:31
pabelanger2017-11-01 19:07:34,801 DEBUG zuul.AnsibleJob: [build: 115f586041234056a827e9d518e6a49a] Sending result: {"error_detail": "Unable to find playbook /var/lib/zuul/builds/115f586041234056a827e9d518e6a49a/trusted/project_0/git.openstack.org/openstack-infra/project-config/playbooks/python-branch-tarball/post.yaml", "result": "ERROR"}19:31
pabelangerI see that in logs19:31
pabelangernot sure if related19:31
AJaegerpabelanger: looks related, let me check. thanks19:32
*** salv-orlando has quit IRC19:32
AJaegerindeed, that does not exist...19:32
pabelangerdid we delete or move something?19:32
*** jcoufal_ has quit IRC19:33
AJaegerpabelanger: yes, you did ;( publish-openstack-puppet-branch-tarball removed the wrong dir...19:34
AJaegerpabelanger: change I7ca54a7045023596ec77682214afad5f210ac964 - I'll fix...19:34
pabelangerAJaeger: oh, ya, that will do it19:34
*** ijw has joined #openstack-infra19:36
*** adreznec has joined #openstack-infra19:36
*** hashar has joined #openstack-infra19:36
openstackgerritAndreas Jaeger proposed openstack-infra/project-config master: Readd playbooks/python-branch-tarball/  https://review.openstack.org/51709419:36
AJaegerpabelanger: ^19:36
pabelangerAJaeger: did you also want to delete puppet-branch-tarball, that was the one we wanted to delete19:37
AJaegerpabelanger: that's still used19:37
AJaegeroh, it's not - let me add19:38
pabelangerAJaeger: Ya, it should have been puppet-branch-tarball that was to be original deleted19:38
*** bobh has quit IRC19:38
openstackgerritAndreas Jaeger proposed openstack-infra/project-config master: Readd playbooks/python-branch-tarball/  https://review.openstack.org/51709419:39
AJaegerpabelanger: I did some grep and found usage, must have done something wrong - so here you go ^19:39
openstackgerritIhar Hrachyshka proposed openstack-infra/elastic-recheck master: grenade: wait for service logs before matching against patterns  https://review.openstack.org/49398719:39
pabelangerAJaeger: +319:40
pabelangerthanks19:40
pabelangerclarkb: okay, new logstash-workers started and processing19:41
pabelangerat least I think they are19:41
AJaegerpabelanger: thanks19:41
*** electrofelix has quit IRC19:43
openstackgerritAndreas Jaeger proposed openstack-infra/project-config master: Merge project-config linter jobs (1/2)  https://review.openstack.org/51708619:43
openstackgerritAndreas Jaeger proposed openstack-infra/project-config master: Merge project-config linter jobs (2/2)  https://review.openstack.org/51709519:43
openstackgerritAndreas Jaeger proposed openstack-infra/openstack-zuul-jobs master: Remove project-config-zuul-jobs-linters  https://review.openstack.org/51708719:44
* AJaeger calls it a day19:45
SamYapleo/19:49
*** bnemec has quit IRC19:53
*** makowals has joined #openstack-infra19:55
*** rwsu has joined #openstack-infra19:56
openstackgerritMerged openstack-infra/project-config master: Readd playbooks/python-branch-tarball/  https://review.openstack.org/51709419:57
*** esberglu has quit IRC19:57
*** esberglu has joined #openstack-infra19:57
*** esberglu has quit IRC19:58
*** ihrachys_ is now known as ihrachys20:06
*** eharney has quit IRC20:08
openstackgerritMerged openstack-infra/system-config master: Also add logstash-worker works to cacti  https://review.openstack.org/51708820:08
openstackgerritNicolas Hicher proposed openstack-infra/project-config master: Remove legacy ara job  https://review.openstack.org/51709920:10
openstackgerritIan Wienand proposed openstack-infra/system-config master: puppetmaster: rotate /var/log/puppet_run_all_infracloud.log  https://review.openstack.org/51616520:10
openstackgerritNicolas Hicher proposed openstack-infra/openstack-zuul-jobs master: Remove ara job  https://review.openstack.org/51710020:11
*** edmondsw has quit IRC20:11
*** edmondsw has joined #openstack-infra20:11
openstackgerritDavid Moreau Simard proposed openstack-infra/project-config master: Remove legacy ara job  https://review.openstack.org/51709920:11
*** esberglu has joined #openstack-infra20:13
*** Goneri has quit IRC20:14
*** ldnunes has quit IRC20:15
*** jcoufal_ has joined #openstack-infra20:18
openstackgerritMerged openstack-infra/system-config master: Add new backup host to puppet  https://review.openstack.org/51614820:19
*** jcoufal__ has joined #openstack-infra20:20
*** jcoufal has quit IRC20:20
*** smatzek has quit IRC20:21
openstackgerritMerged openstack-infra/system-config master: Backup zuulv3 with bup  https://review.openstack.org/51615720:22
*** felipemonteiro_ has joined #openstack-infra20:22
*** jcoufal_ has quit IRC20:22
*** rwsu has quit IRC20:23
*** mlavalle has joined #openstack-infra20:24
*** felipemonteiro__ has quit IRC20:24
mlavalleclarkb: ping20:24
clarkbmlavalle: hi20:25
mlavalleclarkb: I recently merged this change https://review.openstack.org/#/c/512856/20:26
*** dprince has quit IRC20:26
mlavalleBut the meeting is still on Thursday: http://eavesdrop.openstack.org/#Neutron_drivers_Meeting20:26
*** edmondsw has quit IRC20:27
clarkbthere is probably a bug in the meeting page update publishing20:27
clarkbmlavalle: can you add it to https://etherpad.openstack.org/p/zuulv3-issues as something that we should track down/triage?20:27
*** jcoufal__ has quit IRC20:27
*** edmondsw has joined #openstack-infra20:27
clarkbI'm going to drive to the airport soon and won't be able to look at it now20:28
mlavalleclarkb: sure, thanks20:28
*** Apoorva has joined #openstack-infra20:28
*** rbrndt has quit IRC20:29
*** Goneri has joined #openstack-infra20:30
EmilienMcould i have a review on https://review.openstack.org/#/c/517060/ please?20:31
*** edmondsw has quit IRC20:31
openstackgerritAndreas Jaeger proposed openstack-infra/project-config master: Merge project-config linter jobs (1/2)  https://review.openstack.org/51708620:32
openstackgerritAndreas Jaeger proposed openstack-infra/project-config master: Merge project-config linter jobs (2/2)  https://review.openstack.org/51709520:32
*** salv-orlando has joined #openstack-infra20:33
openstackgerritNicolas Hicher proposed openstack-infra/project-config master: Remove legacy ara job  https://review.openstack.org/51709920:34
openstackgerritNicolas Hicher proposed openstack-infra/openstack-zuul-jobs master: Remove ara job  https://review.openstack.org/51710020:35
*** bnemec has joined #openstack-infra20:35
*** rbrndt has joined #openstack-infra20:36
*** pramodrj07 has joined #openstack-infra20:36
openstackgerritSam Yaple proposed openstack-infra/bindep master: Fix logic for groups  https://review.openstack.org/51710520:38
*** salv-orlando has quit IRC20:38
*** edmondsw has joined #openstack-infra20:39
*** MasterOfBugs has quit IRC20:40
*** rosmaita has quit IRC20:41
*** rwsu has joined #openstack-infra20:42
*** rfolco_ has quit IRC20:43
*** thiagolib has quit IRC20:46
openstackgerritNicolas Hicher proposed openstack-infra/project-config master: Remove legacy ara job  https://review.openstack.org/51709920:46
openstackgerritDavid Moreau Simard proposed openstack-infra/infra-manual master: Add "openstack-tox-cover (PTI)" to list of things not to convert  https://review.openstack.org/51710620:47
dmsimardAJaeger: ^20:47
*** threestrands has joined #openstack-infra20:48
*** adreznec has quit IRC20:51
*** makowals has quit IRC20:53
*** adreznec has joined #openstack-infra20:53
openstackgerritSam Yaple proposed openstack-infra/bindep master: Fix logic for groups  https://review.openstack.org/51710520:55
SamYapleare we in the midst of another infra mirror vs upstream mirror issue? http://logs.openstack.org/05/517105/1/check/legacy-bindep-fallback-debian-jessie/3db711c/job-output.txt.gz#_2017-11-01_20_42_23_80907920:55
*** kgiusti has left #openstack-infra20:55
*** xingchao has joined #openstack-infra20:56
*** armaan has quit IRC20:56
*** jascott1 has quit IRC20:57
*** armaan has joined #openstack-infra20:57
*** armaan has quit IRC20:57
*** armaan has joined #openstack-infra20:58
*** derekh has quit IRC20:59
*** mat128 has quit IRC21:00
*** xingchao has quit IRC21:00
*** smatzek has joined #openstack-infra21:02
*** smatzek has quit IRC21:04
*** xingchao has joined #openstack-infra21:04
openstackgerritAndreas Jaeger proposed openstack-infra/project-config master: Merge project-config linter jobs (1/2)  https://review.openstack.org/51708621:05
openstackgerritAndreas Jaeger proposed openstack-infra/project-config master: Merge project-config linter jobs (2/2)  https://review.openstack.org/51709521:05
jeblairianw, pabelanger: did we ever set our image builds to use our mirrors?21:06
pabelangerjeblair: we did for ubuntu21:07
pabelangerI think we still need to do centos21:07
pabelangerand others21:07
jeblairand maybe debian?  since that's the one that's broken now21:07
jeblairand also the one that broke last time21:07
pabelangersure, we can do that one too21:08
*** trown is now known as trown|outtypewww21:08
*** thorst has quit IRC21:08
jeblairpabelanger: can you pause and drop the latest jessie image builds in nodepool?21:08
pabelangerjeblair: yes21:08
jeblairi'm trying to see what's going on with mirror-update21:09
*** eharney has joined #openstack-infra21:11
jeblairi think mirror-update may have been rebooted during a repo check and left the lockfile around21:12
*** priteau has quit IRC21:13
openstackgerritPaul Belanger proposed openstack-infra/project-config master: Pause debian-jessie images  https://review.openstack.org/51711021:13
pabelangerjeblair: ^21:13
jeblairpabelanger: +321:14
jeblairpabelanger: looks like your timeout increase landed21:14
jeblairpabelanger: so i'm going to go ahead and just delete the lock file and we'll see how the next run looks.21:14
jeblairpabelanger: sound good?21:14
*** vhosakot_ has quit IRC21:14
pabelangerjeblair: sure21:14
jeblairdone.  next run is in 45m21:15
*** catintheroof has quit IRC21:16
jeblairi could go ahead and run it now in screen i guess?  would that be a good idea?21:16
jeblair(the cronjob flocks, so it should be safe)21:16
pabelangeryah, it should be safe21:16
jeblairflock -n /var/run/reprepro/debian.lock reprepro-mirror-update /etc/reprepro/debian mirror.debian >>/var/log/reprepro/debian-mirror.log 2>&121:17
jeblairi'll just go ahead and run that in screen ^21:17
*** salv-orlando has joined #openstack-infra21:18
*** adreznec has quit IRC21:20
*** PramodJ has joined #openstack-infra21:20
*** pramodrj07 has quit IRC21:21
*** adreznec has joined #openstack-infra21:22
SamYaplejeblair: is that 45m before i should recheck, or 45m before it starts to build?21:23
*** xingchao has quit IRC21:24
*** PramodJ has quit IRC21:24
*** e0ne has quit IRC21:29
openstackgerritMerged openstack-infra/project-config master: Pause debian-jessie images  https://review.openstack.org/51711021:30
jeblairSamYaple: i'm kicking it off now, but as soon as pabelanger is done deleting our new jessie images, it should be ok to recheck21:30
*** dave-mccowan has quit IRC21:30
*** adreznec has quit IRC21:31
pabelangeryah, just looking now at nb03 / nb04 now21:31
jeblairSamYaple: (the fastest fix is to revert to our old images which weren't built with too-new packages, so they can update to what's in the mirror)21:31
pabelangeroh, darn21:31
jeblairSamYaple: (once the mirror is updated, we can build new images again)21:31
pabelangermade a mistake21:31
*** adreznec has joined #openstack-infra21:32
SamYaplecool. thanks for the info21:33
jeblairpabelanger: what's that?21:33
openstackgerritPaul Belanger proposed openstack-infra/project-config master: Also pause debian-jessie in nodepool.yaml  https://review.openstack.org/51711221:33
pabelangerjeblair: SamYaple: ^21:33
pabelangerbuilders are using that file21:33
jeblairpabelanger: ah, as mistakes go that's not a bad one :)21:33
pabelanger:)21:34
jeblairi was expecting "deleted all images" or something21:34
pabelangerah21:34
pabelangernot yet21:34
jeblairlol21:34
jeblairpabelanger: looks like 0000004588 is the one to delete, yeah?21:35
*** xingchao has joined #openstack-infra21:36
openstackgerritNicolas Hicher proposed openstack-infra/openstack-zuul-jobs master: Remove ara job  https://review.openstack.org/51710021:38
pabelangerjeblair: yes21:41
*** rcernin has joined #openstack-infra21:42
*** bocon has joined #openstack-infra21:45
*** bocon has quit IRC21:45
jeblairpabelanger, SamYaple: it looks like the mirror release just happened successfully21:48
SamYaple:+1:21:49
jeblairpabelanger: so if you haven't deleted the images yet, i don't think we have to21:49
jeblairSamYaple: can you go ahead and recheck and let us know if it looks better?21:49
SamYapleyour wish is my task i will do at some point21:50
pabelangerjeblair: oh, okay, I was waiting for patch to land21:51
pabelangerjeblair: but I actually need to afk now, do you mind if I hand off to you?21:51
*** Sukhdev has quit IRC21:51
jeblairpabelanger: yep.  thanks!21:52
pabelangerianw: dmsimard: do you mind stepping in? See back scroll about debian-jessie21:52
dmsimardlet me see21:52
ianwpabelanger: ok, i'm dropping kids to school, back in 10 minutes21:52
jeblairi don't think there's anything to do at the moment except wait for feedback from SamYaple21:52
dmsimardpretty sure our configure-mirror role works for every supported distro21:53
* dmsimard wrote that21:53
jeblairthe second patch had a syntax error preventing it from landing21:53
jeblairnono that's not the problem21:53
dmsimardoh I understand21:54
jeblairthe summary is: our debian mirror got stuck and was not updating, but our images built with newer packages, so they can't upgrade anymore.  the procedure in this situation is to pause image builds and revert to last known good image.21:54
dmsimardyeah, I realized that by re-reading slowly21:54
jeblairwe were half-way through that procedure when i unstuck the mirror.  so instead of rolling back, we *should* be able to roll-forward21:54
SamYaplejeblair: pabelanger the news is good. jessie test passed21:54
jeblairi just want to get confirmation that the newly updated mirror fixes the problem before i revert pabelanger's pause patch.21:54
SamYaplethanks for the quick response :)21:55
jeblairwhich we have!21:55
*** adreznec has quit IRC21:55
dmsimardSo the gist of the issue is that we should probably be using our own mirrors when building images21:55
SamYaplei thought we were going to do that already21:55
dmsimardbecause I can see this kind of issue being a bit racy, even if the mirrors aren't stuck21:55
openstackgerritJames E. Blair proposed openstack-infra/project-config master: Revert "Pause debian-jessie images"  https://review.openstack.org/51711421:55
SamYapleafter what happened with the buntus21:55
jeblairdmsimard: yes.  apparently we only got as far as doing that for ubuntu, not debian21:56
dmsimardSamYaple: It might already be the case, I'm not sure.. I'll dig21:56
jeblairdmsimard: now that we have the all clear from SamYaple, can you +3 517114 ?21:56
*** felipemonteiro_ has quit IRC21:56
dmsimardI can and I did21:56
*** adreznec has joined #openstack-infra21:57
*** rwsu has quit IRC21:57
jeblair#status log jessie mirror not updated since oct 10 due to reboot of server mid-update. manually removed stale lockfile for debian jessie reprepro; mirror updated and release sucessfully.21:57
openstackstatusjeblair: finished logging21:57
jeblairokay, that should be everything, aside from the future-proofing by using mirrors during builds21:58
*** eharney has quit IRC21:59
*** bobh has joined #openstack-infra21:59
dmsimardjeblair: for centos/fedora I think this does the trick: https://git.openstack.org/cgit/openstack/diskimage-builder/commit/diskimage_builder/elements/centos-minimal?id=649f0b66d9011bc041f33281c1b25949b8d8628d22:00
dmsimardit seems like the support for the different distros is there as well https://git.openstack.org/cgit/openstack/diskimage-builder/tree/diskimage_builder/elements/openstack-ci-mirrors/environment.d/11-dib-distribution-mirror.bash22:01
fungiif we ever end up with a community monitoring system, i can imagine polling and tracking the last updated timestamp across the various mirrors could be useful... or maybe we tweak the mirror builds to emit events to graphite22:01
dmsimardfungi: I still need to write that spec :(22:01
jeblairfungi: ++22:01
dmsimardon my todo22:01
*** shardy has quit IRC22:01
* fungi disappears back into the sky22:01
jeblairmirror volume not released in > 48h is a really good and safe metric.22:01
*** bobh has quit IRC22:03
*** florianf has quit IRC22:04
dmsimardianw: can you help a DIB noob out ? pretend we include 'openstack-ci-mirrors' in our images, what does it actually do ? i.e, https://git.openstack.org/cgit/openstack/diskimage-builder/tree/diskimage_builder/elements/openstack-ci-mirrors/environment.d/11-dib-distribution-mirror.bash22:06
dmsimardI'm not clear on what "environment.d" ends up doing22:07
dmsimardI *think* it's meant to be included /before/, say, ubuntu-minimal, centos-minimal, so that these end up configuring the openstack-infra mirrors22:07
jeblairdmsimard: without answering that question -- i will note i believe that element is designed to aid in gate testing, and not necessarily in actual image building22:08
openstackgerritMerged openstack-infra/project-config master: Revert "Pause debian-jessie images"  https://review.openstack.org/51711422:08
dmsimardbut I don't think the necessary variables, like NODEPOOL_UBUNTU_MIRROR, would be available for building22:08
dmsimardjeblair: yeah I'm trying to understand :)22:08
jeblairdmsimard: if it helps, i think https://review.openstack.org/511492 is the change to use the ubuntu mirror for our image builds22:09
dmsimardjeblair: regardless, I'm not sure to what extent we want to persist openstack-infra mirrors inside the image since they end up being distributed in every cloud with different mirrors anyway..22:09
*** xingchao has quit IRC22:09
jeblairdmsimard: yeah, we still want the update22:09
jeblairgr22:09
jeblairdmsimard: we still want the configure-mirror role to update the config on the node, we just want the image built from one of the mirrors to start with.22:10
jeblairdmsimard: i believe pabelanger hard-coded rax into our nodepool config for building that because all our image builds happen in rax22:10
dmsimardjeblair: the openstack-ci-mirrors element basically does what that patch you sent me, it sets up DIB_DISTRIBUTION_MIRROR22:10
*** xingchao has joined #openstack-infra22:10
dmsimardjeblair: but it expects NODEPOOL_*_MIRROR to exist, which is not a thing on nodepool builders22:11
jeblairdmsimard: exactly.  it's a thing on built images, but not on the builders.  so pabelanger's patch adds it to the DIB environment via nodepool.22:11
* dmsimard nod22:11
*** edmondsw has quit IRC22:13
*** edmondsw has joined #openstack-infra22:13
*** panda|ruck is now known as panda|ruck|off22:13
*** rbrndt has quit IRC22:13
SamYaplejust an fyi, before we tag a new bindep this should merge because it changes the group logic a touch and i dont want to see a released version where we have to support the old logic (which hasnt been tagged yet) https://review.openstack.org/#/c/517105/22:17
*** rlandy is now known as rlandy|afk22:17
*** edmondsw has quit IRC22:18
*** baoli has quit IRC22:19
ianwdmsimard: hey, yeah opestack-ci-mirrors takes the /etc/ci-mirror file that's written out (now by ansible, used to be slave scripts) and translates that into some .repo files and environment variables for dib to use mirrors during the build22:20
*** xarses has quit IRC22:20
*** mlavalle has quit IRC22:21
*** gordc has left #openstack-infra22:23
*** slaweq has quit IRC22:24
*** salv-orlando has quit IRC22:25
*** owalsh_biab is now known as owalsh22:26
ianwyeah, so in dib functional tests, we don't care about the final image22:26
ianwthe thing i've never been convinced we have a good solution for not leaving the mirror behind in the image.  just because you build against it, doesn't mean you want your final image to reference it22:27
*** rbrndt has joined #openstack-infra22:28
jeblairwell, in our case it *should* be overwritten by our configure_mirror role so it shouldn't matter too much.  but yeah, ideally we'd leave something more neutral in place.  especially if we wanted to publish the images.22:29
openstackgerritJesse Keating proposed openstack-infra/zuul feature/zuulv3: Prime github app install map on connection load  https://review.openstack.org/51712122:29
ianwjeblair: yeah, that was what i mean from a generic dib mechanism point of view22:30
ianwwe have DIB_DISTRIBUTION_MIRROR ... but that change from pabelanger added another bit to the element to strip the build mirrors out, a function dib should really provide22:31
ianwalso we got all tangled up trying to make one global "use this variable to point to mirrors" but it just didn't work across platforms.  i remember discussions with greghaynes22:32
*** lbragstad has quit IRC22:33
greghaynesI think I was trying to undo the single global variable to make it easier for a user to export one set of env vars and depending on the distro being made the right env var would be used22:38
greghaynesbeen a while though22:38
greghayneshttps://review.openstack.org/#/c/408850/22:38
greghayneslooks like thats a thing now :)22:38
*** MasterOfBugs has joined #openstack-infra22:40
*** esberglu has quit IRC22:43
*** tpsilva has quit IRC22:43
*** thorst has joined #openstack-infra22:45
*** owalsh is now known as owalsh_pto22:46
*** thorst has quit IRC22:46
ianwgreghaynes: yeah, we never really covered the clearing out bit though22:48
*** aeng has joined #openstack-infra22:50
*** ijw has quit IRC22:50
*** smatzek has joined #openstack-infra22:52
*** rbrndt has quit IRC22:53
*** wolverineav has quit IRC22:54
openstackgerritClint 'SpamapS' Byrum proposed openstack-infra/zuul feature/zuulv3: Add BaseSource.getProjectReadonly and refactor  https://review.openstack.org/51706722:56
openstackgerritClint 'SpamapS' Byrum proposed openstack-infra/zuul feature/zuulv3: Do not add invalid projets via the /keys API  https://review.openstack.org/51707822:56
*** smatzek has quit IRC22:57
*** adreznec has quit IRC22:57
*** salv-orlando has joined #openstack-infra22:59
*** adreznec has joined #openstack-infra22:59
*** 5EXAAPFFA has joined #openstack-infra23:01
openstackgerritSagi Shnaidman proposed openstack-infra/tripleo-ci master: DNM: test repositories  https://review.openstack.org/51713023:03
*** hongbin has quit IRC23:09
*** gildub has joined #openstack-infra23:12
*** armax has quit IRC23:13
*** calbers has quit IRC23:22
*** calbers has joined #openstack-infra23:24
jlvillalHas this been asked before? We download files from repo.tinycorelinux.net to build our TinyIPA. Would it be possible for these files to be mirrored on the openstack.org infrastructure somewhere so we don't get errors if the server is down?23:24
*** xingchao has quit IRC23:24
*** gmann_afk is now known as gmann23:24
jlvillalFor example just got an error like this: http://logs.openstack.org/60/516060/1/gate/ipa-tempest-dsvm-partition-bios-pxe_ipmitool-tinyipa-src/2dabfad/logs/devstacklog.txt.gz#_2017-11-01_21_34_52_04923:24
jlvillalI see that repo.tinycorelinux.net does support rsync23:25
*** gyee has quit IRC23:25
*** calbers has quit IRC23:27
*** hashar has quit IRC23:27
*** mikal has quit IRC23:28
*** jklare has quit IRC23:30
ianwjlvillal: it has not been asked, but it would be possible23:33
ianw(not asked afaik)23:34
jlvillalianw: Cool. I'll discuss with the Ironic team.23:34
jlvillalianw: we have had erratic failures for sure due to issues with their site being down or just hiccups23:34
ianwjlvillal: is it a deb repo?23:34
jlvillalianw: No. It is tar.gz files :)23:34
ianwahh, http://repo.tinycorelinux.net/8.x/x86/release/ ?23:35
jlvillalianw: For example a file might be: texinfo.tcz23:35
jlvillalianw: yeah!23:35
ianwjlvillal: ok, in some cases we've done caching reverse proxies on a certain port, but if they have rsync and no special signing requirements, etc, then a mirror job is probably best23:38
jlvillalianw: Cool. Yeah, seems like I can just rsync the files. I did some directory walking with rsync without issues.23:39
jlvillalianw: I would say it is slightly insecure method, but then again they only offer http: as it is :(  So rsync isn't any less secure than that.23:40
*** salv-orl_ has joined #openstack-infra23:41
*** larainema has quit IRC23:41
*** salv-orlando has quit IRC23:43
ianwjlvillal: https://git.openstack.org/cgit/openstack-infra/system-config/tree/modules/openstack_project/manifests/mirror_update.pp is where to look23:44
jlvillalianw: Thanks23:44
ianwreverse proxy can work too, but if the remote end is intermittent or does things like partial updates that you tend to catch, having a periodic mirror is probably better23:44
jlvillalSo since I just saw a TIMED_OUT failure on: https://review.openstack.org/#/c/517063/  I was wondering if could get a review for: https://review.openstack.org/#/c/513444/  it does have one +2 :)23:45
*** jklare has joined #openstack-infra23:47
ianwoh nice one, meaning to look at that.  I also feel like i've seen issues highlighting MERGE_FAILURE23:48
openstackgerritClint 'SpamapS' Byrum proposed openstack-infra/zuul feature/zuulv3: Make encrypt_secret.py work with OpenSSL 0.x  https://review.openstack.org/51713323:50
openstackgerritJesse Keating proposed openstack-infra/zuul feature/zuulv3: Prime github app install map on connection load  https://review.openstack.org/51712123:50
*** 5EXAAPFFA has quit IRC23:50
jlvillalianw: Oh that might be another one to add. Not sure I have seen it or not myself.23:50
jlvillalAdd as in a new patch at some point...23:51
*** jaypipes has quit IRC23:54
*** links has joined #openstack-infra23:56
*** pramodrj07 has joined #openstack-infra23:56
*** stakeda has joined #openstack-infra23:57
*** MasterOfBugs has quit IRC23:59

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