Add support for using Access Points#35
Open
adidenko wants to merge 1 commit intothecodeteam:masterfrom
Open
Conversation
You can access the file system namespace through an access point. The default namespace access point for the OneFS file system is `/ifs`. If your Isilon user is not root and has no access to the default `/ifs` access point, then you need to specify your access point in the client. It will be used in folder/volume manipulation through the REST Namespace interface. VolumePath (which is absolute filesystem path) will be used in quota/export manipulation through the REST Platform interface. For root user it does not matter since: VolumePath (URL) = VolumeAccessPath (Filesystem) New VolumeAccessPath defaults to VolumePath for backward compatibility with previous configurations.
adidenko
pushed a commit
to adidenko/k8s_isi_provisioner
that referenced
this pull request
Jun 5, 2018
- Move MountOptions to Spec. Annotations are deprecated since 1.10.x. - Upgrade deps to support Kubernetes 1.10+. - Switch to custom Goisilon lib with Access Points support. Otherwise this provisioner works only with root Isilon credentials which is not possible in production environments: thecodeteam/goisilon#35
adidenko
pushed a commit
to adidenko/k8s_isi_provisioner
that referenced
this pull request
Jun 5, 2018
- Move MountOptions to Spec. Annotations are deprecated since 1.10.x. - Upgrade deps to support Kubernetes 1.10+. - Switch to custom Goisilon lib with Access Points support. Otherwise this provisioner works only with root Isilon credentials which is not possible in production environments: thecodeteam/goisilon#35
adidenko
pushed a commit
to adidenko/k8s_isi_provisioner
that referenced
this pull request
Jun 5, 2018
- Move MountOptions to Spec. Annotations are going to be deprecated. - Upgrade deps to support Kubernetes 1.10+. - Switch to custom Goisilon lib with Access Points support. Otherwise this provisioner works only with root Isilon credentials which is not possible in production environments: thecodeteam/goisilon#35
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
You can access the file system namespace through an access point. The default namespace access point for the OneFS file system is
/ifs.If your Isilon user is not root and has no access to the default
/ifsaccess point, then you need to specify your access point in the client. It will be used in folder/volume manipulation through the REST Namespace interface. VolumePath (which is absolute filesystem path) will be used in quota/export manipulation through the REST Platform interface.For root user it does not matter since:
VolumePath (URL) = VolumeAccessPath (Filesystem) =
/ifs/SOME_PATHNew VolumeAccessPath defaults to VolumePath for backward compatibility with previous configurations.
Closes #34