-
Notifications
You must be signed in to change notification settings - Fork 649
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Support remote containerd management #473
Comments
Just forwarding the socket is not enough. The daemon and the client has to share the same filesystem for a bunch of stuffs such as |
There is a WIP PR to move |
In the process of implementing the function of remote containerd management, I notice that the stdin/stderr/stdout cannot access via containerd grpc interface. I think the input/output stream should be listed. And for nerdctl, we could make nerdctl as a docker alternatives, which means nerdctl could manage container instance of containerd remotely (including local virtual machine, and containerd in kubernetes cluster) nerdctl could use containerd API and cri to manage the containers in unified cli interface. containerd API for manage containerd instance, CRI for manage other CRI instance, and nerdctl could be a tool for kubernetes ops. |
It seems like you currently need a local containerd, even when using |
@AkihiroSuda Maybe at macOS, |
The simple use case to confirm that forwarding socket is not enough is mouting containerd socket in a container. containerd/containerd#5876 seems to be the solution so far |
That would be super awesome for running remote docker builds on aws lambda - if TLS would also be available. Any chance that this will be implemented at any point? |
If you all you need is |
At current version of nerdctl and containerd, we can only manage local containerd instance.
nerdctl cannot manage containerd via remote socket.
How to try remote containerd management:
./sockfwd -s 0.0.0.0:9090 -d unix:/run/containerd/containerd.sock
../sockfwd -d 123.57.254.88:9090 -s unix:/tmp/containerd.sock
./_output/nerdctl --debug -a /tmp/containerd.sock run --network=none --rm -it alpine echo 1
and failed.https://github.com/robberphex/sockfwd/
I think we need to modify containerd and nerdctl as well.
The text was updated successfully, but these errors were encountered: