mirror of
https://github.com/Thumbscrew/k8s-charts.git
synced 2025-01-18 17:45:43 +00:00
Compare commits
3 Commits
a0dd2a5eab
...
59da75e15d
Author | SHA1 | Date | |
---|---|---|---|
59da75e15d | |||
f11c08b4ca | |||
b76c06fed4 |
@ -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.1.0
|
||||
version: 0.2.2
|
||||
|
||||
# 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
|
||||
|
@ -5,7 +5,9 @@ metadata:
|
||||
labels:
|
||||
{{- include "jellyfin.labels" . | nindent 4 }}
|
||||
spec:
|
||||
replicas: {{ .Values.replicaCount }}
|
||||
replicas: 1
|
||||
strategy:
|
||||
type: Recreate
|
||||
selector:
|
||||
matchLabels:
|
||||
{{- include "jellyfin.selectorLabels" . | nindent 6 }}
|
||||
@ -45,7 +47,12 @@ spec:
|
||||
path: /
|
||||
port: http
|
||||
periodSeconds: 10
|
||||
failureThreshold: 30
|
||||
failureThreshold: 6
|
||||
{{- if .Values.jellyfin.publishedServerUrl }}
|
||||
env:
|
||||
- name: JELLYFIN_PublishedServerUrl
|
||||
value: {{ .Values.jellyfin.publishedServerUrl }}
|
||||
{{- end }}
|
||||
resources:
|
||||
{{- toYaml .Values.resources | nindent 12 }}
|
||||
volumeMounts:
|
||||
|
@ -2,8 +2,6 @@
|
||||
# This is a YAML-formatted file.
|
||||
# Declare variables to be passed into your templates.
|
||||
|
||||
replicaCount: 1
|
||||
|
||||
image:
|
||||
repository: jellyfin/jellyfin
|
||||
pullPolicy: IfNotPresent
|
||||
@ -34,7 +32,11 @@ securityContext:
|
||||
readOnlyRootFilesystem: false
|
||||
runAsNonRoot: true
|
||||
runAsUser: 1000
|
||||
fsGroup: 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
|
||||
|
Loading…
Reference in New Issue
Block a user