mirror of
https://github.com/rtomik/helm-charts.git
synced 2026-04-05 09:40:38 +00:00
134 lines
2.3 KiB
YAML
134 lines
2.3 KiB
YAML
# Default values for recipya.
|
|
# This is a YAML-formatted file.
|
|
# Declare variables to be passed into your templates.
|
|
|
|
replicaCount: 1
|
|
revisionHistoryLimit: 3
|
|
|
|
image:
|
|
repository: reaper99/recipya
|
|
pullPolicy: IfNotPresent
|
|
# Overrides the image tag whose default is the chart appVersion.
|
|
tag: "v1.2.2"
|
|
|
|
imagePullSecrets: []
|
|
nameOverride: ""
|
|
fullnameOverride: ""
|
|
|
|
# Security context for the pod
|
|
podSecurityContext:
|
|
fsGroup: 1000
|
|
|
|
containerSecurityContext: {}
|
|
|
|
# Service configuration
|
|
service:
|
|
type: ClusterIP
|
|
port: 8078
|
|
|
|
# Recipya configuration
|
|
config:
|
|
email:
|
|
address: ""
|
|
sendgrid: ""
|
|
existingSecret: ""
|
|
addressKey: "email"
|
|
sendgridKey: "sendgrid"
|
|
|
|
documentIntelligence:
|
|
endpoint: ""
|
|
key: ""
|
|
existingSecret: ""
|
|
endpointKey: "di_endpoint"
|
|
keyKey: "di_key"
|
|
|
|
server:
|
|
port: 8078
|
|
autologin: false
|
|
is_demo: false
|
|
is_prod: true
|
|
no_signups: false
|
|
url: "http://0.0.0.0"
|
|
|
|
# Ingress configuration
|
|
ingress:
|
|
enabled: true
|
|
className: "traefik"
|
|
annotations: []
|
|
# traefik.ingress.kubernetes.io/router.entrypoints: websecure
|
|
# traefik.ingress.kubernetes.io/router.middlewares: default-recipya-headers@kubernetescrd
|
|
hosts:
|
|
- host: recipya.<domain>
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
tls: []
|
|
# - secretName: chart-example-tls
|
|
# hosts:
|
|
# - chart-example.local
|
|
|
|
|
|
# Persistent volume claim
|
|
persistence:
|
|
enabled: true
|
|
accessMode: ReadWriteOnce
|
|
size: 5Gi
|
|
storageClass: ""
|
|
annotations: {}
|
|
retain: true
|
|
|
|
# Resource limits and requests
|
|
resources:
|
|
limits:
|
|
cpu: 500m
|
|
memory: 512Mi
|
|
requests:
|
|
cpu: 100m
|
|
memory: 128Mi
|
|
|
|
# Node selector
|
|
nodeSelector: {}
|
|
|
|
# Tolerations
|
|
tolerations: []
|
|
|
|
# Affinity
|
|
affinity: {}
|
|
|
|
# Additional pod annotations
|
|
podAnnotations: {}
|
|
|
|
# Startup arguments
|
|
startupArgs: []
|
|
|
|
# Additional environment variables
|
|
env: []
|
|
|
|
# Extra environment variables
|
|
extraEnv: []
|
|
|
|
# Extra volume mounts
|
|
extraVolumeMounts: []
|
|
|
|
# Extra volumes
|
|
extraVolumes: []
|
|
|
|
# Probes configuration
|
|
probes:
|
|
liveness:
|
|
enabled: true
|
|
path: /
|
|
initialDelaySeconds: 30
|
|
periodSeconds: 10
|
|
timeoutSeconds: 5
|
|
failureThreshold: 3
|
|
successThreshold: 1
|
|
readiness:
|
|
enabled: true
|
|
path: /
|
|
initialDelaySeconds: 30
|
|
periodSeconds: 10
|
|
timeoutSeconds: 5
|
|
failureThreshold: 3
|
|
successThreshold: 1
|