Jie Yu
Jie Yu
@jpillora the nice thing about the `R:socks` option is that the chisel client does not have to hard code the mapping information: ```bash chisel server --reverse ``` ```bash chisel client...
> Can you use chisel server --auth "user:pass" and chisel client --auth "user:pass" instead? The authn you mentioned here is the authentication between chisel client and chisel server. The authn...
Yeah, curl currently is a dependency if people wants to use container image support in unified containerizer. There is plan to remove this dependency.
I don't think we turn on kmem accounting yet in Mesos containerizer. I remember in old kernels, you need to set kmem.limit_in_bytes once to enable kmem accounting. I am not...
I am not sure if the kernel behavior has changed or not in newer kernels. For example: https://github.com/opencontainers/runc/blob/7139b61f7fdb904d0acb8db825709aa8d2d2ef36/libcontainer/cgroups/fs/memory.go#L70 You'll have to write `memory.kmem.limit_in_bytes` to enable kmem accounting So if kmem...
Looks like on CentOS 7 (3.10.0-693.5.2.el7.x86_64). If kmem accounting is not enabled, the `memory.kmem.limit_in_bytes` will always show 0. And reading `memory.kmem.slabinfo` will give `Input/output error` I think we should probably...
@fcuny We prefer reviewboard for non trivial changes.
FYI, wrote a blog post about this to share our experiences: https://d2iq.com/blog/running-kind-inside-a-kubernetes-cluster-for-continuous-integration
@deiwin it’s open sourced. There’s a link in the blog post to the repo. https://github.com/jieyu/docker-images
@axsaucedo I believe that one of the main reasons that previous implementations require deleting the KIND cluster is to make sure cgroups are cleaned up (thus no leaked) on the...