Note: This bug is displayed in read-only format because
the product is no longer active in Red Hat Bugzilla.
Red Hat Satellite engineering is moving the tracking of its product development work on Satellite to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "Satellite project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs will be migrated starting at the end of May. If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "Satellite project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/SAT-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
Description of problem: Insights report shows EOL redis version after installing fresh satellite 6.11
Version-Release number of selected component (if applicable): 6.11
How reproducible:
Steps to Reproduce:
1. Install Fresh satellite 6.11
2. check redis version
Actual results: redis installed of EOL version
--> redis.x86_64 5.0.3-5.module+el8.4.0+12927+b9845322
Expected results: redis should be installed of latest version
---> redis.x86_64 6.0.9-5.module+el8.4.0+12929+1bb0d2aa
Additional info:
[ This is due to redis module stream 5 is marked as default ]
# dnf module list | grep redis
redis 5 [d][e] common [d] Redis persistent key-value database
redis 6 common [d] Redis persistent key-value database
~~~~
# yum module provides redis-5.0.3-5.module+el8.4.0+12927+b9845322.x86_64
redis-5.0.3-5.module+el8.4.0+12927+b9845322.x86_64
Module : redis:5:8040020211011074037:522a0ee4:x86_64
Profiles : common
Repo : rhel-8-for-x86_64-appstream-rpms
Summary : Redis persistent key-value database
# yum module provides redis-6.0.9-5.module+el8.4.0+12929+1bb0d2aa.x86_64
redis-6.0.9-5.module+el8.4.0+12929+1bb0d2aa.x86_64
Module : redis:6:8040020211011082941:522a0ee4:x86_64
Profiles : common
Repo : rhel-8-for-x86_64-appstream-rpms
~~~~
[ Our installer code just ensures the package is installed ]
~~~~~
# cat /usr/share/foreman-installer/modules/redis/manifests/install.pp
# @summary This class installs the application.
# @api private
class redis::install {
if $redis::manage_package {
package { $redis::package_name:
ensure => $redis::package_ensure,
}
}
}
~~~~~
Which translates to running the following command in satellite installer log (which defaults to installing a package from module stream version 5)
# Executing: '/bin/dnf -d 0 -e 1 -y install redis'
For what it's worth, Pulp already runs using Redis 6 in non-Satellite environments today. So as far as we're concerned there's nothing blocking using Redis 6, even in current releases.
Since the problem described in this bug report should be
resolved in a recent advisory, it has been closed with a
resolution of ERRATA.
For information on the advisory (Important: Satellite 6.13 Release), and where to find the updated
files, follow the link below.
If the solution does not work for you, open a new bug report.
https://access.redhat.com/errata/RHSA-2023:2097
Description of problem: Insights report shows EOL redis version after installing fresh satellite 6.11 Version-Release number of selected component (if applicable): 6.11 How reproducible: Steps to Reproduce: 1. Install Fresh satellite 6.11 2. check redis version Actual results: redis installed of EOL version --> redis.x86_64 5.0.3-5.module+el8.4.0+12927+b9845322 Expected results: redis should be installed of latest version ---> redis.x86_64 6.0.9-5.module+el8.4.0+12929+1bb0d2aa Additional info: [ This is due to redis module stream 5 is marked as default ] # dnf module list | grep redis redis 5 [d][e] common [d] Redis persistent key-value database redis 6 common [d] Redis persistent key-value database ~~~~ # yum module provides redis-5.0.3-5.module+el8.4.0+12927+b9845322.x86_64 redis-5.0.3-5.module+el8.4.0+12927+b9845322.x86_64 Module : redis:5:8040020211011074037:522a0ee4:x86_64 Profiles : common Repo : rhel-8-for-x86_64-appstream-rpms Summary : Redis persistent key-value database # yum module provides redis-6.0.9-5.module+el8.4.0+12929+1bb0d2aa.x86_64 redis-6.0.9-5.module+el8.4.0+12929+1bb0d2aa.x86_64 Module : redis:6:8040020211011082941:522a0ee4:x86_64 Profiles : common Repo : rhel-8-for-x86_64-appstream-rpms ~~~~ [ Our installer code just ensures the package is installed ] ~~~~~ # cat /usr/share/foreman-installer/modules/redis/manifests/install.pp # @summary This class installs the application. # @api private class redis::install { if $redis::manage_package { package { $redis::package_name: ensure => $redis::package_ensure, } } } ~~~~~ Which translates to running the following command in satellite installer log (which defaults to installing a package from module stream version 5) # Executing: '/bin/dnf -d 0 -e 1 -y install redis'