Skip to content

Commit

Permalink
Merge pull request #74 from JacekZubielik/lms
Browse files Browse the repository at this point in the history
build(lms): 0.0.14
  • Loading branch information
JacekZubielik authored Aug 13, 2024
2 parents 99baab7 + 9db5fac commit 6e9e2e8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 11 deletions.
2 changes: 1 addition & 1 deletion charts/lms/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apiVersion: v2
appVersion: 9.0.0
description: Lyrion Media Server
name: lms
version: 0.0.13
version: 0.0.14
keywords:
- lms
- logitechmediaserver
Expand Down
10 changes: 2 additions & 8 deletions charts/lms/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -152,10 +152,7 @@ spec:
path: {{.Values.persistence.lmsconfig.hostPath }}
{{- else }}
persistentVolumeClaim:
claimName: {{ if .Values.persistence.lmsconfig.existingClaim }}{{ .Values.persistence.lmsconfig.existingClaim }}
{{- else }}
{{ template "app.fullname" . }}
{{- end }}
claimName: {{ if .Values.persistence.lmsconfig.existingClaim }}{{ .Values.persistence.lmsconfig.existingClaim }}{{- else }}{{ template "app.fullname" . }}{{- end }}
{{- end }}
{{- else }}
emptyDir: {}
Expand All @@ -167,10 +164,7 @@ spec:
path: {{.Values.persistence.musicstorage.hostPath }}
{{- else }}
persistentVolumeClaim:
claimName: {{ if .Values.persistence.musicstorage.existingClaim }}{{ .Values.persistence.musicstorage.existingClaim }}
{{- else }}
{{ template "app.fullname" . }}
{{- end }}
claimName: {{ if .Values.persistence.musicstorage.existingClaim }}{{ .Values.persistence.musicstorage.existingClaim }}{{- else }}{{ template "app.fullname" . }}{{- end }}
{{- end }}
{{- else }}
emptyDir: {}
Expand Down
4 changes: 2 additions & 2 deletions charts/lms/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ persistence:
##
## If you want to reuse an existing claim, you can pass the name of the PVC using
## the existingClaim variable
existingClaim: ""
# existingClaim:
##
## If you want to use a volume on the host machine instead of a PVC:
# hostPath: /path/to/the/config/folder
Expand All @@ -171,7 +171,7 @@ persistence:
musicstorage:
enabled: false
# storageClass: "-"
existingClaim: pvc-musicstorage
# existingClaim: pvc-musicstorage
# hostPath: /path/to/the/music/folder

# Mount devices or folders from the host machine. Can be used for USB device mounting.
Expand Down

0 comments on commit 6e9e2e8

Please sign in to comment.