Thursday, 2025-04-03

-@gerrit:opendev.org- Clark Boylan proposed: [zuul/zuul] 945907: WIP Make Gerrit Connection Replication Aware https://review.opendev.org/c/zuul/zuul/+/94590702:21
-@gerrit:opendev.org- Simon Westphahl proposed: [zuul/zuul] 946240: Always clear wake event of TPE event connectors https://review.opendev.org/c/zuul/zuul/+/94624012:20
-@gerrit:opendev.org- Simon Westphahl proposed: [zuul/zuul] 946240: Always clear wake event of TPE event connectors https://review.opendev.org/c/zuul/zuul/+/94624012:21
@f2ked:matrix.orgI'm trying to build the docker, I'm using docker compose and needed to set `PBR_VERSION`. Unfortunately, the resutling docker image did not install/copy-over `zuul/vendor`14:25
```
File "/usr/local/lib/python3.11/site-packages/zuul/scheduler.py", line 28, in <module>
from zuul.vendor.contextlib import nullcontext
ModuleNotFoundError: No module named 'zuul.vendor'
```
@fungicide:matrix.orgf2ked: you need a working yarnpkg executable or it'll be skipped14:26
@f2ked:matrix.orgfungi: where? the Dockerfile installs and runs it,right?14:28
```
COPY web /tmp/src
# Explicitly run the Javascript build
RUN cd /tmp/src && yarn install -d && yarn build
```
@fungicide:matrix.orgit should, yes. maybe the problem is elsewhere, i had just noticed when building sdists that it was skipped if not present, i guess the container image builds have it as a hard dependency14:29
@f2ked:matrix.orgI had to set `PBR_VERSION` to make pbr/sdists happy, I could not figure out why it was not happy with the git image (maybe because it is a submodule?)15:24
@clarkb:matrix.orgif you are using submodules then you aren't using our dockerfile as I'm pretty sure therea re no submoduels there15:24
@fungicide:matrix.orgyeah, i don't know how pbr would handle being run from within a submodule context either15:25
@fungicide:matrix.orgwe basically avoid submodules like the plague15:25
@clarkb:matrix.orgit might expect the parent repo to respect its version schema and semantics15:25
@f2ked:matrix.orgI'm using your Dockerfile with a small change and docker-compose15:26
```
@f2ked:matrix.org* I'm using your Dockerfile with a small change and docker-compose15:26
```
build:
context: ./zuul
dockerfile: ../zuul.Dockerfile
```
@f2ked:matrix.orgthe change merely set the UID of the zuul user to a required value15:27
@clarkb:matrix.orgbut where do submodules come into play?15:28
@f2ked:matrix.orgbut that is what `PBR_VERSION` is for.. but how do I get it to not skip `zuul/vendor`15:28
@f2ked:matrix.orgI have a git repo with all my stuff and nodepool and zuul are submods15:28
@f2ked:matrix.orgif I need to make them "side gits" then so be it15:29
@fungicide:matrix.orgit's entirely possible that pbr's manifest generation is being confused by running in a submodule15:30
@fungicide:matrix.orgnormally pbr inspects git ls-files to decide what files should be packaged15:30
@clarkb:matrix.organd it generates version info from the git log (which it may also be confusing the parent repo log for zuul's log)15:31
@clarkb:matrix.orgusing PBR_VERSION short circuits that behavior and it will just use the version you set in that var15:31
@clarkb:matrix.orgusually that version is expected to be used by distribution packagers who may be carrying local patches to their packages that they need udpated versions for15:31
@clarkb:matrix.orgyou probably need to read a more complete log of the image build to see where vendor/contextlib.py is getting lost. Maybe even inspect each stage of the build process to see where it disappears15:35
@f2ked:matrix.orgwhen  in the submodule directory.. it looks like a normal repo.. but it may be confused the `.git` is (now by default) a file reference to a dir in the parent `.git`.  maybe if I force it to have it's own `.git` it might work?15:35
@clarkb:matrix.orgside note we support pythons that are all new enough taht we no longer need to vendor that code and can rely on stdlib15:35
@f2ked:matrix.orgI've scoured the logs.. it simply isn't mentioned15:36
@clarkb:matrix.orgok I think what is happening is `COPY . /tmp/src` line 60 of the Dockerfile gets your submodule without the git info. Then pbr can't do its job15:38
@clarkb:matrix.orgit can't determine a version and it can't determine which files to incldue dynamically because you are no longer providing the git info15:38
@fungicide:matrix.orgah, yeah i was confusing the vendored python libs with the vendored javascript libs for the dashboard, but i guess those end up in a different directory entirely15:40
@f2ked:matrix.orgok.. but the version issue is solved by `PBR_VERSION`, is there anything I can do to get the `vendor` stuff copied over?16:30
-@gerrit:opendev.org- Clark Boylan proposed: [zuul/zuul] 945907: WIP Make Gerrit Connection Replication Aware https://review.opendev.org/c/zuul/zuul/+/94590716:38
@fungicide:matrix.orgyou might be able to manually construct the python packaging manifest to include those files rather than relying on pbr to find them through git inspection16:44
@clarkb:matrix.orgcorvus: I see the stack based on eatmydata is approved (no concerns there from me). I do wonder if maybe we should update ensure-zookeeper to have a use eatmydata option in addition to using tmpfs though16:45
@clarkb:matrix.orgthoguh maybe its utility for nodepool is quickly going away16:46
@jim:acmegating.comyeah if we feel like that would be a good general option, i think it would be okay to add.  would simplify the test setup a bit (get rid of an extra restart).  just didn't want to commit zuul-jobs to it until we knew it was worthwhile16:47
@jim:acmegating.comi'm not sure i'd bother changing the nodepool jobs.  could cause problems with no benefit.16:48
@clarkb:matrix.orgya and nodepool is winding down so unlikely to get major changes that need to be more memory nible16:49
@clarkb:matrix.org* ya and nodepool is winding down so unlikely to get major changes that need to be more memory nimble16:49
@clarkb:matrix.orgzuulians there is discussion on the gerrit mailing list about updating the zuul results summary plugin that ianw wrote to be a checks plugin. I think having a zuul checks plugin would be great either way but wanted to make note of that here in case anyone other than opendev is using that plugin and may need to pin an older version while changes occur16:51
@clarkb:matrix.orgits still a proposal and not necessarily going to happen but you should be aware if using that plugin16:52
@jim:acmegating.comi think we should request that they not gut and replace the existing plugin16:57
@clarkb:matrix.orgcorvus: do you want to respond or should I? I'm not sure if you are subscribed16:58
@jim:acmegating.comthere are a lot of open questions about how a checks plugin would actually integrate with various types of zuul instances; also the minor fact that zuul makes no public api guarantees.  it would be good to retain our existing codebase while that settles out.16:59
@jim:acmegating.comi will reply16:59
@jim:acmegating.comdone, hope that captures things17:15
@clarkb:matrix.orgI see it and looks good to me17:19
-@gerrit:opendev.org- James E. Blair https://matrix.to/#/@jim:acmegating.com proposed: [zuul/zuul-jobs] 946289: Add eatmydata support to ensure-zookeeper https://review.opendev.org/c/zuul/zuul-jobs/+/94628917:40
@f2ked:matrix.orgfungi: thanks for the tip.. FWIW this solves it for me17:43
```
diff --git a/MANIFEST.in b/MANIFEST.in
index e571dfa8b..8a3ee29b4 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -4,6 +4,7 @@ include zuul/ansible/*/*
include zuul/ansible/*/*/*
include zuul/driver/github/graphql/*
include zuul/lib/ansible-config.conf
+include zuul/vendor/*
include zuul/web/static/*
include zuul/web/static/static/*/*
```
-@gerrit:opendev.org- Zuul merged on behalf of James E. Blair https://matrix.to/#/@jim:acmegating.com: [zuul/zuul] 946176: Fix change cache test races https://review.opendev.org/c/zuul/zuul/+/94617617:52
-@gerrit:opendev.org- Zuul merged on behalf of James E. Blair https://matrix.to/#/@jim:acmegating.com: [zuul/zuul] 946166: Use eatmydata with zookeeper in tests https://review.opendev.org/c/zuul/zuul/+/94616617:53
-@gerrit:opendev.org- Zuul merged on behalf of James E. Blair https://matrix.to/#/@jim:acmegating.com: [zuul/zuul] 945743: Remove tenant references from project parsing https://review.opendev.org/c/zuul/zuul/+/94574318:25
@clarkb:matrix.orgcorvus: I think the stack behind ^ needs a recheck18:37
@jim:acmegating.comyep was just waiting for the timeout.  i checked this morning and it looked like we're at 7% failure rate.  which is... not bad compared to recent history :)18:57
@clarkb:matrix.orgthings definitely seem happier18:58
@jim:acmegating.comrare opportunity to see the active window in action on the zuul tenant :)19:02
-@gerrit:opendev.org- James E. Blair https://matrix.to/#/@jim:acmegating.com proposed: [zuul/zuul-jobs] 946289: Add eatmydata support to ensure-zookeeper https://review.opendev.org/c/zuul/zuul-jobs/+/94628919:05
-@gerrit:opendev.org- James E. Blair https://matrix.to/#/@jim:acmegating.com proposed:20:21
- [zuul/zuul-jobs] 946289: Add eatmydata support to ensure-zookeeper https://review.opendev.org/c/zuul/zuul-jobs/+/946289
- [zuul/zuul-jobs] 946304: Remove Red Hat support from ensure-zookeeper https://review.opendev.org/c/zuul/zuul-jobs/+/946304
@jim:acmegating.comred hatters -- i'd like feedback on what to do with that role in 946304 (remove rh support? or maybe there's a way to fix testing?  or leave it alone and add an "untested, best effort" caveat to the docs?)20:22
@clarkb:matrix.orgis there a link to a failure? that may be helpful in understanding if fixing it is reasonable20:25
@jim:acmegating.comhttps://zuul.opendev.org/t/zuul/build/e0864716d7ef4aec8ad0e0443bc8ffa220:26
@jim:acmegating.comi just added that as a comment to the change too20:26
@jim:acmegating.comthat's on the change above it, but not running with the eatmydata package20:26
@jim:acmegating.com(so effectively the current state)20:28
@clarkb:matrix.orglooking at https://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/Packages/ I thik they may have dropped the latest jdk packge and now you have to use something like java-21-openjdk-headless20:30
@clarkb:matrix.org17, 11, and 8 are also available20:30
@clarkb:matrix.org(though 8 is 1.8.0)20:30
@clarkb:matrix.orgbut then I'm not sure if you get a generic java binary you can run so probably best if someone who cares digs in20:34
@clarkb:matrix.orgoh I guess zookeeper's startup script may find java for itself. Maybe that is all that needs to change20:34
@jim:acmegating.comyeah if we have to keep bumping those versions... and there's no one interested in bumping those versions... then we should probably retire it.21:17
-@gerrit:opendev.org- James E. Blair https://matrix.to/#/@jim:acmegating.com proposed: [zuul/zuul] 946308: Make test_zuul_query_ltime more deterministic https://review.opendev.org/c/zuul/zuul/+/94630821:49
@iwienand:matrix.org>  updating the zuul results summary plugin that ianw wrote to be a checks plugin22:48
that sounds great, it was just too much time for me to figure out all the polymer and shadow doms and whatever to get it done right :)
@fungicide:matrix.orgto be clear, you don't want to make a mistake drawing the binding sigil for those before you summon22:50
@iwienand:matrix.org🤣 i _might_ sign on the dotted line if I had any indication that the whole framework wouldn't be declared as deprecated and the completely incompatible V3 would be released 5 minutes later22:53
@iwienand:matrix.org(grumpy old person who regularly works with .c files with (c) dates in the 80's :)22:54
@jim:acmegating.comto be clear, i think it sounds great too -- but on the mailing list i'm pushing that they do that in a new repo :)22:55
@fungicide:matrix.orgthat sums up my impression of web frameworks to a t22:55
@jim:acmegating.comthey're also not really talking about updating it to use the checks api -- they're talking about a completely different plugin codebase22:56
@jim:acmegating.comlike, the existing plugin reads the data from the review messages, and writes it to the web interface in a tab22:57
@jim:acmegating.comthe code base they are talking about gets the data from the zuul api, and writes it to the checks api22:57
@jim:acmegating.comso there's almost nothing in common22:57
@jim:acmegating.comscraping from the review message and writing to the checks api might be something that would make sense to do in that repo, but i don't think that's what's on offer.23:02
-@gerrit:opendev.org- Zuul merged on behalf of James E. Blair https://matrix.to/#/@jim:acmegating.com: [zuul/zuul] 945744: Stop copying ProjectConfig objects when adding to layout https://review.opendev.org/c/zuul/zuul/+/94574423:10
-@gerrit:opendev.org- Zuul merged on behalf of James E. Blair https://matrix.to/#/@jim:acmegating.com: [zuul/zuul] 945745: Check for nodeset label perms in layout https://review.opendev.org/c/zuul/zuul/+/94574523:15
-@gerrit:opendev.org- Zuul merged on behalf of James E. Blair https://matrix.to/#/@jim:acmegating.com:23:28
- [zuul/zuul] 945746: Check for job timeouts in layout https://review.opendev.org/c/zuul/zuul/+/945746
- [zuul/zuul] 945747: Resolve required-projects in layout https://review.opendev.org/c/zuul/zuul/+/945747
-@gerrit:opendev.org- Zuul merged on behalf of James E. Blair https://matrix.to/#/@jim:acmegating.com: [zuul/zuul] 945748: Resolve include-vars projects in layout https://review.opendev.org/c/zuul/zuul/+/94574823:28
-@gerrit:opendev.org- James E. Blair https://matrix.to/#/@jim:acmegating.com proposed: [zuul/zuul] 946315: Fix change cache test races more https://review.opendev.org/c/zuul/zuul/+/94631523:56

Generated by irclog2html.py 2.17.3 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!