-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
podman machine - can't run pods #11452
Comments
I had the same issue, and it was caused by having a Apparently Podman tries to read the client config from Docker, but fails to use it ? It could be the credential store that is confusing it, or just "reading other people's mail" {
"auths": {
"https://index.docker.io/v1/": {}
},
"credsStore": "secretservice",
"experimental": "enabled"
} (removed most of the irrelevant config) https://docs.docker.com/engine/reference/commandline/login/#credentials-store Moving the config file to the side made the podman-remote commands work again. |
@afbjorklund thanks a lot, removing |
Seems to be a duplicate of #11235 |
Thanks again. /close |
Is this a BUG REPORT or FEATURE REQUEST? (leave only one on its own line)
/kind bug
Description
I'm running into the following issue using
podman
v3.3.1, installed via homebrew, on macOS 11.5.2 x86_64.I've initialized/started a podman machine VM with
podman machine init && podman machine start
(which is running and I can runpodman ps
from the host and I canpodman ssh
into it and it appears the VM has network connectivity). I now expect to be able to runpodman run hello-world
, but it fails:(the same error happens when trying to just run a
podman pull hello-world
)When I try the same with the podman cli inside the VM the image pull works and running the VM fails with a CNI related error:
Describe the results you received:
running
podman run hello-world
with apodman machine
VM failedDescribe the results you expected:
running
podman run hello-world
with apodman machine
VM worksAdditional information you deem important (e.g. issue happens only occasionally):
the net
podman
exists:net details:
Output of
podman version
:on the macOS host:
Output of
podman info --debug
:Package info (e.g. output of
rpm -q podman
orapt list podman
):Have you tested with the latest version of Podman and have you checked the Podman Troubleshooting Guide? (https://github.com/containers/podman/blob/master/troubleshooting.md)
Yes
Additional environment details (AWS, VirtualBox, physical, etc.):
This isn't a vanilla macOS machine, but I've removed the following paths prior the above test run:
~/.ssh/podman*
~/.config/containers
~/.local/share/containers
The text was updated successfully, but these errors were encountered: