Skip to content

Commit

Permalink
Documenting PVC storage initialiser
Browse files Browse the repository at this point in the history
  • Loading branch information
axsaucedo authored May 28, 2021
1 parent 60776b3 commit 8740d95
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions doc/source/servers/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -279,3 +279,14 @@ stringData:
RCLONE_CONFIG_S3_SECRET_ACCESS_KEY: ""
RCLONE_CONFIG_S3_ENV_AUTH: "true"
```
### Directly from PVC
You are able to make models available directly from PVCs instead of object stores. This may be desirable if you have a lot of very large files and you want to avoid uploading/downloading, for example through NFS drives.
The way in which you are able to specify the PVC is using the `modelUri` with the following format below. One thing to take into consideration is the permissions in the files as the containers will have their respective `runAsUser` parameters.

```
...
modelUri: pvc://<pvc-name>/<path>
```

1 comment on commit 8740d95

@nrchakradhar
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@axsaucedo Does it make sense to add a note about the type of PVC that may be needed? RWX type PVC may be needed if multiple replicas are used.

Please sign in to comment.