Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

testmap: rhel-9-6 enablement #6919

Merged
merged 2 commits into from
Sep 26, 2024
Merged
Show file tree
Hide file tree
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
11 changes: 5 additions & 6 deletions lib/testmap.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ def contexts(image: str, *scenarios: Iterable[str], repo: str | None = None) ->
# no udisks on CoreOS → skip storage
*contexts('fedora-coreos', COCKPIT_SCENARIOS - {'storage'}),
*contexts('rhel-9-5', COCKPIT_SCENARIOS),
*contexts('rhel-9-6', COCKPIT_SCENARIOS),
*contexts('rhel-10-0', COCKPIT_SCENARIOS),
*contexts('centos-10', COCKPIT_SCENARIOS),
],
Expand All @@ -67,7 +68,6 @@ def contexts(image: str, *scenarios: Iterable[str], repo: str | None = None) ->
'_manual': [
'fedora-rawhide',
'opensuse-tumbleweed',
'rhel-9-6',
],
},
'cockpit-project/starter-kit': {
Expand All @@ -83,7 +83,6 @@ def contexts(image: str, *scenarios: Iterable[str], repo: str | None = None) ->
],
'_manual': [
'centos-9-bootc',
'rhel-9-5',
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this intentional? Everywhere else you remove 9-6.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It is intentional, yes. We've traditionally not tested starter-kit on rhel, but I'd like to keep the latest rhel-9-Y in manual. I.e. read this as "move manual from 9-5 to 9-6". Sorry for the confusion.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Alright!

'rhel-9-6',
]
},
Expand All @@ -109,6 +108,7 @@ def contexts(image: str, *scenarios: Iterable[str], repo: str | None = None) ->
'fedora-coreos',
'rhel-8-10',
'rhel-9-5',
'rhel-9-6',
'rhel-10-0',
'ubuntu-2204',
'ubuntu-2404',
Expand All @@ -118,7 +118,6 @@ def contexts(image: str, *scenarios: Iterable[str], repo: str | None = None) ->
'centos-10',
'fedora-rawhide',
'opensuse-tumbleweed',
'rhel-9-6',
],
},
'cockpit-project/cockpit-machines': {
Expand All @@ -136,6 +135,7 @@ def contexts(image: str, *scenarios: Iterable[str], repo: str | None = None) ->
'opensuse-tumbleweed',
'rhel-8-10',
'rhel-9-5',
'rhel-9-6',
],
'rhel-8': [
'rhel-8-10',
Expand All @@ -144,7 +144,6 @@ def contexts(image: str, *scenarios: Iterable[str], repo: str | None = None) ->
'centos-10',
'fedora-rawhide',
'rhel-10-0',
'rhel-9-6',
],
},
'cockpit-project/cockpit-files': {
Expand Down Expand Up @@ -182,6 +181,7 @@ def contexts(image: str, *scenarios: Iterable[str], repo: str | None = None) ->
'main': [
'centos-10',
'rhel-9-5',
'rhel-9-6',
'rhel-10-0',
'fedora-39',
'fedora-40',
Expand All @@ -206,21 +206,20 @@ def contexts(image: str, *scenarios: Iterable[str], repo: str | None = None) ->
'rhel-9-4',
],
'_manual': [
'rhel-9-6',
],
},
'candlepin/subscription-manager-cockpit': {
'main': [
'centos-9-stream/subscription-manager-1.29',
'centos-10',
'rhel-9-5/subscription-manager-1.29',
'rhel-9-6/subscription-manager-1.29',
'rhel-10-0',
'fedora-39',
'fedora-40',
'fedora-41',
],
'_manual': [
'rhel-9-6',
],
},
'rhinstaller/anaconda-webui': {
Expand Down
6 changes: 6 additions & 0 deletions naughty/rhel-9/4545-modprobe-kvdo
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
File "test/verify/check-storage-vdo", line *, in testVdoMissingPackages
*
testlib.Error: timeout
wait_js_cond(ph_in_text("#dialog .pf*-c-alert.pf-m-danger","vdoformat")): * actual text: Danger alert:Error creating volume: Process reported exit code 3: modprobe: FATAL: Module kvdo not found in directory /lib/modules/5.14.*
/usr/sbin/modprobe failed: 1
vdo: Required device-mapper target(s) not detected in your kernel.
9 changes: 9 additions & 0 deletions naughty/rhel-9/4545-modprobe-kvdo-alt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# testVdo (__main__.TestStorageVDO.testVdo)
*
> warn: Error creating volume: Process reported exit code 3: modprobe: FATAL: Module kvdo not found in directory /lib/modules/5.14.*
/usr/sbin/modprobe failed: 1
vdo: Required device-mapper target(s) not detected in your kernel.
Run `lvcreate --help' for more information.
*
testlib.Error: timeout
wait_js_cond(!ph_is_present("#dialog")): Error: condition did not become true
Loading