Radek Simko
Radek Simko

Reputation: 16136

Is there a way to restrict untrusted container scheduler?

I have an application which I'd like to give the privilege to launch short-lived tasks and schedule these as docker containers. I was thinking of doing this simply via docker run.

As I want to make the attack surface as small as possible, I treat the application as untrusted. As such it can potentially run arbitrary docker run commands (if the codebase contained bug or the container was compromised, input was improperly escaped somewhere etc.) against a predefined docker API endpoint.

This is why I'd like to restrict that application (effectively a scheduler) in some ways:


I looked at couple of options:

It seems that Docker is designed to trust container schedulers by default. Does anyone know if this is a design decision?

Is there any other possible solution available w/ current latest Docker version that I missed?


I also looked at Kubernetes and its Limit Ranges & Resource Quotas which can be applied to K8S namespaces, which looked interesting, assuming there's a way to enforce certain schedulers to only use certain namespaces. This would however increase the scope of this problem to operating K8S cluster.

Upvotes: 17

Views: 243

Answers (1)

kpie
kpie

Reputation: 11110

running docker on a unix platform should be compatible with nice Or so I would think at first looking a little more closely it looks like you need somethign like -cpuset-cpus="0,1"

From the second link , "The --cpu-quota looks to be similar to the --cpuset-cpus ... allocate one or a few cores to a process, it's just time managed instead of processor number managed."

Upvotes: 1

Related Questions