Re: [kubernetes-users] Is a pod equivalent to a set of containers with shared IPC, net, PID namespaces and volumes?

2017-09-22 Thread 'Yu-Ju Hong' via Kubernetes user discussion and Q
FYI, the proposal for enabling shared PID namespace is undergoing some changes to be more configurable (and to ensure backward compatibility). Proposal: ​​https://github.com/kubernetes/community/pull/1048 On Fri, Sep 22, 2017 at 10:06 AM, 'Tim Hockin' via Kubernetes user discussion and Q

Re: [kubernetes-users] Pod Warning OutOfmemory?

2016-12-09 Thread 'Yu-Ju Hong' via Kubernetes user discussion and Q
https://github.com/kubernetes/kubernetes/blob/v1.4.5/pkg/kubelet/kubelet.go#L2195 Kubelet could not admit the pod because there wasn't enough memory on the node. Normally this would not happen because scheduler runs the same predicates to make the decision. However, if there are some

Re: [kubernetes-users] Image garbage collection issues

2016-10-06 Thread 'Yu-Ju Hong' via Kubernetes user discussion and Q
Do your images have multiple tags? There was a bug where deleting images by ID would fail if the image has multiple tags (issue: https://github.com/kubernetes/kubernetes/issues/28491, fix: https://github.com/kubernetes/kubernetes/pull/29316). The fix was cherry-picked to Kubernetes 1.3.3+. If that