mirror of
https://gitlab.com/oecis/charts.git
synced 2024-11-15 00:28:59 +00:00
113 lines
2.1 KiB
YAML
113 lines
2.1 KiB
YAML
# Default values for tandoor.
|
|
# This is a YAML-formatted file.
|
|
# Declare variables to be passed into your templates.
|
|
|
|
replicaCount: 1
|
|
|
|
|
|
imagePullSecrets: []
|
|
nameOverride: ""
|
|
fullnameOverride: ""
|
|
# namespaceOverride: "custom-namespace"
|
|
|
|
serviceAccount:
|
|
# Specifies whether a service account should be created
|
|
create: true
|
|
# Annotations to add to the service account
|
|
annotations: {}
|
|
# The name of the service account to use.
|
|
# If not set and create is true, a name is generated using the fullname template
|
|
name: ""
|
|
|
|
podAnnotations: {}
|
|
|
|
podSecurityContext: {}
|
|
# fsGroup: 2000
|
|
|
|
securityContext: {}
|
|
# capabilities:
|
|
# drop:
|
|
# - ALL
|
|
# readOnlyRootFilesystem: true
|
|
# runAsNonRoot: true
|
|
# runAsUser: 1000
|
|
|
|
persistence:
|
|
mediafiles:
|
|
name: tandoor-mediafiles
|
|
# existingClaim: ""
|
|
size: 1Gi
|
|
accessMode: ReadWriteOnce
|
|
# storageClass: ""
|
|
annotations: {}
|
|
|
|
service:
|
|
gunicorn:
|
|
type: ClusterIP
|
|
port: 8080
|
|
name: gunicorn
|
|
nginx:
|
|
type: ClusterIP
|
|
port: 80
|
|
name: nginx
|
|
|
|
|
|
ingress:
|
|
enabled: false
|
|
className: ""
|
|
annotations: {}
|
|
# kubernetes.io/ingress.class: nginx
|
|
# kubernetes.io/tls-acme: "true"
|
|
hosts:
|
|
- host: tandoor.local
|
|
|
|
tls: []
|
|
# - secretName: chart-example-tls
|
|
# hosts:
|
|
# - chart-example.local
|
|
|
|
autoscaling:
|
|
enabled: false
|
|
minReplicas: 1
|
|
maxReplicas: 100
|
|
targetCPUUtilizationPercentage: 80
|
|
# targetMemoryUtilizationPercentage: 80
|
|
|
|
nodeSelector: {}
|
|
|
|
tolerations: []
|
|
|
|
affinity: {}
|
|
|
|
initContainers: []
|
|
extraVolumes: []
|
|
nginx:
|
|
image:
|
|
repository: nginx
|
|
pullPolicy: IfNotPresent
|
|
# Overrides the image tag whose default is the chart appVersion.
|
|
tag: "mainline-alpine"
|
|
resources: {}
|
|
tandoor:
|
|
command: []
|
|
extraEnv: []
|
|
extraVolumeMounts: []
|
|
image:
|
|
repository: vabene1111/recipes
|
|
pullPolicy: IfNotPresent
|
|
# Overrides the image tag whose default is the chart appVersion.
|
|
tag: ""
|
|
resources: {}
|
|
config:
|
|
encryptionKey:
|
|
secretName: ""
|
|
secretKey: "encryption-key"
|
|
postgres:
|
|
host: ""
|
|
port: 5432
|
|
user: tandoor
|
|
password:
|
|
secretName: ""
|
|
secretKey: "password"
|
|
db: tandoor
|