Skip to content

Commit

Permalink
add "--use-https=true" as default mount option
Browse files Browse the repository at this point in the history
  • Loading branch information
andyzhangx committed May 5, 2019
1 parent 102fada commit 37bd2ca
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pkg/blobfuse/nodeserver.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,7 @@ func (d *Driver) NodePublishVolume(ctx context.Context, req *csi.NodePublishVolu
}
}

// todo: option allow_other only allowed if 'user_allow_other' is set in /etc/fuse.conf
options := []string{}
options := []string{"--use-https=true"}
if readOnly {
options = append(options, "-o ro")
}
Expand Down

0 comments on commit 37bd2ca

Please sign in to comment.