Files
auricom-home-cluster/kubernetes/apps/default/lychee/app/helmrelease.yaml
feisar-bot ffc7fcdd1f ⬆️ Update chart app-template to 1.3.0
| datasource | package      | from  | to    |
| ---------- | ------------ | ----- | ----- |
| helm       | app-template | 1.2.1 | 1.3.0 |
2023-02-04 09:58:33 +01:00

82 lines
1.8 KiB
YAML

---
# yaml-language-server: $schema=https://kubernetes-schemas.devbu.io/helmrelease_v2beta1.json
apiVersion: helm.toolkit.fluxcd.io/v2beta1
kind: HelmRelease
metadata:
name: &app lychee
namespace: default
spec:
interval: 15m
chart:
spec:
chart: app-template
version: 1.3.0
sourceRef:
kind: HelmRepository
name: bjw-s
namespace: flux-system
maxHistory: 3
install:
createNamespace: true
remediation:
retries: 3
upgrade:
cleanupOnFail: true
remediation:
retries: 3
uninstall:
keepHistory: false
values:
image:
repository: lycheeorg/lychee-laravel
tag: v4.7.0
env:
TIMEZONE: ${TIMEZONE}
APP_NAME: Lychee
DB_CONNECTION: pgsql
DB_HOST: ${POSTGRES_HOST}
DB_PORT: ${POSTGRES_PORT}
DB_DATABASE: lychee
REDIS_HOST: redis.default.svc.cluster.local.
REDIS_PORT: 6379
envFrom:
- secretRef:
name: *app
service:
main:
ports:
http:
port: 80
ingress:
main:
enabled: true
ingressClassName: "nginx"
annotations:
auth.home.arpa/enabled: "true"
external-dns.home.arpa/enabled: "true"
hajimari.io/icon: mdi:camera
hosts:
- host: &host "{{ .Release.Name }}.${SECRET_CLUSTER_DOMAIN}"
paths:
- path: /
pathType: Prefix
tls:
- hosts:
- *host
persistence:
photo:
enabled: true
type: nfs
server: "${LOCAL_LAN_TRUENAS}"
path: /mnt/storage/photo
mountPath: /mnt/storage/photo
readOnly: true
files:
enabled: true
mountPath: /uploads
existingClaim: lychee-files
resources:
requests:
cpu: 15m
memory: 256Mi