squakez commented on issue #2241:
URL: https://github.com/apache/camel-k/issues/2241#issuecomment-830084223


   > Thanks, @squakez.
   > In case of any error that occurred during the pull, we should observe the 
"could not pull base image image" message in the log, right?
   
   Not necessarily, as I managed to replicate the same behavior by setting fake 
registries. I've also managed to make it work the registry procedure locally. 
My best guess is that there is some network issue when trying to reach out 
docker registry from the EKS nodes, assuming that the credentials are correct. 
You can try a very simple execution to confirm your EKS has no network 
limitation by running a simple pod based on a docker.io image, ie create a file 
named hello.yaml:
   ```
   apiVersion: v1
   kind: Pod
   metadata:
     name: hello-world
   spec:
     containers:
     - image: docker.io/hello-world
       name: hello-world
   ```
   ```
   $ kubectl apply -f hello-world.yaml
   ...
   $ kubectl logs hello-world
   
   Hello from Docker!
   This message shows that your installation appears to be working correctly.
   ...
   ```
   If that is working as shown here, then, we probably have some issue to be 
further analized.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to