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
Docker's VolumeCreate API takes a ClusterVolumeSpec parameter that it'd be nice to be able to use.
Most commonly, ClusterVolumeSpec.AccessMode.{Scope,Sharing} will need to be set and the Docker CLI also has arguments to set these. But probably the whole ClusterVolumeSpec should be exposed in Python. For example in my case, I'd like to be able to set ClusterVolumeSpec.AccessMode.MountVolume.MountFlags (and I turned to the Python API because I could find no way to do this with the CLI...).
Currently the only workaround I'm aware of is to use the API directly instead of using the otherwise nice Python API.
The text was updated successfully, but these errors were encountered:
Docker's
VolumeCreate
API takes aClusterVolumeSpec
parameter that it'd be nice to be able to use.Most commonly,
ClusterVolumeSpec.AccessMode.{Scope,Sharing}
will need to be set and the Docker CLI also has arguments to set these. But probably the wholeClusterVolumeSpec
should be exposed in Python. For example in my case, I'd like to be able to setClusterVolumeSpec.AccessMode.MountVolume.MountFlags
(and I turned to the Python API because I could find no way to do this with the CLI...).Currently the only workaround I'm aware of is to use the API directly instead of using the otherwise nice Python API.
The text was updated successfully, but these errors were encountered: