Asking for help? Comment out what you need so we can get more information to help you!
Cluster information:
Kubernetes version: Kubectl: Client Version: 1.18.0 / Server Version 1.18.3
Cloud being used: Minikube
Installation method: local (only one PC)
Host OS: W10
CNI and version:
CRI and version:
After login with:
docker login docker.io
I try to push an image to my private repository and I get the following error:
PS C:\users\dell\kubernetes\golang> docker push manuel1972/repository/nginx
The push refers to repository [docker.io/manuel1972/repository/nginx]
abbd7cab739b: Preparing
de832d8bfd41: Preparing
3d7c8f8d36a5: Preparing
ac078d8f08c6: Preparing
6d196faff4ee: Preparing
ed39597d1556: Waiting
ff73b8119c50: Waiting
d0f104dc0a1f: Waiting
denied: requested access to the resource is denied
However, if I try to do the same in a registry container, it works:
PS C:\users\dell\kubernetes\golang> docker push localhost:5000/nginx
The push refers to repository [localhost:5000/nginx]
abbd7cab739b: Pushed
de832d8bfd41: Pushed
3d7c8f8d36a5: Pushed
ac078d8f08c6: Pushed
6d196faff4ee: Pushed
ed39597d1556: Pushed
ff73b8119c50: Pushed
d0f104dc0a1f: Pushed
latest: digest: sha256:8ce6bb4f3ff0f2cf3f552b8859a38b2ad6f697771d86960b3d673ac02d00f0fb size: 1988
Any suggestions?
Thank you in advance