11image :
2+ # -- repository with Emby image
23 repository : emby/embyserver
3- pullPolicy : IfNotPresent
4- # Overrides the image tag whose default is the chart appVersion.
4+ # -- pull policy
5+ pullPolicy : Always
6+ # -- current version of the image. Default: Charts appVersion.
57 tag : " "
68
9+ # -- imagePullSecrets (not needed, if default image is used)
710imagePullSecrets : []
11+ # -- @ignore
812nameOverride : " "
13+ # -- @ignore
914fullnameOverride : " "
1015
16+ # -- the UID to run emby as
1117uid : 1000
18+ # -- the GID to run emby as
1219gid : 100
20+ # -- a comma-separated list of additional GIDs to run emby as
1321gidlist : 100
1422
1523serviceAccount :
16- # Specifies whether a service account should be created
24+ # -- enable serviceAccount
1725 create : true
18- # Automatically mount a ServiceAccount's API credentials?
26+ # -- automatically mount a ServiceAccount's API credentials?
1927 automount : true
20- # Annotations to add to the service account
28+ # -- add annotations to serviceAccount
2129 annotations : {}
22- # The name of the service account to use.
23- # If not set and create is true, a name is generated using the fullname template
30+ # -- name of the serviceAccount (will be generated if empty)
2431 name : " "
2532
33+ # -- @ignore
2634podAnnotations : {}
35+
36+ # -- @ignore
2737podLabels : {}
2838
39+ # -- podSecurityContext configuration
2940podSecurityContext : {}
3041 # fsGroup: 2000
3142
43+ # -- securityContext configuration
3244securityContext : {}
3345 # capabilities:
3446 # drop:
@@ -38,9 +50,12 @@ securityContext: {}
3850 # runAsUser: 1000
3951
4052service :
53+ # -- service type
4154 type : ClusterIP
55+ # -- service port
4256 port : 8096
4357
58+ # -- Configure ingress.
4459ingress :
4560 enabled : false
4661 className : " "
@@ -57,6 +72,7 @@ ingress:
5772 # hosts:
5873 # - chart-example.local
5974
75+ # -- @ignore
6076resources : {}
6177 # We usually recommend not to specify default resources and to leave this as a conscious
6278 # choice for the user. This also increases chances charts run on environments with little
@@ -69,20 +85,28 @@ resources: {}
6985 # cpu: 100m
7086 # memory: 128Mi
7187
88+ # -- liveness probe configuration
7289livenessProbe :
7390 httpGet :
7491 path : /
7592 port : http
93+
94+ # -- readiness probe configuration
7695readinessProbe :
7796 httpGet :
7897 path : /
7998 port : http
8099
81100persistence :
101+ # -- enable persistence?
82102 enabled : false
103+ # -- existing claim
83104 existingClaim :
105+ # -- desired storageClass
84106 storageClass :
107+ # -- storage access mode
85108 accessMode : ReadWriteOnce
109+ # -- storage size
86110 size : 20Gi
87111
88112nfsMounts :
@@ -102,21 +126,24 @@ nfsMounts:
102126 # -- mark mount as readonly
103127 readOnly : false
104128
105- # Additional volumes on the output Deployment definition.
106- volumes : []
129+ # -- additional volume(s) to mount into the container
130+ additionalVolumes : []
107131# - name: foo
108132# secret:
109133# secretName: mysecret
110134# optional: false
111135
112- # Additional volumeMounts on the output Deployment definition.
113- volumeMounts : []
136+ # -- mountpoint(s) of the additional volumes inside the container
137+ additionalVolumeMounts : []
114138# - name: foo
115139# mountPath: "/etc/foo"
116140# readOnly: true
117141
142+ # -- @ignore
118143nodeSelector : {}
119144
145+ # -- @ignore
120146tolerations : []
121147
148+ # -- @ignore
122149affinity : {}
0 commit comments