You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 23, 2024. It is now read-only.
The API will be extended such that users may request different types of "external" volumes distinguished by provider.
Initial testing will focus on the Docker Volume Driver Interface provider and the "rexray" driver. For this use case, we also provide specific validation. Other provider/driver combinations should work in principal but are not tested.
Sample application definition JSON fragment:
{
"id": "/foo",
"container": {
...
"volumes": [
{
"containerPath": "/docker_storage",
"mode": "RW",
// also supported for non-docker containers!
"external": {
// Uniquely identifies the volume inside of the cluster for some provider driver
// combinations which provide cluster-wide volumes.
// For other providers this may only be unique per node, e.g. secret providers.
"name": "my-external-volume",
“provider”: “dvdi”,
“options”: { “dvdi/iops”: 1000, “dvdi/driver”: “rexray” },
“size”: 1234
}
},
...
]
},
...
}
There still seems to be a rather big bug in combination with rexray:
correction: the "bug in combination with rexray" is really not specific to rexray. more closely related to an implementation detail of the DVDI mesos module (it relies on something else to isolate the container mount namespace from the host mount namespace). rexray may have other bugs, but this isn't one :)
The API will be extended such that users may request different types of "external" volumes distinguished by provider.
Initial testing will focus on the Docker Volume Driver Interface provider and the "rexray" driver. For this use case, we also provide specific validation. Other provider/driver combinations should work in principal but are not tested.
Sample application definition JSON fragment:
There still seems to be a rather big bug in combination with rexray:
Related epic (sorry, internal): MARATHON-749
The text was updated successfully, but these errors were encountered: