Skip to content

Commit

Permalink
fix: volume on jellyfin helm chart
Browse files Browse the repository at this point in the history
  • Loading branch information
M0NsTeRRR committed Apr 3, 2024
1 parent c60e84b commit dacffab
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/jellyfin/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: jellyfin
description: jellyfin helm chart for Kubernetes
type: application
version: 0.1.0
version: 0.1.1
# image: jellyfin/jellyfin
appVersion: "10.8.13-1"
sources:
Expand Down
2 changes: 1 addition & 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.8.13-1](https://img.shields.io/badge/AppVersion-10.8.13--1-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.8.13-1](https://img.shields.io/badge/AppVersion-10.8.13--1-informational?style=flat-square)

jellyfin helm chart for Kubernetes

Expand Down
6 changes: 6 additions & 0 deletions charts/jellyfin/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,19 @@ spec:
mountPath: /config
- name: cache
mountPath: /cache
{{- with .Values.volumeMounts }}
{{- toYaml . | nindent 12 }}
{{- end }}
volumes:
- name: config
persistentVolumeClaim:
claimName: {{ include "jellyfin.configPersistenceName" . }}
- name: cache
persistentVolumeClaim:
claimName: {{ include "jellyfin.cachePersistenceName" . }}
{{- with .Values.volumes }}
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
Expand Down

0 comments on commit dacffab

Please sign in to comment.