-
Notifications
You must be signed in to change notification settings - Fork 2
/
values.yaml
79 lines (62 loc) · 1.88 KB
/
values.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# Default values for magic-mirror.
image:
repository: quay.io/stolostron/magic-mirror
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: ""
imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""
podAnnotations: {}
podSecurityContext:
fsGroup: 1000
runAsNonRoot: true
runAsGroup: 1000
runAsUser: 1000
securityContext: {}
service:
type: ClusterIP
port: 80
ingress:
enabled: true
className: ""
annotations: {}
# route.openshift.io/termination: edge
tls: []
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
resources:
limits:
cpu: 100m
memory: 128Mi
requests:
cpu: 100m
memory: 128Mi
nodeSelector: {}
tolerations: []
affinity: {}
persistentVolume:
# If true, create/use a Persistent Volume Claim for the SQLite database. If false, use emptyDir.
enabled: true
# magic-mirror Persistent Volume access modes that must match those of the existing PV or dynamic provisioner.
# See: http://kubernetes.io/docs/user-guide/persistent-volumes/
accessModes:
- ReadWriteOnce
# The optional magic-mirror Persistent Volume Claim annotations.
annotations: {}
# The optional magic-mirror Persistent Volume existing claim name.
# This requires persistentVolume.enabled to be set to true.
# If defined, the PVC must be created manually before the volume will be bound.
existingClaim: ""
# The magic-mirror Persistent Volume size for the database.
size: 20Mi
# An optional Persistent Volume Claim Selector.
# This is useful if a Persistent Volume has been provisioned in advance.
# Ref: https://kubernetes.io/docs/concepts/storage/persistent-volumes/#selector
selector: {}
emptyDir:
# The emptyDir volume size limit. This is used for /tmp and if persistentVolume.enabled is false, it's also used
# for the database, making it ephemeral.
#
sizeLimit: ""