Jump to: navigation, search

Difference between revisions of "Meetings/InfraTeamMeeting"

(Agenda for next meeting)
(Agenda for next meeting)
Line 10: Line 10:
  
 
* Announcements
 
* Announcements
 +
** Service Coordinator Nominations Opened Today (February 3)
 +
*** https://lists.opendev.org/archives/list/service-discuss@lists.opendev.org/thread/KXICOMLOABQLOXITQK2IC2C32UNJG3LO/
  
 
* Actions from last meeting
 
* Actions from last meeting
Line 31: Line 33:
 
*** Have we noticed any problems?
 
*** Have we noticed any problems?
 
** zuul-registry Image Pruning of OCI Images (clarkb 20251216)
 
** zuul-registry Image Pruning of OCI Images (clarkb 20251216)
*** Fixes for OCI image pruning have been put in place
+
*** The problem now is that we aren't handling manifest lists so they get pruned and 404
*** Rechecks of https://review.opendev.org/c/opendev/system-config/+/970451 show there may still be problems though
+
*** https://review.opendev.org/c/zuul/zuul-registry/+/975088 handle manifest lists in addition to manifests themselves.
 
** Adding Bad Crawler Honeypots to our Sites (clarkb 20251216)
 
** Adding Bad Crawler Honeypots to our Sites (clarkb 20251216)
*** docs.opendev.org has a honeypot in place in its robots.txt file
+
*** https://review.opendev.org/c/opendev/system-config/+/974942 More aggressive lure setup via comment in the html
*** So far the only hits for this have been from fungi's test IP address
 
*** We may need a more explicit url link in the content or maybe we need to apply the honeypot to a system that gets crawled more than docs.opendev.org
 
** Etherpad 2.6.1 Upgrade (clarkb 20260113)
 
*** As soon as we upgraded to 2.6.0 there is a new 2.6.1 release. It needs a change and testing
 
*** There is also a new etherpad golang rewrite: https://github.com/ether/etherpad-go/wiki/FAQ
 
 
** MariaDB backups over TCP instead of Unix Socket (clarkb 20260127)
 
** MariaDB backups over TCP instead of Unix Socket (clarkb 20260127)
 
*** We noticed that if mariadb's container image is updated during mysqldumps for backups that backup may never exit and conclude
 
*** We noticed that if mariadb's container image is updated during mysqldumps for backups that backup may never exit and conclude
Line 45: Line 42:
 
*** Proposed fix is to run mysqldump over TCP. We are testing this with lodgeit to start.
 
*** Proposed fix is to run mysqldump over TCP. We are testing this with lodgeit to start.
 
*** https://review.opendev.org/c/opendev/system-config/+/973541 This will apply the change to all services if lodgeit looks happy.
 
*** https://review.opendev.org/c/opendev/system-config/+/973541 This will apply the change to all services if lodgeit looks happy.
** Service Coordinator Election (clarkb 20260120)
+
** Updating All of Our Containers to Trixie (clarkb 20260203)
*** Nomination period running February 3-17. Then if necessary an election will run February 18-25.
+
*** Trixie has been working well on services like Etherpad and Gerrit
 +
*** Let's update all of our containers to Trixie so that we can drop bookworm builds
 +
*** https://review.opendev.org/c/opendev/system-config/+/975319 Update the base python images First
 +
*** https://review.opendev.org/q/hashtag:%22opendev-trixie%22+status:open
 +
*** Should we retire Gear rather than update its container image? Or maybe just stop building a container for geard?
 +
** Gerrit 3.11.8 (clarkb 20260203)
 +
*** There is a new Gerrit 3.11.8 bugfix release available.
 +
*** https://review.opendev.org/c/opendev/system-config/+/975176 Upgrade to Gerrit 3.11.8
 +
*** This change also converts us from building from stable-3.11 to checking out the v3.11.8 tag
 +
*** The idea is that this will prevent unexpected Gerrit updates from sneaking into Gerrit image rebuilds if those happen for unrelated reasons.
 +
** Gerrit change.maxUpdate (clarkb 20260203)
 +
*** Gerrit's notedb by default allows 1000 updates to a single change. This is configured by change.maxUpdates in the gerrit server config
 +
*** This Cinder change has hit that limit: https://review.opendev.org/c/openstack/cinder/+/926844
 +
*** The limit is set for performance reasons. It looks like Cinder may have a number of possibly outdated and never succeeding third party CI systems. Maybe we can disable those before we think about updating limits.
  
 
* Open discussion
 
* Open discussion

Revision as of 18:04, 2 February 2026

Weekly Project Infrastructure team meeting

The OpenDev Team holds public weekly meetings in #opendev-meeting on OFTC, Tuesdays at 1900 UTC. Everyone interested in infrastructure and process surrounding automated testing and deployment is encouraged to attend.

Please feel free to add agenda items (and your IRC nick in parenthesis).

Agenda for next meeting

  • Actions from last meeting
  • Specs Review
  • Topics
    • Upgrading Old Servers (clarkb 20230627)
    • Moving OpenDev Synchronous Communication to Matrix (clarkb 20250520)
      • We have moved to Matrix
      • Minimal traffic has remained on IRC
      • Tools like Gerritbot, statusbot, and eavesdropping seem to be working well
      • Have we noticed any problems?
    • zuul-registry Image Pruning of OCI Images (clarkb 20251216)
    • Adding Bad Crawler Honeypots to our Sites (clarkb 20251216)
    • MariaDB backups over TCP instead of Unix Socket (clarkb 20260127)
      • We noticed that if mariadb's container image is updated during mysqldumps for backups that backup may never exit and conclude
      • Theory is that this is happening because the unix socket is held open by the linux kernel then nothing further is written to it so everything hangs around
      • Proposed fix is to run mysqldump over TCP. We are testing this with lodgeit to start.
      • https://review.opendev.org/c/opendev/system-config/+/973541 This will apply the change to all services if lodgeit looks happy.
    • Updating All of Our Containers to Trixie (clarkb 20260203)
    • Gerrit 3.11.8 (clarkb 20260203)
      • There is a new Gerrit 3.11.8 bugfix release available.
      • https://review.opendev.org/c/opendev/system-config/+/975176 Upgrade to Gerrit 3.11.8
      • This change also converts us from building from stable-3.11 to checking out the v3.11.8 tag
      • The idea is that this will prevent unexpected Gerrit updates from sneaking into Gerrit image rebuilds if those happen for unrelated reasons.
    • Gerrit change.maxUpdate (clarkb 20260203)
      • Gerrit's notedb by default allows 1000 updates to a single change. This is configured by change.maxUpdates in the gerrit server config
      • This Cinder change has hit that limit: https://review.opendev.org/c/openstack/cinder/+/926844
      • The limit is set for performance reasons. It looks like Cinder may have a number of possibly outdated and never succeeding third party CI systems. Maybe we can disable those before we think about updating limits.
  • Open discussion

Upcoming Project Renames

(any additions should mention original->new full names and link to the corresponding project-config rename change in Gerrit) Changes should have their topic set to project-rename.

Previous meetings

Previous meetings, with their notes and logs, can be found at http://eavesdrop.openstack.org/meetings/infra/ and earlier at http://eavesdrop.openstack.org/meetings/ci/