From 3fc124f0480c4c2c3153ca94b0f96bae1bb20ac2 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Thu, 3 Jul 2025 23:43:05 -0700 Subject: [PATCH] Fix rabbitmq 'pungi' user creation on prod I think @kevin inadvertently broke this in f0663ae52fcaacbd527305e1442436a6a164e0cf - he mixed up the names of environments ('production' / 'staging') and Koji instances ('primary' / 'secondary'), just in this one case (it's correct everywhere else). This is causing the pungi user not to be created, and that means compose hosts can't publish messages. Signed-off-by: Adam Williamson --- playbooks/groups/releng-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playbooks/groups/releng-compose.yml b/playbooks/groups/releng-compose.yml index acce7b5126..0064ee5812 100644 --- a/playbooks/groups/releng-compose.yml +++ b/playbooks/groups/releng-compose.yml @@ -159,7 +159,7 @@ - role: rabbit/user user_name: "pungi{{ env_suffix }}" user_sent_topics: ^org\.fedoraproject\.{{ env_short }}\.(pungi|compose|logger)\..* - when: koji_instance == "production" or env == "staging" + when: koji_instance == "primary" or env == "staging" - { role: "push-container-registry",