37 lines
674 B
YAML
37 lines
674 B
YAML
#
|
|
# IMPORTANT NOTE
|
|
#
|
|
# This chart inherits from our common library chart. You can check the default values/options here:
|
|
# https://scm.docker.cabillot.eu/perso/helm-library-common
|
|
#
|
|
|
|
image:
|
|
repository: docker.io/jcabillot/offlineimap
|
|
tag: "latest"
|
|
pullPolicy: Always
|
|
|
|
env:
|
|
TZ: America/New_York
|
|
IMAP_USER: TODO
|
|
IMAP_PASS: TODO
|
|
IMAP_SRV: TODO
|
|
|
|
ingress:
|
|
main:
|
|
enabled: false
|
|
|
|
automountServiceAccountToken: false
|
|
|
|
cronjob:
|
|
schedule: "0 */4 * * *"
|
|
concurrencyPolicy: "Forbid"
|
|
successfulJobsHistoryLimit: 3
|
|
failedJobsHistoryLimit: 5
|
|
|
|
persistence:
|
|
dump:
|
|
enabled: true
|
|
type: hostPath
|
|
hostPath: /data/volume-offlineimap
|
|
mountPath: /dump
|