mirror of
https://github.com/Thumbscrew/k8s-charts.git
synced 2025-01-18 17:45:43 +00:00
fix: add missing PublishedServerUrl config option (#33)
This commit is contained in:
parent
b76c06fed4
commit
f11c08b4ca
@ -25,7 +25,7 @@ type: application
|
||||
# This is the chart version. This version number should be incremented each time you make changes
|
||||
# to the chart and its templates, including the app version.
|
||||
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
||||
version: 0.2.0
|
||||
version: 0.2.1
|
||||
|
||||
# This is the version number of the application being deployed. This version number should be
|
||||
# incremented each time you make changes to the application. Versions are not expected to
|
||||
|
@ -48,6 +48,11 @@ spec:
|
||||
port: http
|
||||
periodSeconds: 10
|
||||
failureThreshold: 6
|
||||
{{- if .Values.jellyfin.publishedServerUrl -}}
|
||||
env:
|
||||
- name: JELLYFIN_PublishedServerUrl
|
||||
value: {{ .Values.jellyfin.publishedServerUrl }}
|
||||
{{- end }}
|
||||
resources:
|
||||
{{- toYaml .Values.resources | nindent 12 }}
|
||||
volumeMounts:
|
||||
|
@ -34,6 +34,10 @@ securityContext:
|
||||
runAsUser: 1000
|
||||
runAsGroup: 1000
|
||||
|
||||
jellyfin:
|
||||
# -- See PublishedServerUrl at https://jellyfin.org/docs/general/administration/configuration#main-configuration-options
|
||||
publishedServerUrl: ""
|
||||
|
||||
persistence:
|
||||
# -- Persistence config for the /config volume
|
||||
config:
|
||||
|
Loading…
Reference in New Issue
Block a user