-
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
panic on push #4013
Comments
@trv-rpeoples thanks for the issue report. If you've the time, can you try two quick tests? First one is remove the '-' from the image name. i.e. "my-image" to "myimage". I think the dash is valid, but am not 100% sure. Second test, after logging into oc-login, can you do |
Are you connecting to Podman running in a Linux VM, or attempting to run directly on OS X? The latter is not supported. |
@mheon I’m using it directly on OS X. As for that not being supported, I did not see that indicated in the README, the Installation Instructions, or the Troubleshooting Guide. Is that an accurate statement? |
Seems to be. We have an OS X tutorial (https://github.com/containers/libpod/blob/master/mac_client.md), but I can't find a link to it in the main README/tutorial. We'll see about adding that. |
Also, the fact that it's getting far enough to segfault without a connection being made is bad - we need to improve error messaging for the remote client when a connection is unavailable. |
to prevent client side panics, we should get the runtime earlier in the process of push. Fixes: containers#4013 Signed-off-by: baude <[email protected]>
OS: macOS 10.14.6
Podman version: 1.5.1
Is this a BUG REPORT or FEATURE REQUEST? (leave only one on its own line)
/kind bug
Description
Trying to push a locally built Docker image to an OpenShift registry
Steps to reproduce the issue:
Build image with
docker build -t my-image .
Use
oc login
to login,oc project <projectname>
to set projectpodman push my-image my.openshift.registry/my-project/my-image
Describe the results you received:
Describe the results you expected:
A successful push of the image to the registry
Additional information you deem important (e.g. issue happens only occasionally):
Have tried many variations of image name, tag, etc and cannot workaround the issue
Output of
podman version
:Output of
podman info --debug
:Package info (e.g. output of
rpm -q podman
orapt list podman
):Additional environment details (AWS, VirtualBox, physical, etc.):
macOS 10.14.6, installed podman via:
brew cask install podman
The text was updated successfully, but these errors were encountered: