2022-09-03 22:42:56 +00:00
|
|
|
# Settings for the chart.
|
|
|
|
|
|
|
|
# nameOverride Replaces the release name of the chart in Chart.yaml file when
|
|
|
|
# this is used to construct Kubernetes object names
|
|
|
|
nameOverride: ""
|
|
|
|
# fullnameOverride completely replaces the generated release name
|
|
|
|
fullnameOverride: ""
|
|
|
|
|
|
|
|
# Secrets to pull container images from private registries
|
|
|
|
imagePullSecrets: []
|
|
|
|
|
|
|
|
image:
|
|
|
|
# controller image to be used. Leave empty to use
|
|
|
|
repository: ""
|
|
|
|
# image tag, leave empty to use chart's AppVersion
|
2022-09-14 19:52:55 +00:00
|
|
|
tag: ""
|
2022-09-03 22:42:56 +00:00
|
|
|
|
|
|
|
podAnnotations: {}
|
|
|
|
nodeSelector: {}
|
|
|
|
tolerations: []
|
|
|
|
affinity: {}
|
|
|
|
|
|
|
|
tls:
|
|
|
|
# source options:
|
|
|
|
# - "cert-manager-self-signed": Scaffold cert-manager integration, and create
|
|
|
|
# a self-signed certificate with a cert-manager self-signed Issuer. Depends
|
|
|
|
# on cert-manager. (default)
|
|
|
|
# - "cert-manager": Scafffold cert-manager integration. User configures their
|
|
|
|
# own Issuer. Depends on cert-manager. Set tls.certManagerIssuerName to the
|
|
|
|
# desired Issuer.
|
|
|
|
source: cert-manager-self-signed
|
|
|
|
# "cert-manager"-only options:
|
|
|
|
certManagerIssuerName: ""
|
|
|
|
|
2022-12-15 13:51:26 +00:00
|
|
|
nginx:
|
2022-12-19 12:32:43 +00:00
|
|
|
pvcSize: 3Gi
|
2022-12-15 13:51:26 +00:00
|
|
|
|
2022-09-03 22:42:56 +00:00
|
|
|
## Resource limits & requests
|
|
|
|
## Ref: https://kubernetes.io/docs/user-guide/compute-resources/
|
|
|
|
resources:
|
|
|
|
controller:
|
|
|
|
limits:
|
|
|
|
cpu: 500m
|
|
|
|
memory: 50Mi
|
|
|
|
requests:
|
|
|
|
cpu: 250m
|
2022-12-15 13:51:26 +00:00
|
|
|
memory: 50Mi
|