example(miniflux): add custom recipe example: miniflux

This commit is contained in:
Masaki Yatsu
2025-09-07 22:02:20 +09:00
parent 6e1ae8b79b
commit 3fe286c8ff
4 changed files with 82 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
ingress:
main:
enabled: true
annotations:
kubernetes.io/ingress.class: traefik
traefik.ingress.kubernetes.io/router.entrypoints: websecure
ingressClassName: traefik
hosts:
- host: {{ .Env.MINIFLUX_HOST }}
paths:
- path: /
tls:
- hosts:
- {{ .Env.MINIFLUX_HOST }}
env:
DATABASE_URL: "postgresql://{{ .Env.MINIFLUX_DB_USERNAME }}:{{ .Env.MINIFLUX_DB_PASSWORD }}@postgres-cluster-rw.postgres:5432/{{ .Env.MINIFLUX_DB_NAME }}"
postgresql:
enabled: false