Skip to content
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

Create the /etc/mtab file if does not exists #10270

Merged
merged 1 commit into from
May 17, 2021

Conversation

rhatdan
Copy link
Member

@rhatdan rhatdan commented May 7, 2021

We should create the /etc/mtab->/proc/mountinfo link
so that mount command will work within the container.

Docker does this by default.

Fixes: #10263

Signed-off-by: Daniel J Walsh [email protected]

@openshift-ci-robot
Copy link
Collaborator

[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 /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@openshift-ci-robot openshift-ci-robot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label May 7, 2021
@TomSweeneyRedHat
Copy link
Member

All kinds of red unhappy tests @rhatdan

@mheon
Copy link
Member

mheon commented May 9, 2021 via email

Copy link
Member

@giuseppe giuseppe left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@rhatdan
Copy link
Member Author

rhatdan commented May 10, 2021

@mheon We already do this, with /etc/resolv.conf and /etc/hosts, if they do not exist in the base image. We could create an empty file for the inode and mount over it, but I am not sure this is better then setting up the image with the symbolic link, which BTW almost all images have by default, which is why we never caught this until now. We can talk at standup about potentially special handling the additional mount inodes we add to images.

@mheon
Copy link
Member

mheon commented May 10, 2021 via email

@rhatdan rhatdan force-pushed the mtab branch 3 times, most recently from 68304f6 to 4f25aa5 Compare May 14, 2021 10:52
Copy link
Member

@giuseppe giuseppe left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

just a nit that could be addressed later,

LGTM

Comment on lines 1539 to 1540
if _, err := os.Lstat(mtab); err != nil {
if err = os.Symlink("/proc/mounts", mtab); err != nil {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

could this be simplified as?

if err = os.Symlink("/proc/mounts", mtab); err != nil && !os.IsExist(err) {
	return "", err
}

@openshift-ci
Copy link
Contributor

openshift-ci bot commented May 14, 2021

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: giuseppe, 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 /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@TomSweeneyRedHat
Copy link
Member

LGTM
but I'll let @mheon hit the merge button based on his last comment.

We should create the /etc/mtab->/proc/mountinfo link
so that mount command will work within the container.

Docker does this by default.

Fixes: containers#10263

Signed-off-by: Daniel J Walsh <[email protected]>
@rhatdan rhatdan added 3.2 lgtm Indicates that a PR is ready to be merged. labels May 17, 2021
@openshift-merge-robot openshift-merge-robot merged commit f65d930 into containers:master May 17, 2021
@github-actions github-actions bot added the locked - please file new issue/PR Assist humans wanting to comment on an old issue or PR with locked comments. label Sep 23, 2023
@github-actions github-actions bot locked as resolved and limited conversation to collaborators Sep 23, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
approved Indicates a PR has been approved by an approver from all required OWNERS files. lgtm Indicates that a PR is ready to be merged. locked - please file new issue/PR Assist humans wanting to comment on an old issue or PR with locked comments.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

mount command does not work inside podman containers
6 participants