-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
TestFunctional/parallel/MountCmd fails in GitHub actions with podman driver #11293
Comments
It seems that the custom network doesn't have this. A regular container will happily reply
So apparently we have to get the gateway from the nested Networks document ? |
Yes, there is a bug in the podman code that only sets the basic network config for the default network... https://github.com/containers/podman/blob/v3.1.2/libpod/networking_linux.go#L1040
We will need to get it from the Networks, for compatibility with older Podman version (before any fix). |
Apparently it was left empty on purpose, for Docker compatibility. Sadly we used different code for them. if ociBin == Docker {
return dockerNetworkInspect(name)
}
if ociBin == Podman {
return podmanNetworkInspect(name)
} |
Mount comand fails:
Please not, the
Bind Address
has "nil" host part.Comes from the result of
oci.containerGatewayIP
which runspodman container inspect --format {{.NetworkSettings.Gateway}}
, andinspect
returns7_Run Integration Test.txt
The text was updated successfully, but these errors were encountered: