From f65b97866a2347942a2fe7e988f4432fa7231019 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Thu, 7 Mar 2024 10:03:38 -0800 Subject: [PATCH] koji / staging sync: add osbuild channel When syncing we need to setup the osbuild channel in staging on staging builders so they process osbuild tasks. Signed-off-by: Kevin Fenzi --- playbooks/manual/staging-sync/templates/koji-reset-staging.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playbooks/manual/staging-sync/templates/koji-reset-staging.sql b/playbooks/manual/staging-sync/templates/koji-reset-staging.sql index 42ecfbdfcf..40f28a1983 100644 --- a/playbooks/manual/staging-sync/templates/koji-reset-staging.sql +++ b/playbooks/manual/staging-sync/templates/koji-reset-staging.sql @@ -94,7 +94,7 @@ insert into host (user_id, name) values ( (select id from users where name='{{host}}'), '{{host}}'); insert into host_config (host_id, arches, creator_id) values ( (select id from host where name='{{host}}'), '{{ group.arches }}', 2045); -{% for channel in [ 'default', 'appliance', 'vm', 'secure-boot', 'compose', 'eclipse', 'images', 'image'] + group.extra_channels|default([]) %} +{% for channel in [ 'default', 'osbuild', 'appliance', 'vm', 'secure-boot', 'compose', 'eclipse', 'images', 'image'] + group.extra_channels|default([]) %} insert into host_channels (host_id, channel_id, creator_id) values ( (select id from host where name='{{host}}'), (select id from channels where name='{{channel}}'), 2045); {% endfor %}