-
-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(Question) Mount media from NFS #46
Comments
First you would need to create a PV on the cluster pointing to your nfs share:
Then create a PVC in the namespace that jellyfin will deploy to referencing that PV (you'll need to create the namespace first):
Finally, add |
Hi, I have a similar issue. Currently, I mount media to hostPath, but now I need to mount it to a different directory, such as /share, and I cannot name the volume "media." Would the following change in the chart resolve the issue?
Changes:
|
Hey @tobiasbartel @alexmorbo @astephon88, no need to create a extra PV for your NFS share. The media PVC for jellyfin is for the media produced by jellyfin like thumbnails and stuff. To mount your own media into jellyfin you can utilise the volumes:
- name: series
nfs:
server: 1.2.3.4
path: /some/path/series
- name: movies
nfs:
server: 1.2.3.4
path: /some/path/movies
volumeMounts:
- mountPath: /series
name: series
- mountPath: /movies
name: movies
readOnly: true |
Oof, not sure how I missed that in the deployment template. Thanks! |
Hello,
quick question, I have all my media on a NAS shared via NFS.
What do I have to put into the values file in order to make the NFS shares available in the container?
Thanks in advance!
Cheers!
The text was updated successfully, but these errors were encountered: