-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Closed
Labels
flakesFlakes from Continuous IntegrationFlakes from Continuous Integrationkind/bugCategorizes issue or PR as related to a bug.Categorizes issue or PR as related to a bug.locked - please file new issue/PRAssist humans wanting to comment on an old issue or PR with locked comments.Assist humans wanting to comment on an old issue or PR with locked comments.remoteProblem is in podman-remoteProblem is in podman-remote
Description
First things first: this makes no sense to me. I don't see how this could be a flake; it should either consistently fail or consistently pass on the same machine. Instead, we get one-offs, and the ginkgo retry (so far) always passes.
Symptom:
$ podman-remote run --rm --user bin alpine grep CapBnd /proc/self/status
CapBnd: 00000000800405fb
...
Expected
<string>: CapBnd: 00000000800405fb
to contain substring
<string>: 00000000a80425fb
Source:
Lines 334 to 338 in 68ca906
os.Setenv("CONTAINERS_CONF", "/dev/null") | |
session := podmanTest.Podman([]string{"run", "--rm", "--user", "bin", ALPINE, "grep", "CapBnd", "/proc/self/status"}) | |
session.WaitWithDefaultTimeout() | |
Expect(session.ExitCode()).To(Equal(0)) | |
Expect(session.OutputToString()).To(ContainSubstring("00000000a80425fb")) |
Environment: so far, only f32 and f33. Always remote.
Decoding: the cap difference is -- surprise! -- CAP_NET_RAW, CAP_MKNOD,CAP_AUDIT_WRITE
cirrus-flake-xref results:
Podman run [It] podman run user capabilities test
- gce_instance:fedora : int remote fedora-33 root host
- gce_instance:prior-fedora : int remote fedora-32 root host
Could podman be reading containers.conf
even though $CONTAINERS_CONF
is explicitly overridden?
Metadata
Metadata
Assignees
Labels
flakesFlakes from Continuous IntegrationFlakes from Continuous Integrationkind/bugCategorizes issue or PR as related to a bug.Categorizes issue or PR as related to a bug.locked - please file new issue/PRAssist humans wanting to comment on an old issue or PR with locked comments.Assist humans wanting to comment on an old issue or PR with locked comments.remoteProblem is in podman-remoteProblem is in podman-remote