cv-helm/charts/cv/values.yaml

64 lines
1.1 KiB
YAML
Raw Normal View History

2021-12-29 16:21:53 -05:00
#
# IMPORTANT NOTE
#
# This chart inherits from our common library chart. You can check the default values/options here:
2021-12-30 15:35:26 -05:00
# https://scm.docker.cabillot.eu/perso/helm-library-common
2021-12-29 16:21:53 -05:00
#
image:
repository: docker.io/jcabillot/cv
tag: ""
pullPolicy: Always
env:
2021-12-30 16:22:15 -05:00
TZ: America/New_York
2021-12-29 16:21:53 -05:00
service:
main:
ports:
http:
2021-12-29 17:08:12 -05:00
port: 8080
2021-12-29 16:21:53 -05:00
ingress:
main:
enabled: false
2021-12-30 15:35:26 -05:00
# Example
2021-12-29 17:08:12 -05:00
# hosts:
2021-12-30 15:35:26 -05:00
# - host: "yy.xx.zz"
2021-12-29 17:08:12 -05:00
# paths:
# - path: "/"
# tls:
2021-12-30 16:12:07 -05:00
# - secretName: "cv-xxx"
# hosts:
2021-12-30 15:35:26 -05:00
# - "yy.xx.zz"
2021-12-29 16:21:53 -05:00
probes:
liveness:
2021-12-30 15:50:07 -05:00
enabled: true
2021-12-30 16:05:21 -05:00
custom: true
spec:
httpGet:
path: /
port: http
scheme: HTTP
timeoutSeconds: 1
periodSeconds: 10
successThreshold: 1
failureThreshold: 3
2021-12-29 17:08:12 -05:00
readiness:
2021-12-30 15:57:45 -05:00
enabled: true
2021-12-30 16:05:21 -05:00
custom: true
spec:
httpGet:
path: /
port: http
scheme: HTTP
timeoutSeconds: 1
periodSeconds: 10
successThreshold: 1
failureThreshold: 3
2021-12-29 17:08:12 -05:00
startup:
enabled: false
automountServiceAccountToken: false