sciabarracom commented on issue #155:
URL: https://github.com/apache/openserverless/issues/155#issuecomment-3103090317

   We always use ssl, except in miniops. SInce it is local, we have to use http 
so the docker registry will aways be insecure and cannt be used unless we 
explicitly instruct the containerd in kind to use an insecure registry.
   So we have to change the kind setup to add those configurations:
   ```
   containerdConfigPatches:
   - |-
     [plugins."io.containerd.grpc.v1.cri".registry.mirrors."10.52.212.167:9000"]
       endpoint = ["http://10.52.212.167:9000";]
     
[plugins."io.containerd.grpc.v1.cri".registry.configs."10.52.212.167:9000".tls]
       insecure_skip_verify = true 
   ```
   
   
https://medium.com/@nash.checkin/kind-kubernetes-in-docker-pulling-image-from-private-insecure-registry-2711706629cb


-- 
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.

To unsubscribe, e-mail: [email protected]

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

Reply via email to