You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
apiVersion: helm.toolkit.fluxcd.io/v2beta1
|
|
|
|
kind: HelmRelease
|
|
|
|
metadata:
|
|
|
|
name: tandoor
|
|
|
|
namespace: tandoor
|
|
|
|
spec:
|
|
|
|
releaseName: tandoor
|
|
|
|
chart:
|
|
|
|
spec:
|
|
|
|
chart: tandoor
|
|
|
|
sourceRef:
|
|
|
|
kind: HelmRepository
|
|
|
|
name: gabe565
|
|
|
|
namespace: repos
|
|
|
|
interval: 60m
|
|
|
|
install:
|
|
|
|
remediation:
|
|
|
|
retries: 3
|
|
|
|
values:
|
|
|
|
postgresql:
|
|
|
|
enabled: false
|
|
|
|
|
|
|
|
resources:
|
|
|
|
requests:
|
|
|
|
memory: 384Mi
|
|
|
|
limits:
|
|
|
|
memory: 512Mi
|
|
|
|
nginx:
|
|
|
|
resources:
|
|
|
|
requests:
|
|
|
|
memory: 64Mi
|
|
|
|
limits:
|
|
|
|
memory: 128Mi
|
|
|
|
|
|
|
|
persistence:
|
|
|
|
media:
|
|
|
|
enabled: true
|
|
|
|
storageClass: ebs-hdd
|
|
|
|
accessMode: ReadWriteOnce
|
|
|
|
size: 2Gi
|
|
|
|
|
|
|
|
env:
|
|
|
|
TIMEZONE: Europe/Berlin
|
|
|
|
ALLOWED_HOSTS: '*'
|
|
|
|
CSRF_TRUSTED_ORIGINS: https://food.trivernis.net
|
|
|
|
DB_ENGINE: django.db.backends.postgresql_psycopg2
|
|
|
|
POSTGRES_HOST: recipes-db
|
|
|
|
POSTGRES_PORT: 5432
|
|
|
|
POSTGRES_USER: postgres
|
|
|
|
POSTGRES_DB: postgres
|
|
|
|
|
|
|
|
valuesFrom:
|
|
|
|
- kind: Secret
|
|
|
|
name: recipes-secret
|
|
|
|
valuesKey: values
|