-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalues.yaml
95 lines (82 loc) · 2.54 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# Default values for erooster.
# -- Amount of replicas. WARNING: Currently erooster doesnt support horizontal scaling properly.
replicaCount: 1
image:
# -- Image location to download erooster from
repository: mtrnord/erooster
pullPolicy: IfNotPresent
# -- Overrides the image tag whose default is the chart appVersion.
tag: "main"
# -- Optionally specify an array of imagePullSecrets.
# Secrets must be manually created in the namespace.
# ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
pullSecrets: []
# -- Override part of the installed name, will still keep release name.
nameOverride: ""
# -- Override the full name of the installed chart.
fullnameOverride: ""
# -- Additional annotations for the pods
podAnnotations: {}
# -- Security context for the pods
podSecurityContext:
{}
# fsGroup: 2000
# -- Security context for the deployment
securityContext:
{}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000
service:
# -- Type of the HTTP Service
type: ClusterIP
# -- Port for the http server
httpPort: 80
mailService:
# -- Type of the Mail Service
type: Loadbalancer
# -- Port for the smtp server (unencrypted)
smtpPort: 25
# -- Port for the smtp server (encrypted)
smtpEncryptedPort: 465
# -- Port for the imap server (unencrypted)
imapPort: 143
# -- Port for the imap server (encrypted)
imapEncryptedPort: 993
ingress:
# -- Enable the ingress
enabled: false
# -- Set the name of the IngressClass cluster resource (optional)
className: ""
# -- Annotations to apply to the created ingress resource.
annotations: {}
# -- Hosts to listen on.
hosts:
- host: chart-example.local
paths:
- path: /
pathType: ImplementationSpecific
# -- TLS Secrets for this domain. This is required to match the tls secret for the server itself.
tls: []
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
# -- Setup resource limits and requests
resources:
{}
# We usually recommend not to specify default resources and to leave this as a conscious
# choice for the user. This also increases chances charts run on environments with little
# resources, such as Minikube. If you do want to specify resources, uncomment the following
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
nodeSelector: {}
tolerations: []
affinity: {}