Skip to content

Commit 72c4d69

Browse files
committed
chore: update documentation
1 parent 50c1239 commit 72c4d69

2 files changed

Lines changed: 40 additions & 13 deletions

File tree

templates/deployment.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ spec:
6060
mountPath: {{ .mountPath | quote }}
6161
{{- end }}
6262
{{- end }}
63-
{{- with .Values.volumeMounts }}
63+
{{- with .Values.additionalVolumeMounts }}
6464
{{- toYaml . | nindent 12 }}
6565
{{- end }}
6666
volumes:
@@ -82,7 +82,7 @@ spec:
8282
claimName: {{ include "emby.fullname" $ }}-{{ .name }}-pvc
8383
{{- end }}
8484
{{- end }}
85-
{{- with .Values.volumes }}
85+
{{- with .Values.additionalVolumes }}
8686
{{- toYaml . | nindent 8 }}
8787
{{- end }}
8888
{{- with .Values.nodeSelector }}

values.yaml

Lines changed: 38 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,46 @@
11
image:
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)
710
imagePullSecrets: []
11+
# -- @ignore
812
nameOverride: ""
13+
# -- @ignore
914
fullnameOverride: ""
1015

16+
# -- the UID to run emby as
1117
uid: 1000
18+
# -- the GID to run emby as
1219
gid: 100
20+
# -- a comma-separated list of additional GIDs to run emby as
1321
gidlist: 100
1422

1523
serviceAccount:
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
2634
podAnnotations: {}
35+
36+
# -- @ignore
2737
podLabels: {}
2838

39+
# -- podSecurityContext configuration
2940
podSecurityContext: {}
3041
# fsGroup: 2000
3142

43+
# -- securityContext configuration
3244
securityContext: {}
3345
# capabilities:
3446
# drop:
@@ -38,9 +50,12 @@ securityContext: {}
3850
# runAsUser: 1000
3951

4052
service:
53+
# -- service type
4154
type: ClusterIP
55+
# -- service port
4256
port: 8096
4357

58+
# -- Configure ingress.
4459
ingress:
4560
enabled: false
4661
className: ""
@@ -57,6 +72,7 @@ ingress:
5772
# hosts:
5873
# - chart-example.local
5974

75+
# -- @ignore
6076
resources: {}
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
7289
livenessProbe:
7390
httpGet:
7491
path: /
7592
port: http
93+
94+
# -- readiness probe configuration
7695
readinessProbe:
7796
httpGet:
7897
path: /
7998
port: http
8099

81100
persistence:
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

88112
nfsMounts:
@@ -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
118143
nodeSelector: {}
119144

145+
# -- @ignore
120146
tolerations: []
121147

148+
# -- @ignore
122149
affinity: {}

0 commit comments

Comments
 (0)