-
Notifications
You must be signed in to change notification settings - Fork 128
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
Fix 9pfs hostPath mounts and add 9pfs tests #862
Conversation
hostPath was only working for the host paths that are mounted inside the virtlet container.
99314fa
to
73535f3
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One question and rest lgtm.
Reviewed 52 of 52 files at r1.
Reviewable status: 1 change requests, 0 of 1 approvals obtained (waiting on @ivan4th)
tests/e2e/framework/controller.go, line 395 at r1 (raw file):
} pod := generatePodSpec(name, image, opts) fmt.Printf("POD:\n%s\n", utils.ToJSON(pod))
That's the only place where Printf is used in whole file. Are you sure that it should be always printed there, or this was only needed during development time?
It doesn't support CirrOS at this moment because of lack of 9p filesystem support there.
73535f3
to
8eb5915
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewable status: 1 change requests, 0 of 1 approvals obtained (waiting on @jellonek)
tests/e2e/framework/controller.go, line 395 at r1 (raw file):
Previously, jellonek (Piotr Skamruk) wrote…
That's the only place where Printf is used in whole file. Are you sure that it should be always printed there, or this was only needed during development time?
Thanks, fixed!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewed 1 of 1 files at r2.
Reviewable status: complete! 1 of 1 approvals obtained
hostPath
problem (was unable to mount host paths not visible in thevirtlet
container)This change is