ip-helm/charts/ip/values.yaml

64 lines
1.1 KiB
YAML
Raw Permalink Normal View History

2021-12-30 16:29:26 -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
#
2021-06-24 17:14:44 -04:00
image:
2021-08-06 22:08:36 -04:00
repository: docker.io/jcabillot/ip
tag: ""
2021-12-30 16:29:26 -05:00
pullPolicy: Always
2021-06-24 17:14:44 -04:00
2021-12-30 16:29:26 -05:00
env:
TZ: America/New_York
2021-06-24 17:14:44 -04:00
service:
2021-12-30 16:29:26 -05:00
main:
ports:
http:
port: 8080
2021-06-24 17:14:44 -04:00
ingress:
2021-12-30 16:29:26 -05:00
main:
enabled: false
# Example
# hosts:
# - host: "yy.xx.zz"
# paths:
2021-12-30 17:49:40 -05:00
# - path: "/"
2021-12-30 16:29:26 -05:00
# tls:
# - secretName: "ip-tls"
# 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
2021-06-24 17:14:44 -04:00
2021-12-30 16:29:26 -05:00
automountServiceAccountToken: false