*** ociuhandu has joined #openstack-infra | 00:13 | |
clarkb | ok ptg recap email sent | 00:15 |
---|---|---|
ianw | Step 3/3 : RUN assemble | 00:17 |
ianw | ---> Running in 0d9bd5f0a7ee | 00:17 |
ianw | mordred: ^ i'm not seeing what has removed that script in the nodepool-builder images | 00:18 |
*** ociuhandu has quit IRC | 00:18 | |
clarkb | looking at syslog on ask.o.o I notice that we did update our logrotate config for apache there | 00:31 |
*** yamamoto has joined #openstack-infra | 00:32 | |
clarkb | we went from restarting apache to reloading apache. Reading opendev/puppet-httpd/manifests/logrotate.pp we don't seem to have changed that recently | 00:32 |
clarkb | I think that implies that maybe apache2's package updated recently on that host and then puppet ran and updated the logrotate config to be a reload instead of a restart? | 00:32 |
clarkb | possible this was an upstream bug that got fixed in that update maybe? | 00:33 |
mordred | ianw: that script isn't in the nodepool-builder images - it's in the python-builder image | 00:36 |
ianw | mordred: but doesn't isn't it inherited? | 00:36 |
mordred | ianw: for building the nodepool images, we use the python-builder image for building wheels with their build-deps installed, then the final image is based on python-base and the wheels are copied in | 00:37 |
ianw | ohh, ok, i think i see | 00:38 |
mordred | ianw: we could do a similar thing for the test-specific image - use python-builder to build a wheel of dib, then have the second image be based on nodepool-builder and have it copy in the wheels and install them | 00:38 |
mordred | no reason that shouldn't work :) | 00:38 |
ianw | ok, yep let me try | 00:38 |
ianw | basically two "COPY --from=builder /output/ /output" | 00:39 |
ianw | (but with --from=dib or something) | 00:39 |
*** yamamoto has quit IRC | 00:41 | |
mordred | yeah | 00:43 |
*** yamamoto has joined #openstack-infra | 00:46 | |
paladox | mordred it appears the thread issue we were having was either the hardware or the kernel (more the kernel).. | 00:50 |
paladox | we haven't had the issue in over >3 weeks | 00:50 |
paladox | (since the move to the new server && os upgrade (jessie -> buster)) | 00:50 |
openstackgerrit | zhurong proposed openstack/project-config master: Grant permissions for murano-dashboard to horizon-core https://review.opendev.org/691140 | 00:51 |
clarkb | infra-root I think https://review.opendev.org/#/c/693915/1 is ready to go in now | 00:52 |
clarkb | Then when that is in we can land https://review.opendev.org/#/c/691966/ | 00:52 |
mordred | paladox: oh joy | 00:53 |
clarkb | that should remove the opensuse-150 image completely | 00:53 |
paladox | yup | 00:53 |
clarkb | one less EOL'd image to worry about | 00:53 |
paladox | mordred things are much much much more stable now! | 00:53 |
paladox | at least the threads look much healthier then a year ago (and before the problem started too) | 00:53 |
mordred | \o/ | 00:53 |
ianw | mordred: cool, that work-ish | 00:54 |
mordred | ianw: yay | 00:54 |
ianw | hrrm, it seemed to install, but that container is giving errors that look like the old dib | 00:55 |
mordred | ianw: paste your dockerfile? | 00:55 |
*** tosky has quit IRC | 00:55 | |
ianw | mordred: http://paste.openstack.org/show/786005/ | 00:56 |
ianw | it installed (this is in the dib source dir) http://paste.openstack.org/show/786006/ | 00:57 |
*** armax has quit IRC | 00:58 | |
mordred | ianw: that certainly _looks_ right | 01:00 |
openstackgerrit | Merged openstack/project-config master: Remove opensuse-150 https://review.opendev.org/693915 | 01:00 |
ianw | mordred: oh, bah i think it is, i don't think i pulled the change i thought i did into the local tree | 01:04 |
mordred | ianw: whoops :) | 01:04 |
openstackgerrit | zhurong proposed openstack/project-config master: Grant permissions for murano-dashboard to horizon-core https://review.opendev.org/691140 | 01:06 |
*** rlandy|rover has quit IRC | 01:08 | |
*** goldyfruit has joined #openstack-infra | 01:12 | |
*** rlandy has joined #openstack-infra | 01:14 | |
*** rlandy has quit IRC | 01:15 | |
ianw | curl: command not found ... but it's getting a lot closer; it actually starts building something | 01:15 |
mordred | yay | 01:16 |
*** ociuhandu has joined #openstack-infra | 01:16 | |
mordred | ianw: we might want to put curl into the actual nodepool-builder image :) | 01:16 |
ianw | yeah, ps was another thing it complained about | 01:18 |
mordred | ianw: maybe those should go into https://review.opendev.org/#/c/693306 once you've got the list | 01:20 |
mordred | ianw: pabelanger has a good idea in the comments on https://review.opendev.org/#/c/693306 - I wonder if we shouldn't combine what he's saying with what you're doing for this test image ... | 01:24 |
*** ociuhandu has quit IRC | 01:24 | |
ianw | mordred: yeah, i was sort of thinking that too | 01:25 |
mordred | ianw: but invert it - so we make and publish a dib image with the extra bits in it we need - then in the nodepool dockerfile, we make the nodepool-builder image FROM opendevorg/diskimage-builder and duplicate the --from=builder /output/ /output stuff | 01:26 |
mordred | it would mean a little bit of duplication - the whole FROM opendevorg/python-base as nodepool block would essentially need to be duplicated | 01:27 |
mordred | oh - or ... | 01:27 |
ianw | mordred: yeah, the thing i'm most interested in is the speculative execution of it all | 01:27 |
mordred | we could just make opendevorg/nodepool built on top of the dib image - we don't NEED it in the laucher image - but it would certainly simplify things conceptully | 01:27 |
ianw | i was thinking in the nodepool func test, it builds a new image from /home/zuul/src/opendev.org/openstack/diskimage-builder and uses that for testing | 01:28 |
mordred | yeah - but if we re-parent nodepool image on a dib image - then specualtive images would work properly in both directions | 01:28 |
mordred | ianw: if you want - I can work on putting some patches together for that in parellel to what you're working on | 01:29 |
ianw | I think what i was about to do was create a Dockerfile in dib | 01:30 |
mordred | kk | 01:30 |
*** yamamoto has quit IRC | 01:30 | |
mordred | I'm going to do a few errands - let me know where you get and I'll try to pick up work on it when I'm back | 01:30 |
ianw | but the job setup to get that pulled in to the nodepoool func tests i'm not sure on | 01:30 |
ianw | that would be where we create the temp registry, then the nodepool job would clone the dib image we just created from it? | 01:31 |
*** ociuhandu has joined #openstack-infra | 01:36 | |
*** jamesmcarthur has joined #openstack-infra | 01:39 | |
*** yamamoto has joined #openstack-infra | 01:39 | |
*** gyee has quit IRC | 01:41 | |
*** ociuhandu has quit IRC | 01:46 | |
*** yamamoto has quit IRC | 01:48 | |
mordred | ianw: yeah - that's right. this is where the buildset registry bits just make everything magically work | 01:51 |
*** armax has joined #openstack-infra | 02:08 | |
*** jamesmcarthur has quit IRC | 02:13 | |
*** armax has quit IRC | 02:17 | |
*** armax has joined #openstack-infra | 02:18 | |
openstackgerrit | Tristan Cacqueray proposed zuul/zuul master: config: blacklist pipeline names that can not be used in template https://review.opendev.org/693961 | 02:20 |
*** armax has quit IRC | 02:23 | |
openstackgerrit | Tristan Cacqueray proposed zuul/zuul master: config: blacklist pipeline names that can not be used in template https://review.opendev.org/693961 | 02:27 |
*** roman_g has quit IRC | 02:34 | |
*** yamamoto has joined #openstack-infra | 02:34 | |
*** jamesmcarthur has joined #openstack-infra | 02:40 | |
*** jamesmcarthur has quit IRC | 02:43 | |
*** yamamoto has quit IRC | 02:46 | |
*** jamesmcarthur has joined #openstack-infra | 02:54 | |
*** ccamacho has quit IRC | 03:13 | |
*** ociuhandu has joined #openstack-infra | 03:17 | |
*** ociuhandu has quit IRC | 03:22 | |
*** mgutehall has quit IRC | 03:25 | |
*** rkukura has quit IRC | 03:27 | |
*** udesale has joined #openstack-infra | 03:42 | |
*** liuyulong has quit IRC | 03:46 | |
ianw | mordred: i think it also solves a lot of package install issues as dib has a bindep.txt | 03:48 |
*** jamesmcarthur has quit IRC | 04:11 | |
*** Lucas_Gray has joined #openstack-infra | 04:11 | |
*** dave-mccowan has joined #openstack-infra | 04:12 | |
*** rh-jelabarre has quit IRC | 04:18 | |
*** yamamoto has joined #openstack-infra | 04:24 | |
*** tkajinam has quit IRC | 04:26 | |
*** tkajinam has joined #openstack-infra | 04:33 | |
*** ykarel|away has joined #openstack-infra | 04:35 | |
*** ociuhandu has joined #openstack-infra | 04:43 | |
openstackgerrit | Ian Wienand proposed openstack/diskimage-builder master: Add a Dockerfile and related jobs https://review.opendev.org/693971 | 04:46 |
*** ociuhandu has quit IRC | 04:48 | |
openstackgerrit | Ian Wienand proposed openstack/diskimage-builder master: Add a Dockerfile and related jobs https://review.opendev.org/693971 | 04:58 |
*** goldyfruit has quit IRC | 05:00 | |
*** dave-mccowan has quit IRC | 05:05 | |
*** tkajinam_ has joined #openstack-infra | 05:08 | |
*** surpatil has joined #openstack-infra | 05:10 | |
*** tkajinam has quit IRC | 05:11 | |
*** mgutehall has joined #openstack-infra | 05:18 | |
openstackgerrit | Ian Wienand proposed openstack/diskimage-builder master: Update bindep.txt for some missing dependencies https://review.opendev.org/693975 | 05:21 |
openstackgerrit | Ian Wienand proposed openstack/diskimage-builder master: Dockerfile: install vhd-util https://review.opendev.org/693976 | 05:21 |
*** mgutehal_ has joined #openstack-infra | 05:23 | |
*** mgutehall has quit IRC | 05:23 | |
*** soniya29 has joined #openstack-infra | 05:27 | |
*** Lucas_Gray has quit IRC | 05:28 | |
*** yamamoto has quit IRC | 05:30 | |
*** ociuhandu has joined #openstack-infra | 05:31 | |
*** tkajinam_ has quit IRC | 05:34 | |
*** ociuhandu has quit IRC | 05:35 | |
*** tkajinam has joined #openstack-infra | 05:36 | |
*** yamamoto has joined #openstack-infra | 05:42 | |
*** ykarel|away is now known as ykarel | 05:47 | |
*** tkajinam has quit IRC | 06:03 | |
*** tkajinam has joined #openstack-infra | 06:05 | |
*** mgutehal_ has quit IRC | 06:09 | |
*** SurajPatil has joined #openstack-infra | 06:22 | |
*** surpatil has quit IRC | 06:24 | |
*** SurajPatil has quit IRC | 06:28 | |
*** surpatil has joined #openstack-infra | 06:28 | |
*** tkajinam has quit IRC | 06:30 | |
*** tkajinam has joined #openstack-infra | 06:31 | |
*** tkajinam has quit IRC | 06:31 | |
*** dtantsur|afk is now known as dtantsur | 06:34 | |
*** slaweq has quit IRC | 06:45 | |
*** yamamoto has quit IRC | 06:47 | |
*** yamamoto has joined #openstack-infra | 06:47 | |
*** yamamoto_ has joined #openstack-infra | 06:50 | |
*** yamamoto has quit IRC | 06:52 | |
*** tkajinam has joined #openstack-infra | 07:01 | |
openstackgerrit | Andreas Jaeger proposed openstack/diskimage-builder master: Remove unused job https://review.opendev.org/693990 | 07:01 |
*** dpawlik has joined #openstack-infra | 07:05 | |
*** florianf has joined #openstack-infra | 07:09 | |
*** florianf has left #openstack-infra | 07:10 | |
*** dpawlik has quit IRC | 07:10 | |
*** odicha has joined #openstack-infra | 07:19 | |
*** dklyle has quit IRC | 07:19 | |
*** dklyle has joined #openstack-infra | 07:19 | |
*** dpawlik has joined #openstack-infra | 07:20 | |
*** igordc has quit IRC | 07:25 | |
*** pgaxatte has joined #openstack-infra | 07:34 | |
*** ociuhandu has joined #openstack-infra | 07:35 | |
*** ociuhandu has quit IRC | 07:41 | |
*** yamamoto_ has quit IRC | 07:52 | |
*** yamamoto has joined #openstack-infra | 07:55 | |
*** trident has quit IRC | 07:57 | |
*** surpatil has quit IRC | 07:57 | |
*** georgk has left #openstack-infra | 07:58 | |
*** tesseract has joined #openstack-infra | 08:00 | |
*** raukadah is now known as chandankumar | 08:04 | |
*** trident has joined #openstack-infra | 08:06 | |
*** tosky has joined #openstack-infra | 08:13 | |
*** jtomasek has quit IRC | 08:13 | |
*** rpittau|afk is now known as rpittau | 08:17 | |
*** dchen has quit IRC | 08:24 | |
*** jtomasek has joined #openstack-infra | 08:25 | |
*** amoralej|off is now known as amoralej | 08:25 | |
*** ralonsoh has joined #openstack-infra | 08:29 | |
*** surpatil has joined #openstack-infra | 08:29 | |
*** pkopec has joined #openstack-infra | 08:31 | |
*** dpawlik has quit IRC | 08:32 | |
*** tkajinam has quit IRC | 08:35 | |
*** ykarel is now known as ykarel|lunch | 08:37 | |
*** xek_ has joined #openstack-infra | 08:38 | |
*** zhurong has joined #openstack-infra | 08:40 | |
zhurong | hello infra cores, I am the PTL of Telemetry, but now I haven't in ceilometer-stable-maint group, could anyone can add me into the group, thanks | 08:43 |
*** aedc has joined #openstack-infra | 08:45 | |
*** dpawlik has joined #openstack-infra | 08:47 | |
*** jpena|off is now known as jpena | 08:48 | |
*** jtomasek has quit IRC | 08:49 | |
*** Lucas_Gray has joined #openstack-infra | 08:50 | |
*** slaweq has joined #openstack-infra | 08:52 | |
ttx | zhurong: The groups is controlled by stable-maint-core (https://review.opendev.org/#/admin/groups/530,members) so you should probably ask on #openstack-stable (or send an email to openstack-discuss) | 08:52 |
*** sshnaidm|afk is now known as sshnaidm|rover | 08:55 | |
*** iurygregory has joined #openstack-infra | 09:02 | |
*** armax has joined #openstack-infra | 09:02 | |
*** ociuhandu has joined #openstack-infra | 09:03 | |
*** roman_g has joined #openstack-infra | 09:06 | |
*** armax has quit IRC | 09:06 | |
*** ociuhandu has quit IRC | 09:09 | |
*** ociuhandu has joined #openstack-infra | 09:10 | |
*** ccamacho has joined #openstack-infra | 09:12 | |
*** Lucas_Gray has quit IRC | 09:13 | |
*** yamamoto has quit IRC | 09:18 | |
*** yamamoto has joined #openstack-infra | 09:19 | |
*** jistr has quit IRC | 09:19 | |
*** jistr has joined #openstack-infra | 09:20 | |
*** yamamoto has quit IRC | 09:21 | |
*** ociuhandu has quit IRC | 09:25 | |
*** ociuhandu has joined #openstack-infra | 09:26 | |
*** Lucas_Gray has joined #openstack-infra | 09:26 | |
*** ociuhandu has quit IRC | 09:29 | |
*** jistr has quit IRC | 09:29 | |
*** ociuhandu has joined #openstack-infra | 09:30 | |
*** ociuhandu has quit IRC | 09:31 | |
*** ociuhandu has joined #openstack-infra | 09:31 | |
*** ccamacho has quit IRC | 09:32 | |
openstackgerrit | Harald Jensås proposed openstack/diskimage-builder master: Add IPv6 support in dhcp-all-interfaces https://review.opendev.org/692110 | 09:32 |
*** jistr has joined #openstack-infra | 09:36 | |
*** ccamacho has joined #openstack-infra | 09:36 | |
*** ociuhandu has quit IRC | 09:37 | |
*** ociuhandu has joined #openstack-infra | 09:37 | |
zhurong | thanks ttx, I will send a maillist | 09:42 |
*** ykarel|lunch is now known as ykarel | 09:49 | |
*** priteau has joined #openstack-infra | 10:04 | |
*** gfidente has joined #openstack-infra | 10:06 | |
*** ociuhandu has quit IRC | 10:13 | |
*** ociuhandu has joined #openstack-infra | 10:14 | |
*** ociuhandu has quit IRC | 10:19 | |
*** zbr has quit IRC | 10:21 | |
*** ianychoi has quit IRC | 10:24 | |
*** jtomasek has joined #openstack-infra | 10:44 | |
*** yamamoto has joined #openstack-infra | 10:46 | |
*** zbr has joined #openstack-infra | 10:47 | |
*** yamamoto has quit IRC | 10:50 | |
*** pgaxatte has quit IRC | 11:01 | |
*** ralonsoh has quit IRC | 11:07 | |
*** jamesmcarthur has joined #openstack-infra | 11:09 | |
*** ralonsoh has joined #openstack-infra | 11:09 | |
*** jamesmcarthur has quit IRC | 11:10 | |
*** ociuhandu has joined #openstack-infra | 11:14 | |
*** udesale has quit IRC | 11:15 | |
*** ociuhandu has quit IRC | 11:18 | |
*** yamamoto has joined #openstack-infra | 11:22 | |
*** yamamoto has quit IRC | 11:29 | |
*** ociuhandu has joined #openstack-infra | 11:36 | |
AJaeger | clarkb: we missed some openstack-ansible opensuse-150 changes, I'm on it... I thought we had them all but apparently not :( | 11:52 |
*** rfolco has joined #openstack-infra | 11:56 | |
*** yamamoto has joined #openstack-infra | 11:59 | |
*** kaisers has quit IRC | 12:02 | |
*** kaisers has joined #openstack-infra | 12:05 | |
*** dpawlik has quit IRC | 12:06 | |
*** electrofelix has joined #openstack-infra | 12:12 | |
*** dpawlik has joined #openstack-infra | 12:12 | |
*** sshnaidm|rover is now known as sshnaidm|bbl | 12:14 | |
*** dpawlik has quit IRC | 12:14 | |
*** dpawlik has joined #openstack-infra | 12:17 | |
*** dpawlik has quit IRC | 12:17 | |
*** priteau has quit IRC | 12:19 | |
*** priteau has joined #openstack-infra | 12:21 | |
*** dpawlik has joined #openstack-infra | 12:22 | |
*** yamamoto has quit IRC | 12:26 | |
*** dpawlik has quit IRC | 12:26 | |
*** dpawlik has joined #openstack-infra | 12:27 | |
*** Lucas_Gray has quit IRC | 12:28 | |
*** ociuhandu has quit IRC | 12:35 | |
*** ociuhandu has joined #openstack-infra | 12:35 | |
*** ociuhandu has quit IRC | 12:36 | |
*** ociuhandu has joined #openstack-infra | 12:37 | |
*** yamamoto has joined #openstack-infra | 12:38 | |
*** yamamoto has quit IRC | 12:38 | |
*** yamamoto has joined #openstack-infra | 12:38 | |
*** jpena is now known as jpena|lunch | 12:40 | |
*** surpatil has quit IRC | 12:44 | |
*** yamamoto has quit IRC | 12:44 | |
*** Goneri has quit IRC | 12:44 | |
*** yamamoto has joined #openstack-infra | 12:44 | |
*** pgaxatte has joined #openstack-infra | 12:47 | |
*** pgaxatte has quit IRC | 12:51 | |
*** pgaxatte has joined #openstack-infra | 12:51 | |
*** rlandy has joined #openstack-infra | 12:52 | |
*** rlandy is now known as rlandy|rover | 12:52 | |
*** rcernin has quit IRC | 12:54 | |
*** dtantsur is now known as dtantsur|afk | 12:57 | |
*** rh-jelabarre has joined #openstack-infra | 12:59 | |
*** ianychoi has joined #openstack-infra | 13:00 | |
openstackgerrit | Sean McGinnis proposed openstack/pbr master: Remove DeprecationWarning: invalid escape sequence issues https://review.opendev.org/694066 | 13:02 |
*** rlandy|rover is now known as rlandy|rover|mtg | 13:05 | |
*** yamamoto has quit IRC | 13:05 | |
*** ociuhandu has quit IRC | 13:08 | |
*** amoralej is now known as amoralej|lunch | 13:09 | |
*** ociuhandu has joined #openstack-infra | 13:09 | |
*** ociuhandu has quit IRC | 13:14 | |
*** jamesmcarthur has joined #openstack-infra | 13:16 | |
*** aaronsheffield has joined #openstack-infra | 13:20 | |
*** dpawlik has quit IRC | 13:24 | |
*** lajoskatona has joined #openstack-infra | 13:27 | |
smcginnis | Anyone have some background on openstackci being a maintainer for PrettyTable? | 13:28 |
smcginnis | Looks like last release was in 2013 - https://pypi.org/project/PrettyTable/#history | 13:28 |
smcginnis | And this would seem to indicate it is no longer maintained - https://code.google.com/archive/p/prettytable/issues/67 | 13:29 |
smcginnis | So my guess is we tried to take it over at some point, but by the time the PyPi maintainers gave us permissions whoever was driving that forgot about it? | 13:29 |
*** jpena|lunch is now known as jpena | 13:30 | |
smcginnis | Really concerned that this package will stop working soon. And really surprised there was enough py3 compat baked in back in 2013 that it hasn't been an issue yet. | 13:30 |
lajoskatona | Hi, I would like to start periodic unit tests and doc jobs for networking-l2gw, is that possible from resource point of view? | 13:30 |
*** jamesmcarthur has quit IRC | 13:32 | |
*** jamesmcarthur has joined #openstack-infra | 13:33 | |
*** yamamoto has joined #openstack-infra | 13:34 | |
*** jamesmcarthur has quit IRC | 13:35 | |
fungi | lajoskatona: sure, just add a periodic pipeline section to the project entry in your .zuul/project.yaml (or wherever you add jobs for your projects). it'll look like the check and gate sections | 13:36 |
openstackgerrit | Daniel Bengtsson proposed openstack/cookiecutter master: Use python -m pip instead pip command. https://review.opendev.org/694069 | 13:37 |
lajoskatona | fungi: thanks, I do that | 13:39 |
*** ykarel is now known as ykarel|afk | 13:39 | |
fungi | smcginnis: a web search for "site:lists.openstack.org prettytable" turned up this (lengthy) thread from early 2016 as the first hit: http://lists.openstack.org/pipermail/openstack-dev/2016-January/083586.html | 13:44 |
* fungi sometimes feels like a meat-based search engine ;) | 13:45 | |
*** Goneri has joined #openstack-infra | 13:47 | |
*** rlandy|rover|mtg is now known as rlandy|rover | 13:52 | |
*** mriedem has joined #openstack-infra | 13:53 | |
*** jamesmcarthur has joined #openstack-infra | 13:53 | |
*** dpawlik has joined #openstack-infra | 13:54 | |
*** eharney has joined #openstack-infra | 13:56 | |
*** lajoskatona has left #openstack-infra | 13:58 | |
fungi | smcginnis: skimming the leaves of that discussion tree, it was proposed that we host the source via https://review.opendev.org/265278 but that was abandoned for the alternative of broader python community maintenance at https://jazzband.co/projects/prettytable which seems to be continuing there off and on (according to master branch commit history) but doesn't appear to be generating releases | 14:03 |
fungi | https://github.com/jazzband/prettytable/issues/18 is an issue requesting they start releasing to pypi | 14:04 |
*** amoralej|lunch is now known as amoralej | 14:05 | |
*** rlandy|rover is now known as rlandy|rover|mtg | 14:08 | |
*** yamamoto has quit IRC | 14:09 | |
*** yamamoto has joined #openstack-infra | 14:10 | |
*** yamamoto has quit IRC | 14:10 | |
*** yamamoto has joined #openstack-infra | 14:11 | |
fungi | perhaps reaching out to flaper87 through alternative channels, or offering to help with it ourselves, could move it along? | 14:12 |
*** yamamoto has quit IRC | 14:15 | |
openstackgerrit | Felix Schmidt proposed zuul/zuul master: Report retried builds via sql reporter. https://review.opendev.org/633501 | 14:21 |
*** rlandy|rover|mtg is now known as rlandy|rover | 14:26 | |
smcginnis | fungi: Thanks, I didn't think to search the list. | 14:36 |
smcginnis | "There are no members yet who have volunteered to lead this project." - Maybe it could use our help. | 14:37 |
openstackgerrit | Paul Belanger proposed zuul/zuul master: Support Ansible 2.9 https://review.opendev.org/674854 | 14:37 |
*** ykarel|afk has quit IRC | 14:43 | |
*** ociuhandu has joined #openstack-infra | 14:44 | |
*** sshnaidm|bbl is now known as sshnaidm|ruck | 14:45 | |
*** dpawlik has quit IRC | 14:48 | |
*** ykarel has joined #openstack-infra | 14:49 | |
*** yamamoto has joined #openstack-infra | 14:51 | |
*** tesseract has quit IRC | 14:52 | |
*** tesseract has joined #openstack-infra | 14:55 | |
*** yamamoto has quit IRC | 14:55 | |
*** liuyulong has joined #openstack-infra | 14:58 | |
*** lpetrut has joined #openstack-infra | 14:58 | |
*** ociuhandu has quit IRC | 15:04 | |
*** armax has joined #openstack-infra | 15:05 | |
*** ociuhandu has joined #openstack-infra | 15:06 | |
*** armax has quit IRC | 15:10 | |
*** pgaxatte has quit IRC | 15:11 | |
*** ociuhandu has quit IRC | 15:11 | |
*** liuyulong has quit IRC | 15:11 | |
*** pgaxatte has joined #openstack-infra | 15:13 | |
openstackgerrit | Slawek Kaplonski proposed openstack/project-config master: Add 'Review-Priority' for Neutron repos https://review.opendev.org/694095 | 15:30 |
*** jamesmcarthur has quit IRC | 15:31 | |
*** soniya29 has quit IRC | 15:33 | |
*** odicha has quit IRC | 15:35 | |
*** armax has joined #openstack-infra | 15:36 | |
openstackgerrit | Slawek Kaplonski proposed openstack/project-config master: Add 'Review-Priority' for Neutron repos https://review.opendev.org/694095 | 15:36 |
*** whoami-rajat has joined #openstack-infra | 15:45 | |
roman_g | Hello team. We seem to have had some problems with etherpad, and need to get it restored (not right now, but in an hour or so). https://etherpad.openstack.org/p/Airship_bootstrap | 15:49 |
roman_g | Who could help us with that? Thank you. | 15:49 |
openstackgerrit | Jens Harbott (frickler) proposed opendev/system-config master: Restart apache2 on logrotate on ask.o.o https://review.opendev.org/694105 | 15:55 |
frickler | clarkb: sorry for the confusion, I was testing the restart action on ask.o.o, effectively like that ^^ it did work, but it didn't crash on reload this morning either. maybe wait a couple more days | 15:56 |
fungi | roman_g: what is it you need done? | 15:59 |
fungi | roman_g: ahh, looking at the replay it looks like things went sideways (someone deleted all the content?) right after revision 13875 | 16:02 |
fungi | i can attempt https://etherpad.org/doc/v1.6.2/#index_restorerevision_padid_rev on it if you want | 16:05 |
*** ccamacho has quit IRC | 16:06 | |
*** lpetrut has quit IRC | 16:08 | |
*** auristor has quit IRC | 16:12 | |
*** ykarel is now known as ykarel|away | 16:16 | |
*** gyee has joined #openstack-infra | 16:18 | |
openstackgerrit | Merged openstack/pbr master: Mark strings as raw https://review.opendev.org/678769 | 16:18 |
openstackgerrit | Merged openstack/pbr master: Update to latest hacking https://review.opendev.org/678770 | 16:18 |
*** ociuhandu has joined #openstack-infra | 16:20 | |
*** arif-ali has joined #openstack-infra | 16:21 | |
*** auristor has joined #openstack-infra | 16:22 | |
*** iurygregory has quit IRC | 16:24 | |
*** yamamoto has joined #openstack-infra | 16:28 | |
*** ociuhandu has quit IRC | 16:30 | |
*** ociuhandu has joined #openstack-infra | 16:31 | |
*** jtomasek has quit IRC | 16:32 | |
*** yamamoto has quit IRC | 16:32 | |
roman_g | fungi: yes, please. You can go on and restore. | 16:38 |
roman_g | fungi: I will add new content, copied it already. | 16:39 |
roman_g | somehow we got all coloring removed a few weeks ago, but that's not a big problem | 16:40 |
openstackgerrit | Merged openstack/pbr master: trivial: Use 'open' context manager https://review.opendev.org/678771 | 16:41 |
roman_g | fungi: done? | 16:41 |
*** pgaxatte has quit IRC | 16:43 | |
*** ociuhandu has quit IRC | 16:44 | |
*** jpena is now known as jpena|brb | 16:45 | |
*** jaosorior has joined #openstack-infra | 16:51 | |
fungi | roman_g: nope, had stepped away for a moment, but i can do it now if you're ready | 16:54 |
*** goldyfruit has joined #openstack-infra | 16:55 | |
fungi | ahh, you said at 16:38z to "go on and restore" so i'll assume you're okay for me to do it at any time. restoring now | 17:01 |
*** ociuhandu has joined #openstack-infra | 17:01 | |
*** igordc has joined #openstack-infra | 17:02 | |
fungi | #status log performed an etherpad restoreRevision for padID=Airship_bootstrap&rev=13875 per roman_g's request | 17:03 |
openstackstatus | fungi: finished logging | 17:03 |
fungi | after reloading my browser tab for the pad i can see it has restored to that earlier revision successfuly | 17:03 |
*** rpittau is now known as rpittau|afk | 17:08 | |
*** jaosorior has quit IRC | 17:12 | |
*** jpena|brb is now known as jpena | 17:17 | |
*** apetrich has quit IRC | 17:24 | |
*** igordc has quit IRC | 17:32 | |
*** rlandy|rover is now known as rlandy|rover|mtg | 17:32 | |
*** stewie925 has joined #openstack-infra | 17:33 | |
*** jpena is now known as jpena|brb | 17:35 | |
*** rlandy|rover|mtg has quit IRC | 17:35 | |
*** igordc has joined #openstack-infra | 17:35 | |
*** rlandy|rover|mtg has joined #openstack-infra | 17:35 | |
*** rlandy|rover|mtg has quit IRC | 17:38 | |
*** rlandy has joined #openstack-infra | 17:38 | |
*** rlandy is now known as rlandy|rover|mtg | 17:39 | |
*** diablo_rojo__ has joined #openstack-infra | 17:42 | |
*** tosky has quit IRC | 17:47 | |
*** jpena|brb is now known as jpena | 17:51 | |
*** ykarel|away has quit IRC | 17:51 | |
*** jcoufal has joined #openstack-infra | 17:59 | |
*** rkukura has joined #openstack-infra | 18:13 | |
*** yamamoto has joined #openstack-infra | 18:17 | |
*** ociuhandu has quit IRC | 18:17 | |
*** ociuhandu has joined #openstack-infra | 18:18 | |
*** jpena is now known as jpena|off | 18:20 | |
*** yamamoto has quit IRC | 18:21 | |
*** rlandy|rover|mtg is now known as rlandy|rover | 18:23 | |
*** ociuhandu has quit IRC | 18:23 | |
*** slaweq has quit IRC | 18:25 | |
clarkb | AJaeger: odd that zuul didnt -1 the nodeset removal this time. I guess they define their own nodesets in osa? | 18:29 |
clarkb | AJaeger: let me know if I can help, but having a slow start today | 18:29 |
*** Goneri has quit IRC | 18:30 | |
clarkb | frickler: oh ok. In that case ya I'm not finding much on the ask problem. Likely next step would be capturing coredumps and asking gdb I guess | 18:30 |
*** priteau has quit IRC | 18:32 | |
fungi | i want to say in the past we saw similar behavior (not sure if it was for ask.o.o or another server) where there was something along the lines of duplicate/competing log rotation firing and apache got a signal while it was already in the middle of handling another one | 18:35 |
*** tesseract has quit IRC | 18:35 | |
*** chandankumar is now known as raukadah | 18:41 | |
*** kjackal has joined #openstack-infra | 18:44 | |
*** pkopec has quit IRC | 18:47 | |
*** jamesmcarthur has joined #openstack-infra | 19:00 | |
AJaeger | clarkb: zuul did -1 the nodeset removal - that's why I saw it. I merged three changes to osa today, all looks green now (final? verify) | 19:05 |
*** electrofelix has quit IRC | 19:06 | |
clarkb | ah | 19:06 |
AJaeger | clarkb: https://review.opendev.org/691966 looks fine, want to finish off opensuse-15.0 removal with approving it? | 19:10 |
*** jamesmcarthur has quit IRC | 19:10 | |
*** odyssey4me has quit IRC | 19:11 | |
clarkb | ++ | 19:11 |
*** odyssey4me has joined #openstack-infra | 19:11 | |
*** ralonsoh has quit IRC | 19:25 | |
openstackgerrit | Merged opendev/base-jobs master: Remove opensuse-150 nodeset https://review.opendev.org/691966 | 19:27 |
clarkb | AJaeger: ^ thank you! | 19:27 |
AJaeger | clarkb: thanks to you as well! | 19:28 |
AJaeger | dirk: FYI, 15.0 is done ^ | 19:28 |
AJaeger | #status log openSUSE 15.0 has been removed from infra | 19:29 |
openstackstatus | AJaeger: finished logging | 19:29 |
clarkb | I've approved https://review.opendev.org/#/c/693924/ and will test it with https://review.opendev.org/#/c/680178/ once merged | 19:31 |
roman_g | fungi: thank you! | 19:32 |
openstackgerrit | Andreas Jaeger proposed opendev/system-config master: Remove mirroring of openSUSE 15.0 https://review.opendev.org/694162 | 19:34 |
AJaeger | clarkb, fungi, one more change for openSUSE 15.0 ^ | 19:34 |
clarkb | good catch | 19:34 |
*** yamamoto has joined #openstack-infra | 19:36 | |
AJaeger | fungi, another cleanup (has already +2 from clarkb): Please review https://review.opendev.org/#/c/686763/ | 19:40 |
*** yamamoto has quit IRC | 19:41 | |
openstackgerrit | Merged opendev/base-jobs master: Timeout cleanup playbook tasks https://review.opendev.org/693924 | 19:41 |
clarkb | we haev ~400GB of free disk on nb01 now | 19:41 |
openstackgerrit | Merged openstack/project-config master: Add 'Review-Priority' for Neutron repos https://review.opendev.org/694095 | 19:41 |
clarkb | I think this cleanup ahs been good for our builders, freed up space to add new images | 19:41 |
rosmaita | AJaeger: thanks | 19:44 |
AJaeger | config-core, another cleanup: Remove old jobs/template: https://review.opendev.org/692639 and https://review.opendev.org/692640 . Note it removes it from a dead repo... | 19:45 |
AJaeger | rosmaita: you're welcome | 19:46 |
*** Goneri has joined #openstack-infra | 19:46 | |
*** amoralej is now known as amoralej|off | 19:47 | |
*** kjackal has quit IRC | 19:47 | |
AJaeger | clarkb: what do you think of https://review.opendev.org/#/c/685597/ - and first force-merging https://review.opendev.org/#/c/685599/ ? I'd like to get rid of the job and it's only broken usage | 19:47 |
clarkb | AJaeger: I can merge https://review.opendev.org/#/c/685599/1 | 19:49 |
clarkb | we have +2 from neutron-stable-maint but ya that likely isn't merging on its own. I'll merge it | 19:50 |
*** ociuhandu has joined #openstack-infra | 19:50 | |
AJaeger | fixing that branch is rather involved ;( | 19:50 |
AJaeger | thanks, clarkb | 19:50 |
*** jamesmcarthur has joined #openstack-infra | 19:50 | |
*** jamesmcarthur has quit IRC | 19:51 | |
clarkb | AJaeger: done | 19:52 |
*** jamesmcarthur has joined #openstack-infra | 19:52 | |
AJaeger | great | 19:52 |
AJaeger | config-core, please review https://review.opendev.org/#/c/685597 to remove a now unsed job | 19:53 |
*** jamesmcarthur has quit IRC | 19:53 | |
*** ociuhandu has quit IRC | 19:56 | |
*** ociuhandu has joined #openstack-infra | 19:59 | |
*** slaweq has joined #openstack-infra | 20:01 | |
*** gfidente is now known as gfidente|afk | 20:04 | |
*** diablo_rojo__ has quit IRC | 20:05 | |
*** kjackal has joined #openstack-infra | 20:05 | |
*** ociuhandu has quit IRC | 20:06 | |
openstackgerrit | Merged openstack/project-config master: Cleanup publish-openstack-releasenotes jobs https://review.opendev.org/685597 | 20:08 |
*** yamamoto has joined #openstack-infra | 20:11 | |
*** yamamoto has quit IRC | 20:15 | |
*** ociuhandu has joined #openstack-infra | 20:16 | |
*** dklyle has quit IRC | 20:20 | |
*** dklyle has joined #openstack-infra | 20:23 | |
*** ociuhandu has quit IRC | 20:25 | |
*** jaosorior has joined #openstack-infra | 20:26 | |
openstackgerrit | Merged opendev/system-config master: Remove arm64ci (3/2) https://review.opendev.org/686763 | 20:27 |
*** whoami-rajat has quit IRC | 20:34 | |
*** kjackal has quit IRC | 20:39 | |
*** jcoufal has quit IRC | 20:48 | |
openstackgerrit | Merged opendev/system-config master: Remove mirroring of openSUSE 15.0 https://review.opendev.org/694162 | 20:53 |
openstackgerrit | Alex Schultz proposed openstack/project-config master: Add tripleo-operator-ansible https://review.opendev.org/693945 | 20:54 |
*** eernst has joined #openstack-infra | 20:55 | |
*** eernst has quit IRC | 20:59 | |
*** ociuhandu has joined #openstack-infra | 21:00 | |
*** eernst has joined #openstack-infra | 21:01 | |
*** ociuhandu has quit IRC | 21:06 | |
*** eernst has quit IRC | 21:07 | |
*** kjackal has joined #openstack-infra | 21:07 | |
*** eernst has joined #openstack-infra | 21:08 | |
*** eernst has quit IRC | 21:12 | |
*** eernst has joined #openstack-infra | 21:12 | |
*** priteau has joined #openstack-infra | 21:17 | |
*** priteau has quit IRC | 21:18 | |
*** priteau has joined #openstack-infra | 21:19 | |
*** priteau has quit IRC | 21:25 | |
*** jtomasek has joined #openstack-infra | 21:31 | |
*** stewie925 has quit IRC | 21:38 | |
*** rfolco has quit IRC | 21:43 | |
*** eharney has quit IRC | 21:54 | |
openstackgerrit | Vitaliy Lotorev proposed zuul/zuul master: Add propagate=0 for loggers in logging.conf-sample https://review.opendev.org/694170 | 22:04 |
*** yamamoto has joined #openstack-infra | 22:05 | |
*** slaweq has quit IRC | 22:06 | |
openstackgerrit | Vitaliy Lotorev proposed zuul/zuul master: Add propagate=0 for loggers in logging.conf-sample https://review.opendev.org/694170 | 22:09 |
*** yamamoto has quit IRC | 22:10 | |
*** jtomasek has quit IRC | 22:13 | |
*** yamamoto has joined #openstack-infra | 22:15 | |
openstackgerrit | Tristan Cacqueray proposed zuul/zuul master: DNM: test zuul-stream-functional jobs https://review.opendev.org/694171 | 22:21 |
*** aedc has quit IRC | 22:32 | |
*** rcernin has joined #openstack-infra | 22:32 | |
openstackgerrit | Ian Wienand proposed openstack/diskimage-builder master: Start a buildset registry with docker image creation https://review.opendev.org/694175 | 22:49 |
*** tosky has joined #openstack-infra | 22:53 | |
*** jaosorior has quit IRC | 22:55 | |
*** kjackal has quit IRC | 22:59 | |
openstackgerrit | Ian Wienand proposed zuul/nodepool master: [dnm] testing docker registry with dib https://review.opendev.org/694177 | 23:00 |
smcginnis | Hello infra folks. We have a bad requirements job that is causing a lot of failures and rechecks to happen. | 23:02 |
smcginnis | The fix is in gate now. Wondering if it's worth promoting that to get it through and avoiding some of the rechecks that are going to happen from failing patches until it lands. | 23:03 |
smcginnis | https://review.opendev.org/693967 | 23:03 |
openstackgerrit | Ian Wienand proposed openstack/diskimage-builder master: Start a buildset registry with docker image creation https://review.opendev.org/694175 | 23:04 |
smcginnis | Unfortunately I need to run, but I'll check back later. Or it will just go through in a several hours anyway. | 23:04 |
*** tkajinam has joined #openstack-infra | 23:06 | |
openstackgerrit | Ian Wienand proposed zuul/nodepool master: [dnm] testing docker registry with dib https://review.opendev.org/694177 | 23:06 |
clarkb | there are only two requirements changes in zuul right now. One of which is that change | 23:06 |
clarkb | it is probably ok to leave it unpromoted as a result unless this is affecting all requirements jobs in other projects | 23:06 |
*** aaronsheffield has quit IRC | 23:10 | |
openstackgerrit | Ian Wienand proposed zuul/nodepool master: [dnm] testing docker registry with dib https://review.opendev.org/694177 | 23:18 |
*** yamamoto has quit IRC | 23:20 | |
*** xek_ has quit IRC | 23:24 | |
*** igordc has quit IRC | 23:26 | |
*** rlandy|rover is now known as rlandy|rover|bbl | 23:27 | |
openstackgerrit | Ian Wienand proposed openstack/project-config master: zuul layout: include dib in zuul tenant for jobs https://review.opendev.org/694178 | 23:29 |
ianw | clarkb/mordred: ^ i think that does it, and would allow nodepool to build the dib image and then base the builder image on it | 23:30 |
*** ociuhandu has joined #openstack-infra | 23:31 | |
ianw | (not that i think we're 100% sure on that approach as such, but it would allow testing it, anyway) | 23:31 |
*** diablo_rojo__ has joined #openstack-infra | 23:33 | |
*** ociuhandu has quit IRC | 23:35 | |
*** kjackal has joined #openstack-infra | 23:37 | |
*** HenryG has quit IRC | 23:46 | |
*** goldyfruit has quit IRC | 23:49 | |
*** HenryG has joined #openstack-infra | 23:49 | |
*** dchen has joined #openstack-infra | 23:56 |
Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!