1# Default values for maddy.2# This is a YAML-formatted file.3# Declare variables to be passed into your templates.45replicaCount: 1 # Multiple replicas are not supported, please don't change this.67image:8 repository: foxcpp/maddy9 pullPolicy: IfNotPresent10 # Overrides the image tag whose default is the chart appVersion.11 tag: ""1213imagePullSecrets: []14nameOverride: ""15fullnameOverride: ""1617serviceAccount:18 # Specifies whether a service account should be created19 create: true20 # Annotations to add to the service account21 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 template24 name: ""2526podAnnotations: {}2728podSecurityContext:29 {}30 # fsGroup: 20003132securityContext:33 {}34 # capabilities:35 # drop:36 # - ALL37 # readOnlyRootFilesystem: true38 # runAsNonRoot: true39 # runAsUser: 10004041# Set externalPIs to your public IP(s) of the node running maddy. In case of multiple nodes, you need to set tolerations42# and taints in order to run maddy on the exact node.43service:44 type: NodePort45 # externalIPs:4647resources:48 {}49 # We usually recommend not to specify default resources and to leave this as a conscious50 # choice for the user. This also increases chances charts run on environments with little51 # resources, such as Minikube. If you do want to specify resources, uncomment the following52 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.53 # limits:54 # cpu: 100m55 # memory: 128Mi56 # requests:57 # cpu: 100m58 # memory: 128Mi5960persistence:61 enabled: false62 # existingClaim: ""63 accessMode: ReadWriteOnce64 size: 128Mi65 # storageClass: ""66 path: /data67 annotations: {}68 # subPath: "" # only mount a subpath of the Volume into the pod6970nodeSelector: {}7172tolerations: []7374affinity: {}