Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion doozer/doozerlib/cli/config_tag_rpms.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,10 @@ async def run(self):
rhcos_el_maj = int(self._runtime.group_config.vars.RHCOS_EL_MAJOR)
rhcos_el_min = int(self._runtime.group_config.vars.RHCOS_EL_MINOR)

if (rhcos_el_maj, rhcos_el_min) < (9, 4):
# this control was for versions < than 9.4 in the past.
# As now we skip also kernel-rt for 4.12 (OCPBUGS-63597),
# let's do only for 4.13 - 4.15 (RHEL9.2)
if (rhcos_el_maj, rhcos_el_min) == (9, 2):
for tag, nvr_dict in builds_to_tag.items():
if not nvr_dict:
continue
Expand Down