79 lines
2.0 KiB
YAML
79 lines
2.0 KiB
YAML
image:
|
|
pullPolicy: IfNotPresent
|
|
repository: lycheeorg/lychee-laravel
|
|
tag: v4.13.0@sha256:40eebc538f460ace2cb9abc9e8ba1a97615d1cfa4092aff2c3b9677d5494f171
|
|
persistence:
|
|
conf:
|
|
enabled: true
|
|
mountPath: /conf
|
|
sym:
|
|
enabled: true
|
|
mountPath: /sym
|
|
uploads:
|
|
enabled: true
|
|
mountPath: /uploads
|
|
portal:
|
|
enabled: true
|
|
postgresql:
|
|
enabled: true
|
|
existingSecret: dbcreds
|
|
postgresqlDatabase: lychee
|
|
postgresqlUsername: lychee
|
|
redis:
|
|
enabled: true
|
|
existingSecret: rediscreds
|
|
securityContext:
|
|
container:
|
|
readOnlyRootFilesystem: false
|
|
runAsGroup: 0
|
|
runAsNonRoot: false
|
|
runAsUser: 0
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 10017
|
|
targetPort: 80
|
|
workload:
|
|
main:
|
|
podSpec:
|
|
containers:
|
|
main:
|
|
env:
|
|
APP_DEBUG: false
|
|
APP_ENV: production
|
|
APP_KEY:
|
|
secretKeyRef:
|
|
key: APP_KEY
|
|
name: lychee-secrets
|
|
APP_NAME: Lychee
|
|
APP_URL: http://localhost
|
|
CACHE_DRIVER: redis
|
|
DB_CONNECTION: pgsql
|
|
DB_DATABASE: "{{ .Values.postgresql.postgresqlDatabase }}"
|
|
DB_HOST:
|
|
secretKeyRef:
|
|
key: plainhost
|
|
name: dbcreds
|
|
DB_PASSWORD:
|
|
secretKeyRef:
|
|
key: postgresql-password
|
|
name: dbcreds
|
|
DB_PORT: "5432"
|
|
DB_USERNAME: "{{ .Values.postgresql.postgresqlUsername }}"
|
|
MIX_PUSHER_APP_CLUSTER: "{{ .Values.env.PUSHER_APP_CLUSTER }}"
|
|
MIX_PUSHER_APP_KEY: "{{ .Values.env.PUSHER_APP_KEY }}"
|
|
PHP_TZ: "{{ .Values.TZ }}"
|
|
REDIS_HOST:
|
|
secretKeyRef:
|
|
key: plainhost
|
|
name: rediscreds
|
|
REDIS_PASSWORD:
|
|
secretKeyRef:
|
|
key: redis-password
|
|
name: rediscreds
|
|
REDIS_PORT: "6379"
|
|
SECURITY_HEADER_HSTS_ENABLE: false
|
|
SESSION_DRIVER: redis
|
|
TIMEZONE: "{{ .Values.TZ }}"
|