Skip to content

Commit

Permalink
updated jellyfin storage params
Browse files Browse the repository at this point in the history
  • Loading branch information
drew-viles committed Jun 2, 2024
1 parent 312f832 commit 0d7a222
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
4 changes: 2 additions & 2 deletions charts/jellyfin/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: jellyfin
description: Deploys Jellyfin onto Kubernetes
type: application
version: 0.1.0
appVersion: "10.18.3"
version: 0.1.1
appVersion: "10.9.4"
maintainers:
- name: Drew
email: [email protected]
Expand Down
4 changes: 3 additions & 1 deletion charts/jellyfin/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# jellyfin

![Version: 0.1.0](https://img.shields.io/badge/Version-0.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 10.18.3](https://img.shields.io/badge/AppVersion-10.18.3-informational?style=flat-square)
![Version: 0.1.1](https://img.shields.io/badge/Version-0.1.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 10.9.4](https://img.shields.io/badge/AppVersion-10.9.4-informational?style=flat-square)

The Jellyfin helm chart simply exists for deploying the Jellyfin media server onto Kubernetes.

Expand Down Expand Up @@ -41,6 +41,8 @@ The following table lists the configurable parameters of the chart and the defau
| autoscaling.minReplicas | int | `1` | |
| autoscaling.targetCPUUtilizationPercentage | int | `80` | |
| config.url | string | `"https://config.example.com"` | |
| data.cacheSize | string | `nil` | |
| data.configSize | string | `nil` | |
| data.hostPath.enabled | bool | `true` | |
| data.hostPath.mediaPath | string | `"/data"` | |
| data.persistentData.enabled | bool | `false` | |
Expand Down
6 changes: 3 additions & 3 deletions charts/jellyfin/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ spec:
- ReadWriteOnce
resources:
requests:
storage: 2Gi
storage: {{ .Values.data.configSize }}
metadata:
name: config
- spec:
Expand All @@ -96,6 +96,6 @@ spec:
- ReadWriteOnce
resources:
requests:
storage: 2Gi
storage: {{ .Values.data.cacheSize }}
metadata:
name: cache
name: cache
2 changes: 2 additions & 0 deletions charts/jellyfin/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@ data:
persistentData:
enabled: false
existingName: ""
configSize:
cacheSize:

config:
url: https://config.example.com

0 comments on commit 0d7a222

Please sign in to comment.