TrueChartsClone/charts/stable/lychee/values.yaml

98 lines
2.0 KiB
YAML
Raw Normal View History

image:
repository: tccr.io/truecharts/lychee-laravel
pullPolicy: IfNotPresent
tag: 4.6.0@sha256:256349a23d75ef0b1eefaf44100a03836904e4e4dc93afa188ddb4b3dcf9d0f8
securityContext:
readOnlyRootFilesystem: false
runAsNonRoot: false
podSecurityContext:
runAsUser: 0
runAsGroup: 0
service:
main:
ports:
main:
port: 10017
targetPort: 80
# secretEnv:
# PUSHER_APP_KEY: ""
# PUSHER_APP_SECRET: ""
# PUSHER_APP_ID: ""
# PUSHER_APP_CLUSTER: "mt1"
# MAIL_DRIVER: "smtp"
# MAIL_HOST: ""
# MAIL_FROM_NAME: ""
# MAIL_FROM_ADDRESS: ""
# MAIL_USERNAME: ""
# MAIL_PASSWORD: ""
# MAIL_PORT: "587"
# MAIL_ENCRYPTION: "tls"
env:
# Internal Envs
TIMEZONE: "{{ .Values.TZ }}"
PHP_TZ: "{{ .Values.TZ }}"
DB_CONNECTION: "pgsql"
DB_PORT: "5432"
DB_DATABASE: "{{ .Values.postgresql.postgresqlDatabase }}"
DB_USERNAME: "{{ .Values.postgresql.postgresqlUsername }}"
REDIS_PORT: "6379"
CACHE_DRIVER: "redis"
SESSION_DRIVER: "redis"
APP_ENV: "production"
APP_NAME: "Lychee"
MIX_PUSHER_APP_KEY: "{{ .Values.env.PUSHER_APP_KEY }}"
MIX_PUSHER_APP_CLUSTER: "{{ .Values.env.PUSHER_APP_CLUSTER }}"
# User Envs
SECURITY_HEADER_HSTS_ENABLE: false
APP_DEBUG: false
APP_URL: http://localhost
DB_PASSWORD:
secretKeyRef:
name: dbcreds
key: postgresql-password
DB_HOST:
secretKeyRef:
name: dbcreds
key: plainhost
REDIS_HOST:
secretKeyRef:
name: rediscreds
key: plainhost
REDIS_PASSWORD:
secretKeyRef:
name: rediscreds
key: redis-password
APP_KEY:
secretKeyRef:
name: lychee-secrets
key: APP_KEY
persistence:
conf:
enabled: true
mountPath: "/conf"
sym:
enabled: true
mountPath: "/sym"
uploads:
enabled: true
mountPath: "/uploads"
postgresql:
enabled: true
existingSecret: "dbcreds"
postgresqlUsername: lychee
postgresqlDatabase: lychee
redis:
enabled: true
existingSecret: "rediscreds"
chore(questions): replace questions parts with templates (#3402) * chore(questions): replace port parts with templates * chore(questions): replace controller parts with templates * remove tons of whitespce * remove quotes from strings on templates * make complete controller an include * default to recreate * remove replica and strategies as it's covered from controllerStrtegies include * remove whitespace again * replace controllertype with include (deployment/daemonset/statefulset) * replace advanced port part except targetport * remove more quotes * add hidden toggle of enable the port * new includes * update build script * controller deploy/stateful/deamon template changes * replace controllerStrategies with replicas, replica#, strategy, recreate * move 2 templates into a subfolder * remove quotes * remove disabled portals from questions and defined them on values * remove enabled portal from the questions and add it on values * one more app * Portal cleanup * remove portal templates * add more includes * replace portal links * move some templates in folders * replace ingressRoot with template * more grouping * replace persistenceroot with template * replace serviceExpertRoot * replace serviceroot * fix a rogue one * vctRoot * securityContext cleanup * remove quotes from templates on string * replace vctRoot * replace advanedSecurityRoot * replace podsecurity root * Update .github/scripts/build-catalog.sh * Update values.yaml * remove dupe portal * update build-release script * fix paths * fix apps with imageSelector Co-authored-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-08-08 17:25:02 -04:00
portal:
enabled: true