Skip to content

Commit

Permalink
filesytem name
Browse files Browse the repository at this point in the history
  • Loading branch information
ophum committed Jul 29, 2022
1 parent 0aabc62 commit ec40757
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion pkg/fs/fs.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,10 @@ func NewSecretFS(client *k8s.Client) *SecretFS {
}

func (f *SecretFS) Mount(mountPoint string) (*fuse.Server, error) {
return fs.Mount(mountPoint, f.root, &fs.Options{})
return fs.Mount(mountPoint, f.root, &fs.Options{
MountOptions: fuse.MountOptions{
FsName: "k8s-secret-fs",
Name: "k8s-secret-fs",
},
})
}

0 comments on commit ec40757

Please sign in to comment.