Replies: 1 comment
-
We run |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Creating this issue/discussion here for visibility that maybe someone had overcome this problem or maybe maintainers of Talos have any insights into this issue.
Docker in Docker (dind) can be used to safely run Docker inside containers, which is used by remote development envinroments like Coder.
The most obvious choice for doing that is sysbox which is currently not supported by Talos so I was researching other solutions.
The closest you can get to that currently is by using kata runtimes via extension that was recently aded. It works, but it's not perfect and comes at a price:
Kata maintainers suggest using loop mounted disks which is something that doesn't work in Talos, specifically
mount
part because it's unable to set up loop device:So docker in kata runtime works but it's slow because it's using slow storage driver. And to overcome that you have to create a loop mounted disk which currently doesn't work in Talos.
Relevant issues: #5803 #4385 #3922
Beta Was this translation helpful? Give feedback.
All reactions