Commit graph

39713 commits

Author SHA1 Message Date
Aurélien Bompard
1b249c0a04
Add a script and a playbook to import IRC cookies to Matrix
Signed-off-by: Aurélien Bompard <aurelien@bompard.org>
2023-10-11 10:19:54 +02:00
Aurélien Bompard
04f95e1969
Rebuild Maubot when the Fedora image changes
Signed-off-by: Aurélien Bompard <aurelien@bompard.org>
2023-10-11 07:23:13 +02:00
f5c3fa8410 maubot: add generic webhook trigger
Signed-off-by: Ryan Lerch <rlerch@redhat.com>
2023-10-11 14:29:12 +10:00
Kevin Fenzi
afe74d88a4 bodhi / new-updates-sync / epel7: fix epel7 latest release sync
Recently (possibly with the new python in fedora 38), the updates-sync
logic that updates the 'latest' link for epel-release rpms has started
replacing it everytime it runs. Since this is every minute, it sometimes
results in people getting odd perm denied errors when they try and fetch
it as it's being removed or updated.

The problem seems to be that the script looks for all
epel-release*noarch* packages under a release tree and then links to the
x86_64 one. With all the other epel branches, x86_64 was the last one it
saw with the file glob, so everything was fine.

For some reason on epel7 now, it's seeing them in the following order:
/pub/epel/7/ppc64/Packages/e/epel-release-7-11.noarch.rpm
/pub/epel/7/x86_64/Packages/e/epel-release-7-14.noarch.rpm
/pub/epel/7/ppc64le/Packages/e/epel-release-7-14.noarch.rpm
/pub/epel/7/aarch64/Packages/e/epel-release-7-12.noarch.rpm

This means it sees the 'aarch64' one last and since it's not = to the
x86_64 one, it replaces it. Luckily it's hard coded to use the x86_64
one so the link is always the same, it's just never equal to the one
it's checking against.

I am not sure why this is happening only on epel7, but this PR just
sorts all the path's so that x86_64 is always 'last' and should match
up.

Signed-off-by: Kevin Fenzi <kevin@scrye.com>
2023-10-10 17:40:46 +00:00
Owen W. Taylor
29001c9704 Add Flatpak indexes for ppc64le
With new Flatpak build system, we're now building Flatpaks for ppc64le
as well.

Signed-off-by: Owen W. Taylor <otaylor@fishsoup.net>
2023-10-10 10:18:10 -04:00
Aurélien Bompard
c57e9be6ef
Maubot: add github triggers
Signed-off-by: Aurélien Bompard <aurelien@bompard.org>
2023-10-10 10:12:37 +02:00
Pavel Raiskup
2448fc14d9 copr-be-dev: allocate powerful EC2 machines in @copr/powerful-test 2023-10-09 15:21:43 +02:00
Aurélien Bompard
ffd83e76cd
Remove the obsolete storage file
Signed-off-by: Aurélien Bompard <aurelien@bompard.org>
2023-10-09 14:17:21 +02:00
Aurélien Bompard
7dfcb57f57
Don't hardcode staging
Signed-off-by: Aurélien Bompard <aurelien@bompard.org>
2023-10-09 14:09:01 +02:00
Aurélien Bompard
23faf440bc
Deploy meetbot plugins when building in Ansible
Signed-off-by: Aurélien Bompard <aurelien@bompard.org>
2023-10-09 14:05:21 +02:00
Pavel Raiskup
60243e6cb4 copr-be-dev: on-demand config fix
UserWarning: useless config option 'on_demand_tags'
2023-10-09 12:17:07 +02:00
Pavel Raiskup
09517a04b4 copr-be-dev: bump spot price for powerful machines 2023-10-09 11:00:16 +02:00
Pavel Raiskup
2b3d70d4b5 copr-be-dev: pools.yaml tag name typo 2023-10-09 10:56:33 +02:00
Pavel Raiskup
d9d54a61ab copr-be-dev: another pools.yaml typo 2023-10-09 10:51:40 +02:00
Pavel Raiskup
e7b90391f0 copr-be: pools.yaml powerful _ separator 2023-10-09 10:47:44 +02:00
Pavel Raiskup
9741976e0a copr-be: typos in pools.yaml jinja 2023-10-09 10:45:16 +02:00
Pavel Raiskup
35a47588a5 copr-be-dev: don't set _prealloc for on-demand instances 2023-10-09 10:18:49 +02:00
Pavel Raiskup
ec0b3708df copr-be: on-demand powerful instances
x86_64: r7a.16xlarge
aarch64: c7g.xlarge

https://github.com/fedora-copr/copr/issues/2241
2023-10-09 10:17:45 +02:00
Pavel Raiskup
4638b30f61 copr/be: unify resalloc pools.yaml AWS macro 2023-10-09 09:45:24 +02:00
Pavel Raiskup
4fcd495c7e copr-be-dev: mark s390x machines as "on-demand" 2023-10-09 08:58:34 +02:00
Pavel Raiskup
727605815f copr/hypervisor: don't enable swap
This is (for) now done manually in /etc/fstab.
2023-10-06 17:54:36 +02:00
Jakub Kadlcik
2d0ea7ab18 copr: make sure we have up-to-date fedora-review on builders 2023-10-06 00:41:04 +02:00
Kevin Fenzi
5ceb8b9e05 flatpak-indexer: fix indentation on imagestreams
Signed-off-by: Kevin Fenzi <kevin@scrye.com>
2023-10-05 13:44:35 -07:00
Kevin Fenzi
4d0a458a75 flatpak-indexer: update to new upstream
Signed-off-by: Kevin Fenzi <kevin@scrye.com>
2023-10-05 11:58:51 -07:00
Kevin Fenzi
d294aacbe1 flatpak-indexer: update version to pick up fix for new f39 flatpaks indexing
Signed-off-by: Kevin Fenzi <kevin@scrye.com>
2023-10-05 11:02:19 -07:00
Kevin Fenzi
ddc17b2e23 bodhi: switch skopeo command
bodhi was using a small script to copy flatpak images from candidate
registry to registry. This was done because skopeo wasn't able to copy
multi-arch containers at the time. It has since gained the ability to do
that and we should stop using the temporary script to do this.

The script doesn't understand the new f39+ flatpaks hash passed to it so
it fails to push them.

This patch switches bodhi to use normal skopeo and pass it -a which
should tell it to copy all the arches, not just the one it's running on.

Signed-off-by: Kevin Fenzi <kevin@scrye.com>
2023-10-05 16:47:12 +00:00
David Kirwan
080f7db125
zabbix: fix set_fact task indentation
Signed-off-by: David Kirwan <davidkirwanirl@gmail.com>
2023-10-05 12:27:37 +01:00
David Kirwan
c17ccd3dee
zabbix: rename library for interacting with fasjson
Signed-off-by: David Kirwan <davidkirwanirl@gmail.com>
2023-10-05 12:20:22 +01:00
David Kirwan
09a30e82ab
zabbix: rename task import
Signed-off-by: David Kirwan <davidkirwanirl@gmail.com>
2023-10-05 12:15:12 +01:00
David Kirwan
e5d771b25a
zabbix: fix lint issue
Signed-off-by: David Kirwan <davidkirwanirl@gmail.com>
2023-10-05 12:08:38 +01:00
David Kirwan
f7432e9b0e
zabbix: update playbook to call sync users from fas
Signed-off-by: David Kirwan <davidkirwanirl@gmail.com>
2023-10-05 12:06:05 +01:00
David Kirwan
1b25b222cc
zabbix: task for synchronising sysadmin-noc users to zabbix
sync users from fas to zabbix

