-
Notifications
You must be signed in to change notification settings - Fork 17
Update user docs for using valid server and path during PVC creation #45
Conversation
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: Assign the PR to them by writing The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Hi @ashahba. Thanks for your PR. I'm waiting for a kubeflow member to verify that this patch is reasonable to test. If it is, they should reply with I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we can just keep it short.
docs/user.md
Outdated
@@ -282,6 +282,13 @@ source types is given below. | |||
persistentVolumeClaim: | |||
claimName: kvc-resource-a150fd63-11c4-11e8-8397-0a580a440340 | |||
``` | |||
### Caveats ### | |||
Please keep in mind that during Persistent Volume creation, Kubernetes does not validate the `server` or `path` provided by configuration file and for that reason `KVC` follows the same practice. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can just say here: The NFS server ip and path are not validated, so please ensure that the servers are routable and paths are valid prior to the creation of the VolumeManager CR.
@Ajay191191 if you feel this is till to long, we can shorten it, but often times people skip reading docs until they run into issues. Chances are a single line around |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
This also fixes #18 |
Since
Kubernetes
does not validateserver
orpath
duringPVC
creation, we don't wantKVC
to get into business of putting workarounds for that.But we think it is nice to bring this to our users attention so that they verify the servers prior to using
KVC
andPVC
s.