maddy

Fork https://github.com/foxcpp/maddy

git clone git://git.lin.moe/go/maddy.git

 1# Default values for maddy.
 2# This is a YAML-formatted file.
 3# Declare variables to be passed into your templates.
 4
 5replicaCount: 1 # Multiple replicas are not supported, please don't change this.
 6
 7image:
 8  repository: foxcpp/maddy
 9  pullPolicy: IfNotPresent
10  # Overrides the image tag whose default is the chart appVersion.
11  tag: ""
12
13imagePullSecrets: []
14nameOverride: ""
15fullnameOverride: ""
16
17serviceAccount:
18  # Specifies whether a service account should be created
19  create: true
20  # Annotations to add to the service account
21  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
24  name: ""
25
26podAnnotations: {}
27
28podSecurityContext:
29  {}
30  # fsGroup: 2000
31
32securityContext:
33  {}
34  # capabilities:
35  #   drop:
36  #   - ALL
37  # readOnlyRootFilesystem: true
38  # runAsNonRoot: true
39  # runAsUser: 1000
40
41# Set externalPIs to your public IP(s) of the node running maddy. In case of multiple nodes, you need to set tolerations
42# and taints in order to run maddy on the exact node.
43service:
44  type: NodePort
45  # externalIPs:
46
47resources:
48  {}
49  # We usually recommend not to specify default resources and to leave this as a conscious
50  # choice for the user. This also increases chances charts run on environments with little
51  # resources, such as Minikube. If you do want to specify resources, uncomment the following
52  # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
53  # limits:
54  #   cpu: 100m
55  #   memory: 128Mi
56  # requests:
57  #   cpu: 100m
58  #   memory: 128Mi
59
60persistence:
61  enabled: false
62  # existingClaim: ""
63  accessMode: ReadWriteOnce
64  size: 128Mi
65  # storageClass: ""
66  path: /data
67  annotations: {}
68  # subPath: "" # only mount a subpath of the Volume into the pod
69
70nodeSelector: {}
71
72tolerations: []
73
74affinity: {}