Signed-off-by: David Kirwan <davidkirwanirl@gmail.com>
2023-10-05 11:57:45 +01:00
Kevin Fenzi
7af2f004e2 F39 final freeze
Signed-off-by: Kevin Fenzi <kevin@scrye.com>
2023-10-03 14:13:10 -07:00
Kevin Fenzi
cd6cbe632e bodhi: move to version 7.2.2
Signed-off-by: Kevin Fenzi <kevin@scrye.com>
2023-10-03 10:21:22 -07:00
Pavel Raiskup
baf7ca1a00 copr-be: +2x16T in RAID1 2023-10-03 16:00:01 +02:00
Samyak Jain
24f5392dee F39 is in final freeze
Signed-off-by: Samyak Jain <samyak.jn11@gmail.com>
2023-10-03 13:50:55 +00:00
Pavel Raiskup
4b656cdb3f copr-be-dev: enlarging data VG with additional RAID1 2023-10-03 15:38:39 +02:00
Michal Konecny
6e32586806 [people] Add missing tag
Signed-off-by: Michal Konecny <mkonecny@redhat.com>
2023-10-03 15:08:07 +02:00
Michal Konecny
daf9655e63 [people] Match *
We want to replace README*.
2023-10-03 14:58:49 +02:00
Michal Konecny
4028973849 Fix formatting errors
Signed-off-by: Michal Konecny <mkonecny@redhat.com>
2023-10-03 14:47:26 +02:00
Michal Konecny
d3ab813d29 [people] Allow README file in directory listing
Currently the README is filtered out from directory listing in fedorapeople.
This commit should allow it again.

See https://pagure.io/fedora-infrastructure/issue/11553 for more info.

Signed-off-by: Michal Konecny <mkonecny@redhat.com>
2023-10-03 14:38:16 +02:00
Aurélien Bompard
bddfb304ba
Expand the sent topics for gitlab-centos (#11552)
Signed-off-by: Aurélien Bompard <aurelien@bompard.org>
2023-10-03 11:46:07 +02:00
Pedro Moura
9c834172f0 Fix yml syntax errors and warnings
Signed-off-by: Pedro Moura <pmoura@redhat.com>
2023-10-02 18:24:26 +00:00
Pedro Moura
bbbc74ffe3 Remove membership-map role and its references from other files
Signed-off-by: Pedro Moura <pmoura@redhat.com>
2023-10-02 18:24:26 +00:00
Kevin Fenzi
55fd3dd3f1 releng: fix typo
Signed-off-by: Kevin Fenzi <kevin@scrye.com>
2023-10-02 11:01:15 -07:00
Kevin Fenzi
d606b69847 releng: also add python3-xmldict to composers
Signed-off-by: Kevin Fenzi <kevin@scrye.com>
2023-10-02 10:50:31 -07:00
Kevin Fenzi
e117f16317 bodhi / backend: install python3-xmltodict for comps
Signed-off-by: Kevin Fenzi <kevin@scrye.com>
2023-10-02 10:47:28 -07:00
Aurélien Bompard
0bca6042c3
Add a script to delete a mailing list from HyperKitty
Signed-off-by: Aurélien Bompard <aurelien@bompard.org>
2023-10-02 11:06:05 +02:00
Justin W. Flory (he/him)
380366d5ea Email aliases: Swap diversity@fp.o from @siddharthvipul1 to @jonatoni
This commit swaps the recipients of the diversity@fp.o email address
from @siddharthvipul1, the outgoing DEI Advisor, with @jonatoni, the
incoming DEI Advisor for Fedora 39.

ref: https://gitlab.com/fedora/dei/home/-/issues/21

CC: @mattdm, who is also included as a recipient to this email alias.

Signed-off-by: Justin W. Flory (he/him) <jwf@redhat.com>
2023-09-27 23:34:40 +00:00
Michal Konecny
c9864975c1 [Proxies] Add redirect for DEI group
This will add docs redirection for DEI group.

See https://pagure.io/fedora-infrastructure/issue/11503 for more info

Signed-off-by: Michal Konecny <mkonecny@redhat.com>
2023-09-26 23:26:22 +00:00