-
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
Add support ZFS filesystem #1020
Conversation
Can one of the admins verify this patch? |
Can one of the admins verify that this patch is reasonable to test? (reply "ok to test", or if you trust the user, reply "add to whitelist") If this message is too spammy, please complain to ixdy. |
@@ -128,7 +135,7 @@ func getDockerImagePaths(context Context) []string { | |||
// TODO(rjnagal): Detect docker root and graphdriver directories from docker info. | |||
dockerRoot := context.DockerRoot | |||
dockerImagePaths := []string{} | |||
for _, dir := range []string{"devicemapper", "btrfs", "aufs", "overlay"} { | |||
for _, dir := range []string{"devicemapper", "btrfs", "aufs", "overlay", "zfs"} { |
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.
Is ZFS a storage driver in docker?
I thought we can use ZFS instead of ext4 as the base fs.
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.
nvm. Just noticed this page: https://docs.docker.com/engine/userguide/storagedriver/zfs-driver/
What about handling capacity and usage for the base filesystem under zfs? Is it already working ? |
- fix container usage stat not loading on first load
14db399
to
e0fef76
Compare
@vishh Yeah this set as well. |
We should add an e2e test for this. Can you file an issue? On Tue, Dec 15, 2015 at 12:45 PM, Miguel Perez notifications@github.com
|
ok to test On Tue, Dec 15, 2015 at 12:46 PM, Vishnu Kannan vishnuk@google.com wrote:
|
Just created #1021 |
Can one of the admins verify this patch? |
ok to test |
@jimmidyson: I wonder why the network tests are flaky :( The e2e failures are unrelated to this PR. So this PR LGTM |
Hi @vishh, |
Oops. This fell out of my radar. Sorry! |
@cadvisorJenkinsBot: test this please |
ok to test |
I'm unclear if zfs support is supposed to be working right now. For me, it does not appear to be.. On systems with ZFS, I get complaints about /dev/zfs being missing. If I provide the /dev/zfs device by bind mounting the host's device, then I get new complaints about zfs libraries being missing. |
To access ZFS stats from a container, it needs to have the
privileged
flag andzfsutils
needs to be installed in the container. @vishh