cv-helm/charts/cv/values.yaml
Julien Cabillot a0d4f0f5c3 fix: tz
2021-12-30 16:22:15 -05:00

64 lines
1.1 KiB
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/cv
tag: ""
pullPolicy: Always
env:
TZ: America/New_York
service:
main:
ports:
http:
port: 8080
ingress:
main:
enabled: false
# Example
# hosts:
# - host: "yy.xx.zz"
# paths:
# - path: "/"
# tls:
# - secretName: "cv-xxx"
# hosts:
# - "yy.xx.zz"
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