72 lines
1.2 KiB
YAML
Raw Permalink Normal View History

2023-02-26 18:34:35 -05:00
#
# 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/tomsquest/docker-radicale
tag: ""
pullPolicy: Always
env:
TZ: America/New_York
service:
main:
ports:
http:
port: 5232
ingress:
main:
enabled: false
# Example
# hosts:
# - host: "yy.xx.zz"
# paths:
# - path: "/"
# tls:
# - secretName: "ip-tls"
# hosts:
# - "yy.xx.zz"
persistence:
config:
enabled: true
mountPath: /config
data:
enabled: true
mountPath: /data
probes:
liveness:
enabled: true
custom: true
spec:
httpGet:
path: /
port: http
scheme: HTTP
timeoutSeconds: 1
periodSeconds: 10
successThreshold: 1
failureThreshold: 3
readiness:
enabled: true
custom: true
spec:
httpGet:
path: /
port: http
scheme: HTTP
timeoutSeconds: 1
periodSeconds: 10
successThreshold: 1
failureThreshold: 3
startup:
enabled: false
automountServiceAccountToken: false