Is there a way to restrict untrusted container scheduler?

女生的网名这么多〃 提交于 2019-12-10 01:21:33

问题


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:

  • prevent --privileged use
  • enforce --read-only flag
  • enforce memory & CPU limits

I looked at couple of options:

  • selinux
    • the selinux policies would need to be set on the host level and then propagated inside the containers via --selinux-enabled flag on the daemon level. The scheduler can however override this anyway via run --privileged.
  • seccomp profiles
    • these are only applied at a time of launching the container (seccomp flags are available for docker run)
  • AppArmor
    • this can (again) be overriden on the scheduler level via --privileged
  • docker daemon --exec-opts flag
    • only a single option is actually available for this flag (native.cgroupdriver)

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.


回答1:


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



来源:https://stackoverflow.com/questions/36965576/is-there-a-way-to-restrict-untrusted-container-scheduler

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!