add setenv
This commit is contained in:
10
README.md
10
README.md
@@ -1,5 +1,15 @@
|
||||
# Jellyfin
|
||||
|
||||
## Install
|
||||
|
||||
```bash
|
||||
# Set up the media pv
|
||||
kubectl apply -f media.yaml
|
||||
|
||||
# Install jellyfin
|
||||
helm upgrade --install jellyfin ./helm
|
||||
```
|
||||
|
||||
## Setup
|
||||
|
||||
```bash
|
||||
|
||||
@@ -43,11 +43,11 @@ spec:
|
||||
readOnly: true
|
||||
resources:
|
||||
limits:
|
||||
memory: "8Gi"
|
||||
cpu: "4"
|
||||
memory: "10Gi"
|
||||
cpu: "6"
|
||||
requests:
|
||||
memory: "1Mi"
|
||||
cpu: "1m"
|
||||
memory: "512Mi"
|
||||
cpu: "1"
|
||||
restartPolicy: Always
|
||||
volumes:
|
||||
- name: config
|
||||
|
||||
@@ -8,11 +8,8 @@ spec:
|
||||
accessModes:
|
||||
- ReadWriteMany
|
||||
persistentVolumeReclaimPolicy: Retain
|
||||
claimRef:
|
||||
namespace: ducoterra
|
||||
name: nfs-media
|
||||
nfs:
|
||||
server: freenas # replace with your nfs server IP or hostname
|
||||
server: 3.14.3.101 # replace with your nfs server IP or hostname
|
||||
path: "/mnt/enc0/media" # replace with your mount path
|
||||
---
|
||||
# nfs-pvc.yaml
|
||||
@@ -21,7 +18,6 @@ apiVersion: v1
|
||||
kind: PersistentVolumeClaim
|
||||
metadata:
|
||||
name: nfs-media
|
||||
namespace: ducoterra
|
||||
spec:
|
||||
resources:
|
||||
requests:
|
||||
|
||||
Reference in New Issue
Block a user