-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[wip] Add support for pod inside of user namespace. #8393
Conversation
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: rhatdan The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Fixes: #7706 |
Specifically we need to be able to launch a pod with --userns=keep-id Signed-off-by: Daniel J Walsh <[email protected]>
@umohnani8 Could you take this over? I don't have the time to complete it. |
A friendly reminder that this PR had no activity for 30 days. |
@umohnani8 Do you have a chance to take this over? |
The basic issue, we are seeing is people adding containers to pods where they use additional fields that do not match the pods infra container. For example we have an issue where a user creates a pod, and then adds a container to the pod, within a user namespace, and the /dev/mqueue from the infra container fails to mount on the container, because the /dev/mqueue inside of the pod does not match the usernamespace inside of the container. Bottom line, I believe we have to be able to at least configure the usernamespace of the pod. |
A friendly reminder that this PR had no activity for 30 days. |
A friendly reminder that this PR had no activity for 30 days. |
Will be taking over this work. |
@rhatdan: PR needs rebase. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
A friendly reminder that this PR had no activity for 30 days. |
Replaced by #10589 |
Specifically we need to be able to launch a pod with
--userns=keep-id
Signed-off-by: Daniel J Walsh [email protected]