-
Notifications
You must be signed in to change notification settings - Fork 14
Updated to use latest Docker v1.11.0 and Volume API #20
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
Updated to use latest Docker v1.11.0 and Volume API #20
Conversation
|
|
The default behavior is the same as behavior, except there is no longer a create volume called in any case for Unmount() or Path(), a Get() is done instead to verify the volume exists or not. @cantbewong Can you verify that the mesos-module-dvdi will not be adversely affected if we error on missing volumes for Unmount() and Path() now? The Mount() method now inherently is implict as before. But there is a specific flag to set it as explicit by |
|
@clintonskitson when do you plan have this released? Can you please cut a branch and create a new release for it? Thanks. |
|
@Jay-Lau Have you had a chance to test and verify? |
8863446 to
e9dbe28
Compare
cc943eb to
fe00446
Compare
This commit updates the volume API implementation to leverage the Docker v1.11.0. There was an addition of Get() and List() methods in prior v1.10. The Get() method now replaces the call that implicitly created volumes. The Create() method was used for Path() and other methods prior because there was no Get() method that returned a volume object.
fe00446 to
9b4cdfa
Compare
|
|
@clintonskitson when do you want to have a stable version of 0.2.0? I saw that current version is 0.2.0-rc1 |
|
Planning on it today. On Wednesday, April 20, 2016, Guangya Liu [email protected] wrote:
|
|
Cool! Thanks @clintonskitson |
This commit updates the volume API implementation to leverage
the Docker v1.11.0. There was an addition of Get() and List()
methods in prior v1.10. The Get() method now replaces the
call that implicitly created volumes. The Create() method
was used for Path() and other methods prior because there
was no Get() method that returned a volume object.