oecis-charts/charts/tandoor/values.yaml
2023-08-27 15:38:50 +02:00

135 lines
2.9 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:
staticfiles:
name: tandoor-staticfiles
# existingClaim: ""
size: 1Gi
accessMode: ReadWriteOnce
# storageClass: ""
annotations: {}
mediafiles:
name: tandoor-mediafiles
# existingClaim: ""
size: 1Gi
accessMode: ReadWriteOnce
# storageClass: ""
annotations: {}
service:
gunicorn:
type: ClusterIP
port: 80
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: {}
# oauth2InitContainer is used to inject the oauth2 provider configuration
oauth2InitContainer:
enabled: false
config: {}
# openid_connect:
# SERVERS:
# - id: oecis
# name: Oecis
# server_url: https://hydra.oecis.io
# token_auth_method: client_secret_post
# APP:
# client_id: "$(OIDC_CLIENT_ID)"
# client_secret: "$(OIDC_CLIENT_SECRET)"
# you can use env to add secrets like OIDC_CLIENT_SECRET
env: []
nginx:
image:
repository: nginx
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: "mainline-alpine"
resources: {}
tandoor:
# extraEnv can be used to select an oauth2 provider:
# extraEnv:
# - name: SOCIAL_PROVIDERS
# value: allauth.socialaccount.providers.openid_connect
extraEnv: []
image:
repository: vabene1111/recipes
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: "latest"
resources: {}
config:
encryptionSecret: ""
postgres:
host: ""
port: 5432
user: tandoor
password: ""
db: tandoor
existingSecret: ""
secretKeys:
postgresUserPasswordKey: "postgres-user-password"
encryptionSecretKey: "encryption-key"