You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, we are implementing this tool in our org right now, and we ran into a weird bug.
When we pull from dockers, certain images would pull, but some would fail saying “no basic auth credentials”.
We checked all permissions, and everything works correctly, we could not wrap our heads around this, until we saw that docker did not have enough space to pull the images.
After doing a system prune, and having enough space, that no basic auth went away. There might be a portion in the code that sees the return code and prints the wrong error message for this situation.
When I pulled enough to where my docker did not have enough space left, the error came back, so it is definitely this that's causing this.
The text was updated successfully, but these errors were encountered:
Running into the same issue with Docker Desktop for Mac on ARM64 v4.25.2 (129061) and Credential Helper: v0.7.0. I've tried compiling the main branch with go install without any luck as well.
I was able to resolve my issue by explicitly setting the AWS_PROFILE environment variable for the account I needed to access ECR in, even though it is my default account in the AWS config.
What you are describing is not related to my bug. The bug is in the software not catching this and giving a wrong error message. It should fail on not enough space for docker, or some other error docker is returning, but instead it's saying not basic auth. It has nothing to do with credentials.
Hello, we are implementing this tool in our org right now, and we ran into a weird bug.
When we pull from dockers, certain images would pull, but some would fail saying “no basic auth credentials”.
We checked all permissions, and everything works correctly, we could not wrap our heads around this, until we saw that docker did not have enough space to pull the images.
After doing a system prune, and having enough space, that no basic auth went away. There might be a portion in the code that sees the return code and prints the wrong error message for this situation.
When I pulled enough to where my docker did not have enough space left, the error came back, so it is definitely this that's causing this.
The text was updated successfully, but these errors were encountered: