Commit 1fd5bd7d authored by Silvan Kaiser's avatar Silvan Kaiser

Adds missing user mapping option for Quobyte mounts

parent 139a13d3
...@@ -254,6 +254,7 @@ func (mounter *quobyteMounter) SetUpAt(dir string, fsGroup *int64) error { ...@@ -254,6 +254,7 @@ func (mounter *quobyteMounter) SetUpAt(dir string, fsGroup *int64) error {
os.MkdirAll(dir, 0750) os.MkdirAll(dir, 0750)
var options []string var options []string
options = append(options, "allow-usermapping-in-volumename")
if mounter.readOnly { if mounter.readOnly {
options = append(options, "ro") options = append(options, "ro")
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment