Announcing Intel Clear Containers V2.1.1
clearlinux.org
Announcing Intel Clear Containers V2.1.1
1–10 of 13 posts
Re: Announcing Intel Clear Containers V2.1.1
#2edit: typo
Re: Announcing Intel Clear Containers V2.1.1
#3My use case is creating containers with multiple interfaces and custom routing rules for each interface. Currently I am using pipework.sh to setup the interfaces and routes, but it's a dirty hack and increases container boot time due to the need to poll for interfaces to be up before starting the application. It looks like this "hyperstart"/systemd approach to namespace isolation avoids that latency, which is nice.
Unfortunately, according to these docs, each container interface requires a tap bridge in addition to the usual veth pair, due to qemu networking limitations. That's unfortunate, especially for containers with multiple interfaces, which is specifically my use-case.
Does anyone have an idea of the overhead of creating many tap interfaces within a container?
Re: Announcing Intel Clear Containers V2.1.1
#4Re: Announcing Intel Clear Containers V2.1.1
#5I hadn't seen this project before. It looks really cool. I especially like the support for pushing network configuration at startup (via the "hyperstart" concept in v1 and systemd in v2). This is sorely lacking in Docker. You can accomplish it with pipework (which is just a wrapper around `ip exec` in the container netns), but then you need to write code in the container like "wait for interface XX to be up before ru…
Re: Announcing Intel Clear Containers V2.1.1
#6Re: Announcing Intel Clear Containers V2.1.1
#7Re: Announcing Intel Clear Containers V2.1.1
#8I wish the documentation was better for integrating with docker seamlessly
Re: Announcing Intel Clear Containers V2.1.1
#9Then do:
sudo rkt run --debug --insecure-options=image --stage1-name=coreos.com/rkt/stage1-kvm:1.25.0 docker://redis
If you run into problem you can email rkt-dev[3].[1] https://coreos.com/rkt/docs/latest/distributions.html#rpm-ba... [2] https://github.com/coreos/rkt/releases/tag/v1.25.0 [3] https://groups.google.com/forum/#!forum/rkt-dev
Re: Announcing Intel Clear Containers V2.1.1
#10I hadn't seen this project before. It looks really cool. I especially like the support for pushing network configuration at startup (via the "hyperstart" concept in v1 and systemd in v2). This is sorely lacking in Docker. You can accomplish it with pipework (which is just a wrapper around `ip exec` in the container netns), but then you need to write code in the container like "wait for interface XX to be up before ru…
Solaris solved the service dependency graph problem with SMF, which is nice.