cv-helm/charts/cv/values.yaml

54 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:
# https://github.com/k8s-at-home/library-charts/tree/main/charts/stable/common/values.yaml
#
image:
# -- image repository
repository: docker.io/jcabillot/cv
# -- image tag
tag: ""
# -- image pull policy
pullPolicy: Always
# -- environment variables.
# @default -- See below
env:
# -- Set the container timezone
2021-12-30 15:14:34 -05:00
TZ: America/New_York
2021-12-29 16:21:53 -05:00
# -- Configures service settings for the chart.
# @default -- See values.yaml
service:
main:
ports:
http:
2021-12-29 17:08:12 -05:00
port: 8080
2021-12-29 16:21:53 -05:00
ingress:
# -- Enable and configure ingress settings for the chart under this key.
# @default -- See values.yaml
main:
enabled: false
2021-12-29 17:08:12 -05:00
# hosts:
# - host: "cv.opti.cabillot.eu"
# paths:
# - path: "/"
# tls:
# - hosts:
# - "cv.opti.cabillot.eu"
2021-12-29 16:21:53 -05:00
# -- Configures the probes for the main Pod.
# @default -- See values.yaml
probes:
liveness:
enabled: false
2021-12-29 17:08:12 -05:00
readiness:
enabled: false
startup:
enabled: false
automountServiceAccountToken: false