From 99e23213ff1fddd1e2daae393f60e381ae67e755 Mon Sep 17 00:00:00 2001 From: Simon Caron Date: Mon, 13 Apr 2020 07:48:37 -0400 Subject: [PATCH] Added Jellyfin Chart (#198) Signed-off-by: Simon Caron --- charts/jellyfin/Chart.yaml | 16 +++ charts/jellyfin/OWNERS | 4 + charts/jellyfin/README.md | 115 ++++++++++++++++ charts/jellyfin/templates/NOTES.txt | 19 +++ charts/jellyfin/templates/_helpers.tpl | 32 +++++ charts/jellyfin/templates/config-pvc.yaml | 29 ++++ charts/jellyfin/templates/deployment.yaml | 124 +++++++++++++++++ charts/jellyfin/templates/ingress.yaml | 38 ++++++ charts/jellyfin/templates/movies-pvc.yaml | 29 ++++ charts/jellyfin/templates/service.yaml | 52 +++++++ charts/jellyfin/templates/tvshows-pvc.yaml | 29 ++++ charts/jellyfin/values.yaml | 151 +++++++++++++++++++++ 12 files changed, 638 insertions(+) create mode 100644 charts/jellyfin/Chart.yaml create mode 100644 charts/jellyfin/OWNERS create mode 100644 charts/jellyfin/README.md create mode 100644 charts/jellyfin/templates/NOTES.txt create mode 100644 charts/jellyfin/templates/_helpers.tpl create mode 100644 charts/jellyfin/templates/config-pvc.yaml create mode 100644 charts/jellyfin/templates/deployment.yaml create mode 100644 charts/jellyfin/templates/ingress.yaml create mode 100644 charts/jellyfin/templates/movies-pvc.yaml create mode 100644 charts/jellyfin/templates/service.yaml create mode 100644 charts/jellyfin/templates/tvshows-pvc.yaml create mode 100644 charts/jellyfin/values.yaml diff --git a/charts/jellyfin/Chart.yaml b/charts/jellyfin/Chart.yaml new file mode 100644 index 00000000..7828b850 --- /dev/null +++ b/charts/jellyfin/Chart.yaml @@ -0,0 +1,16 @@ +apiVersion: v1 +appVersion: v10.5.3-ls45 +description: Jellyfin is a Free Software Media System +name: jellyfin +version: 1.0.0 +keywords: + - Jellyfin + - mediaplayer +home: https://github.com/billimek/billimek-charts/tree/master/charts/Jellyfin +icon: https://github.com/jellyfin/jellyfin-ux/blob/master/branding/SVG/icon-solid-black.svg +sources: + - https://hub.docker.com/r/linuxserver/Jellyfin/ + - https://github.com/Jellyfin/Jellyfin +maintainers: + - name: skaro13 + email: simon.caron@protonmail.com diff --git a/charts/jellyfin/OWNERS b/charts/jellyfin/OWNERS new file mode 100644 index 00000000..51f88652 --- /dev/null +++ b/charts/jellyfin/OWNERS @@ -0,0 +1,4 @@ +approvers: +- billimek +reviewers: +- billimek \ No newline at end of file diff --git a/charts/jellyfin/README.md b/charts/jellyfin/README.md new file mode 100644 index 00000000..00568cee --- /dev/null +++ b/charts/jellyfin/README.md @@ -0,0 +1,115 @@ +# Jellyfin Media Player + +This is a helm chart for [Jellyfin](https://github.com/jellyfin/jellyfin) leveraging the [Linuxserver.io image](https://hub.docker.com/r/linuxserver/jellyfin/) + +## TL;DR; + +```shell +$ helm repo add billimek https://billimek.com/billimek-charts/ +$ helm install billimek/jellyfin +``` + +## Installing the Chart + +To install the chart with the release name `my-release`: + +```console +helm install --name my-release billimek/jellyfin +``` + +## Uninstalling the Chart + +To uninstall/delete the `my-release` deployment: + +```console +helm delete my-release --purge +``` + +The command removes all the Kubernetes components associated with the chart and deletes the release. + +## Configuration + +The following tables lists the configurable parameters of the Sentry chart and their default values. + +| Parameter | Description | Default | +|----------------------------|-------------------------------------|---------------------------------------------------------| +| `image.repository` | Image repository | `linuxserver/jellyfin` | +| `image.tag` | Image tag. Possible values listed [here](https://hub.docker.com/r/linuxserver/jellyfin/tags/).| `v10.5.3-ls45`| +| `image.pullPolicy` | Image pull policy | `IfNotPresent` | +| `strategyType` | Specifies the strategy used to replace old Pods by new ones | `Recreate` | +| `timezone` | Timezone the jellyfin instance should run as, e.g. 'America/New_York' | `UTC` | +| `puid` | process userID the jellyfin instance should run as | `1001` | +| `pgid` | process groupID the jellyfin instance should run as | `1001` | +| `umaskSet` | for umask setting of Jellyfin | `022` | +| `probes.liveness.initialDelaySeconds` | Specify liveness `initialDelaySeconds` parameter for the deployment | `60` | +| `probes.liveness.failureThreshold` | Specify liveness `failureThreshold` parameter for the deployment | `5` | +| `probes.liveness.timeoutSeconds` | Specify liveness `timeoutSeconds` parameter for the deployment | `10` | +| `probes.readiness.initialDelaySeconds` | Specify readiness `initialDelaySeconds` parameter for the deployment | `60` | +| `probes.readiness.failureThreshold` | Specify readiness `failureThreshold` parameter for the deployment | `5` | +| `probes.readiness.timeoutSeconds` | Specify readiness `timeoutSeconds` parameter for the deployment | `10` | +| `Service.type` | Kubernetes service type for the jellyfin GUI | `ClusterIP` | +| `Service.port` | Kubernetes port where the jellyfin GUI is exposed| `8096` | +| `Service.annotations` | Service annotations for the jellyfin GUI | `{}` | +| `Service.labels` | Custom labels | `{}` | +| `Service.loadBalancerIP` | Loadbalance IP for the jellyfin GUI | `{}` | +| `Service.loadBalancerSourceRanges` | List of IP CIDRs allowed access to load balancer (if supported) | None +| `ingress.enabled` | Enables Ingress | `false` | +| `ingress.annotations` | Ingress annotations | `{}` | +| `ingress.labels` | Custom labels | `{}` +| `ingress.path` | Ingress path | `/` | +| `ingress.hosts` | Ingress accepted hostnames | `chart-example.local` | +| `ingress.tls` | Ingress TLS configuration | `[]` | +| `persistence.config.enabled` | Use persistent volume to store configuration data | `true` | +| `persistence.config.size` | Size of persistent volume claim | `1Gi` | +| `persistence.config.existingClaim`| Use an existing PVC to persist data | `nil` | +| `persistence.config.storageClass` | Type of persistent volume claim | `-` | +| `persistence.config.accessMode` | Persistence access mode | `ReadWriteOnce` | +| `persistence.config.skipuninstall` | Do not delete the pvc upon helm uninstall | `false` | +| `persistence.downloads.enabled` | Use persistent volume to store configuration data | `true` | +| `persistence.downloads.size` | Size of persistent volume claim | `10Gi` | +| `persistence.downloads.existingClaim`| Use an existing PVC to persist data | `nil` | +| `persistence.downloads.storageClass` | Type of persistent volume claim | `-` | +| `persistence.downloads.accessMode` | Persistence access mode | `ReadWriteOnce` | +| `persistence.downloads.skipuninstall` | Do not delete the pvc upon helm uninstall | `false` | +| `persistence.tvshows.enabled` | Use persistent volume to store tvshows data | `true` | +| `persistence.tvshows.size` | Size of persistent volume claim | `10Gi` | +| `persistence.tvshows.existingClaim`| Use an existing PVC to persist data | `nil` | +| `persistence.tvshows.storageClass` | Type of persistent volume claim | `-` | +| `persistence.tvshows.accessMode` | Persistence access mode | `ReadWriteOnce` | +| `persistence.tvshows.skipuninstall` | Do not delete the pvc upon helm uninstall | `false` | +| `persistence.movies.enabled` | Use persistent volume to store movies data | `true` | +| `persistence.movies.size` | Size of persistent volume claim | `10Gi` | +| `persistence.movies.existingClaim`| Use an existing PVC to persist data | `nil` | +| `persistence.movies.storageClass` | Type of persistent volume claim | `-` | +| `persistence.movies.accessMode` | Persistence access mode | `ReadWriteOnce` | +| `persistence.movies.skipuninstall` | Do not delete the pvc upon helm uninstall | `false` | +| `persistence.extraExistingClaimMounts` | Optionally add multiple existing claims | `[]` | +| `resources` | CPU/Memory resource requests/limits | `{}` | +| `nodeSelector` | Node labels for pod assignment | `{}` | +| `tolerations` | Toleration labels for pod assignment | `[]` | +| `affinity` | Affinity settings for pod assignment | `{}` | +| `podAnnotations` | Key-value pairs to add as pod annotations | `{}` | +| `deploymentAnnotations` | Key-value pairs to add as deployment annotations | `{}` | + +Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example, + +```console +helm install --name my-release \ + --set timezone="America/New York" \ + billimek/jellyfin +``` + +Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the chart. For example, + +```console +helm install --name my-release -f values.yaml stable/jellyfin +``` + +--- +**NOTE** + +If you get `Error: rendered manifests contain a resource that already exists. Unable to continue with install: existing resource conflict: ...` it may be because you uninstalled the chart with `skipuninstall` enabled, you need to manually delete the pvc or use `existingClaim`. + +--- + +Read through the [values.yaml](https://github.com/billimek/billimek-charts/blob/master/charts/jellyfin/values.yaml) file. It has several commented out suggested values. diff --git a/charts/jellyfin/templates/NOTES.txt b/charts/jellyfin/templates/NOTES.txt new file mode 100644 index 00000000..a90fc017 --- /dev/null +++ b/charts/jellyfin/templates/NOTES.txt @@ -0,0 +1,19 @@ +1. Get the application URL by running these commands: +{{- if .Values.ingress.enabled }} +{{- range .Values.ingress.hosts }} + http{{ if $.Values.ingress.tls }}s{{ end }}://{{ . }}{{ $.Values.ingress.path }} +{{- end }} +{{- else if contains "NodePort" .Values.service.type }} + export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "jellyfin.fullname" . }}) + export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}") + echo http://$NODE_IP:$NODE_PORT +{{- else if contains "LoadBalancer" .Values.service.type }} + NOTE: It may take a few minutes for the LoadBalancer IP to be available. + You can watch the status of by running 'kubectl get svc -w {{ include "jellyfin.fullname" . }}' + export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "jellyfin.fullname" . }} -o jsonpath='{.status.loadBalancer.ingress[0].ip}') + echo http://$SERVICE_IP:{{ .Values.service.port }} +{{- else if contains "ClusterIP" .Values.service.type }} + export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app.kubernetes.io/name={{ include "jellyfin.name" . }},app.kubernetes.io/instance={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}") + echo "Visit http://127.0.0.1:8080 to use your application" + kubectl port-forward $POD_NAME 8080:8096 +{{- end }} diff --git a/charts/jellyfin/templates/_helpers.tpl b/charts/jellyfin/templates/_helpers.tpl new file mode 100644 index 00000000..8038966f --- /dev/null +++ b/charts/jellyfin/templates/_helpers.tpl @@ -0,0 +1,32 @@ +{{/* vim: set filetype=mustache: */}} +{{/* +Expand the name of the chart. +*/}} +{{- define "jellyfin.name" -}} +{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}} +{{- end -}} + +{{/* +Create a default fully qualified app name. +We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). +If release name contains chart name it will be used as a full name. +*/}} +{{- define "jellyfin.fullname" -}} +{{- if .Values.fullnameOverride -}} +{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" -}} +{{- else -}} +{{- $name := default .Chart.Name .Values.nameOverride -}} +{{- if contains $name .Release.Name -}} +{{- .Release.Name | trunc 63 | trimSuffix "-" -}} +{{- else -}} +{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}} +{{- end -}} +{{- end -}} +{{- end -}} + +{{/* +Create chart name and version as used by the chart label. +*/}} +{{- define "jellyfin.chart" -}} +{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}} +{{- end -}} diff --git a/charts/jellyfin/templates/config-pvc.yaml b/charts/jellyfin/templates/config-pvc.yaml new file mode 100644 index 00000000..6fcc1842 --- /dev/null +++ b/charts/jellyfin/templates/config-pvc.yaml @@ -0,0 +1,29 @@ + +{{- if and .Values.persistence.config.enabled (not .Values.persistence.config.existingClaim) }} +kind: PersistentVolumeClaim +apiVersion: v1 +metadata: + name: {{ template "jellyfin.fullname" . }}-config + {{- if .Values.persistence.config.skipuninstall }} + annotations: + "helm.sh/resource-policy": keep + {{- end }} + labels: + app.kubernetes.io/name: {{ include "jellyfin.name" . }} + helm.sh/chart: {{ include "jellyfin.chart" . }} + app.kubernetes.io/instance: {{ .Release.Name }} + app.kubernetes.io/managed-by: {{ .Release.Service }} +spec: + accessModes: + - {{ .Values.persistence.config.accessMode | quote }} + resources: + requests: + storage: {{ .Values.persistence.config.size | quote }} +{{- if .Values.persistence.config.storageClass }} +{{- if (eq "-" .Values.persistence.config.storageClass) }} + storageClassName: "" +{{- else }} + storageClassName: "{{ .Values.persistence.config.storageClass }}" +{{- end }} +{{- end }} +{{- end -}} \ No newline at end of file diff --git a/charts/jellyfin/templates/deployment.yaml b/charts/jellyfin/templates/deployment.yaml new file mode 100644 index 00000000..3489fcb1 --- /dev/null +++ b/charts/jellyfin/templates/deployment.yaml @@ -0,0 +1,124 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: {{ include "jellyfin.fullname" . }} + {{- if .Values.deploymentAnnotations }} + annotations: + {{- range $key, $value := .Values.deploymentAnnotations }} + {{ $key }}: {{ $value | quote }} + {{- end }} + {{- end }} + labels: + app.kubernetes.io/name: {{ include "jellyfin.name" . }} + helm.sh/chart: {{ include "jellyfin.chart" . }} + app.kubernetes.io/instance: {{ .Release.Name }} + app.kubernetes.io/managed-by: {{ .Release.Service }} +spec: + replicas: 1 + revisionHistoryLimit: 3 + strategy: + type: {{ .Values.strategyType }} + selector: + matchLabels: + app.kubernetes.io/name: {{ include "jellyfin.name" . }} + app.kubernetes.io/instance: {{ .Release.Name }} + template: + metadata: + labels: + app.kubernetes.io/name: {{ include "jellyfin.name" . }} + app.kubernetes.io/instance: {{ .Release.Name }} + {{- if .Values.podAnnotations }} + annotations: + {{- range $key, $value := .Values.podAnnotations }} + {{ $key }}: {{ $value | quote }} + {{- end }} + {{- end }} + spec: + containers: + - name: {{ .Chart.Name }} + image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}" + imagePullPolicy: {{ .Values.image.pullPolicy }} + ports: + - name: http + containerPort: 8096 + protocol: TCP + livenessProbe: + tcpSocket: + port: http + initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }} + failureThreshold: {{ .Values.probes.liveness.failureThreshold }} + timeoutSeconds: {{ .Values.probes.liveness.timeoutSeconds }} + readinessProbe: + tcpSocket: + port: http + initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }} + failureThreshold: {{ .Values.probes.readiness.failureThreshold }} + timeoutSeconds: {{ .Values.probes.readiness.timeoutSeconds }} + env: + - name: TZ + value: "{{ .Values.timezone }}" + - name: PUID + value: "{{ .Values.puid }}" + - name: PGID + value: "{{ .Values.pgid }}" + - name: UMASK_SET + value: "{{ .Values.umaskSet }}" + volumeMounts: + - mountPath: /config + name: config + - mountPath: /data/tvshows + name: tvshows + {{- if .Values.persistence.tvshows.subPath }} + subPath: {{ .Values.persistence.tvshows.subPath }} + {{- end }} + - mountPath: /data/movies + name: movies + {{- if .Values.persistence.movies.subPath }} + subPath: {{ .Values.persistence.movies.subPath }} + {{- end }} + {{- range .Values.persistence.extraExistingClaimMounts }} + - name: {{ .name }} + mountPath: {{ .mountPath }} + readOnly: {{ .readOnly }} + {{- end }} + resources: +{{ toYaml .Values.resources | indent 12 }} + volumes: + - name: config + {{- if .Values.persistence.config.enabled }} + persistentVolumeClaim: + claimName: {{ if .Values.persistence.config.existingClaim }}{{ .Values.persistence.config.existingClaim }}{{- else }}{{ template "jellyfin.fullname" . }}-config{{- end }} + {{- else }} + emptyDir: {} + {{- end }} + - name: tvshows + {{- if .Values.persistence.tvshows.enabled }} + persistentVolumeClaim: + claimName: {{ if .Values.persistence.tvshows.existingClaim }}{{ .Values.persistence.tvshows.existingClaim }}{{- else }}{{ template "jellyfin.fullname" . }}-tvshows{{- end }} + {{- else }} + emptyDir: {} + {{- end }} + - name: movies + {{- if .Values.persistence.movies.enabled }} + persistentVolumeClaim: + claimName: {{ if .Values.persistence.movies.existingClaim }}{{ .Values.persistence.movies.existingClaim }}{{- else }}{{ template "jellyfin.fullname" . }}-movies{{- end }} + {{- else }} + emptyDir: {} + {{- end }} + {{- range .Values.persistence.extraExistingClaimMounts }} + - name: {{ .name }} + persistentVolumeClaim: + claimName: {{ .existingClaim }} + {{- end }} + {{- with .Values.nodeSelector }} + nodeSelector: +{{ toYaml . | indent 8 }} + {{- end }} + {{- with .Values.affinity }} + affinity: +{{ toYaml . | indent 8 }} + {{- end }} + {{- with .Values.tolerations }} + tolerations: +{{ toYaml . | indent 8 }} + {{- end }} diff --git a/charts/jellyfin/templates/ingress.yaml b/charts/jellyfin/templates/ingress.yaml new file mode 100644 index 00000000..2db4bff1 --- /dev/null +++ b/charts/jellyfin/templates/ingress.yaml @@ -0,0 +1,38 @@ +{{- if .Values.ingress.enabled -}} +{{- $fullName := include "jellyfin.fullname" . -}} +{{- $ingressPath := .Values.ingress.path -}} +apiVersion: extensions/v1beta1 +kind: Ingress +metadata: + name: {{ $fullName }} + labels: + app.kubernetes.io/name: {{ include "jellyfin.name" . }} + helm.sh/chart: {{ include "jellyfin.chart" . }} + app.kubernetes.io/instance: {{ .Release.Name }} + app.kubernetes.io/managed-by: {{ .Release.Service }} +{{- with .Values.ingress.annotations }} + annotations: +{{ toYaml . | indent 4 }} +{{- end }} +spec: +{{- if .Values.ingress.tls }} + tls: + {{- range .Values.ingress.tls }} + - hosts: + {{- range .hosts }} + - {{ . | quote }} + {{- end }} + secretName: {{ .secretName }} + {{- end }} +{{- end }} + rules: + {{- range .Values.ingress.hosts }} + - host: {{ . | quote }} + http: + paths: + - path: {{ $ingressPath }} + backend: + serviceName: {{ $fullName }} + servicePort: http + {{- end }} +{{- end }} diff --git a/charts/jellyfin/templates/movies-pvc.yaml b/charts/jellyfin/templates/movies-pvc.yaml new file mode 100644 index 00000000..343363cc --- /dev/null +++ b/charts/jellyfin/templates/movies-pvc.yaml @@ -0,0 +1,29 @@ + +{{- if and .Values.persistence.movies.enabled (not .Values.persistence.movies.existingClaim) }} +kind: PersistentVolumeClaim +apiVersion: v1 +metadata: + name: {{ template "jellyfin.fullname" . }}-movies + {{- if .Values.persistence.movies.skipuninstall }} + annotations: + "helm.sh/resource-policy": keep + {{- end }} + labels: + app.kubernetes.io/name: {{ include "jellyfin.name" . }} + helm.sh/chart: {{ include "jellyfin.chart" . }} + app.kubernetes.io/instance: {{ .Release.Name }} + app.kubernetes.io/managed-by: {{ .Release.Service }} +spec: + accessModes: + - {{ .Values.persistence.movies.accessMode | quote }} + resources: + requests: + storage: {{ .Values.persistence.movies.size | quote }} +{{- if .Values.persistence.movies.storageClass }} +{{- if (eq "-" .Values.persistence.movies.storageClass) }} + storageClassName: "" +{{- else }} + storageClassName: "{{ .Values.persistence.movies.storageClass }}" +{{- end }} +{{- end }} +{{- end -}} \ No newline at end of file diff --git a/charts/jellyfin/templates/service.yaml b/charts/jellyfin/templates/service.yaml new file mode 100644 index 00000000..347751c4 --- /dev/null +++ b/charts/jellyfin/templates/service.yaml @@ -0,0 +1,52 @@ +apiVersion: v1 +kind: Service +metadata: + name: {{ template "jellyfin.fullname" . }} + labels: + app.kubernetes.io/name: {{ include "jellyfin.name" . }} + helm.sh/chart: {{ include "jellyfin.chart" . }} + app.kubernetes.io/instance: {{ .Release.Name }} + app.kubernetes.io/managed-by: {{ .Release.Service }} +{{- if .Values.service.labels }} +{{ toYaml .Values.service.labels | indent 4 }} +{{- end }} +{{- with .Values.service.annotations }} + annotations: +{{ toYaml . | indent 4 }} +{{- end }} +spec: +{{- if (or (eq .Values.service.type "ClusterIP") (empty .Values.service.type)) }} + type: ClusterIP + {{- if .Values.service.clusterIP }} + clusterIP: {{ .Values.service.clusterIP }} + {{end}} +{{- else if eq .Values.service.type "LoadBalancer" }} + type: {{ .Values.service.type }} + {{- if .Values.service.loadBalancerIP }} + loadBalancerIP: {{ .Values.service.loadBalancerIP }} + {{- end }} + {{- if .Values.service.loadBalancerSourceRanges }} + loadBalancerSourceRanges: +{{ toYaml .Values.service.loadBalancerSourceRanges | indent 4 }} + {{- end -}} +{{- else }} + type: {{ .Values.service.type }} +{{- end }} +{{- if .Values.service.externalIPs }} + externalIPs: +{{ toYaml .Values.service.externalIPs | indent 4 }} +{{- end }} + {{- if .Values.service.externalTrafficPolicy }} + externalTrafficPolicy: {{ .Values.service.externalTrafficPolicy }} + {{- end }} + ports: + - name: http + port: {{ .Values.service.port }} + protocol: TCP + targetPort: http +{{ if (and (eq .Values.service.type "NodePort") (not (empty .Values.service.nodePort))) }} + nodePort: {{.Values.service.nodePort}} +{{ end }} + selector: + app.kubernetes.io/name: {{ include "jellyfin.name" . }} + app.kubernetes.io/instance: {{ .Release.Name }} \ No newline at end of file diff --git a/charts/jellyfin/templates/tvshows-pvc.yaml b/charts/jellyfin/templates/tvshows-pvc.yaml new file mode 100644 index 00000000..c09c86fa --- /dev/null +++ b/charts/jellyfin/templates/tvshows-pvc.yaml @@ -0,0 +1,29 @@ + +{{- if and .Values.persistence.tvshows.enabled (not .Values.persistence.tvshows.existingClaim) }} +kind: PersistentVolumeClaim +apiVersion: v1 +metadata: + name: {{ template "jellyfin.fullname" . }}-tvshows + {{- if .Values.persistence.tvshows.skipuninstall }} + annotations: + "helm.sh/resource-policy": keep + {{- end }} + labels: + app.kubernetes.io/name: {{ include "jellyfin.name" . }} + helm.sh/chart: {{ include "jellyfin.chart" . }} + app.kubernetes.io/instance: {{ .Release.Name }} + app.kubernetes.io/managed-by: {{ .Release.Service }} +spec: + accessModes: + - {{ .Values.persistence.tvshows.accessMode | quote }} + resources: + requests: + storage: {{ .Values.persistence.tvshows.size | quote }} +{{- if .Values.persistence.tvshows.storageClass }} +{{- if (eq "-" .Values.persistence.tvshows.storageClass) }} + storageClassName: "" +{{- else }} + storageClassName: "{{ .Values.persistence.tvshows.storageClass }}" +{{- end }} +{{- end }} +{{- end -}} \ No newline at end of file diff --git a/charts/jellyfin/values.yaml b/charts/jellyfin/values.yaml new file mode 100644 index 00000000..155c75b1 --- /dev/null +++ b/charts/jellyfin/values.yaml @@ -0,0 +1,151 @@ +# Default values for jellyfin. +# This is a YAML-formatted file. +# Declare variables to be passed into your templates. + +image: + repository: linuxserver/jellyfin + tag: v10.5.3-ls45 + pullPolicy: IfNotPresent + +# upgrade strategy type (e.g. Recreate or RollingUpdate) +strategyType: Recreate + +# Probes configuration +probes: + liveness: + initialDelaySeconds: 60 + failureThreshold: 5 + timeoutSeconds: 10 + readiness: + initialDelaySeconds: 60 + failureThreshold: 5 + timeoutSeconds: 10 + +nameOverride: "" +fullnameOverride: "" + +timezone: UTC +puid: 1001 +pgid: 1001 +umaskSet: "022" + +service: + type: ClusterIP + port: 8096 + ## Specify the nodePort value for the LoadBalancer and NodePort service types. + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport + ## + # nodePort: + ## Provide any additional annotations which may be required. This can be used to + ## set the LoadBalancer service type to internal only. + ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#internal-load-balancer + ## + annotations: {} + labels: {} + ## Use loadBalancerIP to request a specific static IP, + ## otherwise leave blank + ## + loadBalancerIP: + # loadBalancerSourceRanges: [] + ## Set the externalTrafficPolicy in the Service to either Cluster or Local + # externalTrafficPolicy: Cluster + +ingress: + enabled: false + annotations: {} + # kubernetes.io/ingress.class: nginx + # kubernetes.io/tls-acme: "true" + path: / + hosts: + - chart-example.local + tls: [] + # - secretName: chart-example-tls + # hosts: + # - chart-example.local + +persistence: + config: + enabled: true + ## jellyfin configuration data Persistent Volume Storage Class + ## If defined, storageClassName: + ## If set to "-", storageClassName: "", which disables dynamic provisioning + ## If undefined (the default) or set to null, no storageClassName spec is + ## set, choosing the default provisioner. (gp2 on AWS, standard on + ## GKE, AWS & OpenStack) + ## + # storageClass: "-" + ## + ## If you want to reuse an existing claim, you can pass the name of the PVC using + ## the existingClaim variable + # existingClaim: your-claim + accessMode: ReadWriteOnce + size: 1Gi + ## Do not delete the pvc upon helm uninstall + skipuninstall: false + tvshows: + enabled: true + ## jellyfin tv volume configuration + ## If defined, storageClassName: + ## If set to "-", storageClassName: "", which disables dynamic provisioning + ## If undefined (the default) or set to null, no storageClassName spec is + ## set, choosing the default provisioner. (gp2 on AWS, standard on + ## GKE, AWS & OpenStack) + ## + # storageClass: "-" + ## + ## If you want to reuse an existing claim, you can pass the name of the PVC using + ## the existingClaim variable + # existingClaim: your-claim + # subPath: some-subpath + accessMode: ReadWriteOnce + size: 10Gi + ## Do not delete the pvc upon helm uninstall + skipuninstall: false + movies: + enabled: true + ## jellyfin movie volume configuration + ## If defined, storageClassName: + ## If set to "-", storageClassName: "", which disables dynamic provisioning + ## If undefined (the default) or set to null, no storageClassName spec is + ## set, choosing the default provisioner. (gp2 on AWS, standard on + ## GKE, AWS & OpenStack) + ## + # storageClass: "-" + ## + ## If you want to reuse an existing claim, you can pass the name of the PVC using + ## the existingClaim variable + # existingClaim: your-claim + # subPath: some-subpath + accessMode: ReadWriteOnce + size: 10Gi + ## Do not delete the pvc upon helm uninstall + skipuninstall: false + extraExistingClaimMounts: [] + # - name: external-mount + # mountPath: /srv/external-mount + ## A manually managed Persistent Volume and Claim + ## If defined, PVC must be created manually before volume will be bound + # existingClaim: + # readOnly: true + +resources: {} + # We usually recommend not to specify default resources and to leave this as a conscious + # choice for the user. This also increases chances charts run on environments with little + # resources, such as Minikube. If you do want to specify resources, uncomment the following + # lines, adjust them as necessary, and remove the curly braces after 'resources:'. + # limits: + # cpu: 100m + # memory: 128Mi + # requests: + # cpu: 100m + # memory: 128Mi + +nodeSelector: {} + +tolerations: [] + +affinity: {} + +podAnnotations: {} + +deploymentAnnotations: {}