|
Bugzilla – Full Text Bug Listing |
| Summary: | [Build 45.1] openQA test fails in hawk_gui: no "/sys/fs/cgroup/docker/cpuset.cpus.effective" | ||
|---|---|---|---|
| Product: | [openSUSE] PUBLIC SUSE Linux Enterprise Server 15 SP6 | Reporter: | lili zhao <llzhao> |
| Component: | Containers | Assignee: | Containers Team <containers-bugowner> |
| Status: | VERIFIED INVALID | QA Contact: | |
| Severity: | Normal | ||
| Priority: | P1 - Urgent | CC: | acarvajal, apappas, danish.prakash, dcermak, llzhao, priyanka.saggu, prokop.vlasin, rtsvetkov |
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | x86-64 | ||
| OS: | Other | ||
| URL: | https://openqa.suse.de/tests/13086523/modules/hawk_gui/steps/43 | ||
| Whiteboard: | |||
| Found By: | openQA | Services Priority: | |
| Business Priority: | Blocker: | Yes | |
| Marketing QA Status: | --- | IT Deployment: | --- |
|
Description
lili zhao
2023-12-20 09:44:36 UTC
You are installing an ancient version of docker that does not support cgroup v2 to which SLES switched (tests/ha/hawk_gui.pm line 20):
```
sub install_docker {
my $docker_url = "https://download.docker.com/linux/static/stable/x86_64/docker-19.03.5.tgz";
assert_script_run "curl -s $docker_url | tar zxf - --strip-components 1 -C /usr/bin", 120;
# Allow the user to run docker. We can't add him to the docker group without restarting X.
# The final colon is to avoid a bash syntax error when assert_script_run() appends a semicolon
assert_script_run "/usr/bin/dockerd -G users --insecure-registry registry.suse.de >/dev/null 2>&1 & :";
}
```
Please use our own docker instead of a long obsolete tarball from upstream.
This is not our docker version but an entirely unsupported docker version from upstream. (In reply to Dan Čermák from comment #3) > This is not our docker version but an entirely unsupported docker version > from upstream. You'll have to switch this test away from SLED for this though. SLED does not support enabling the container module. You'll have to base this test on SLES and install Firefox or on SLES + WE (Workstation Extension). Thank you so much for the comments. I opened a test case JIRA ticket to track this failure: TEAM-8899 - [15SP6][HA][Build 45.1] openQA test fails in hawk_gui: no "/sys/fs/cgroup/docker/cpuset.cpus.effective" We will change the bug status to "Verified Invalid" after we done the verifying. Test case issue. |