mirror of
https://github.com/auricom/home-cluster.git
synced 2025-10-03 09:09:01 +02:00
58 lines
1.3 KiB
YAML
58 lines
1.3 KiB
YAML
---
|
|
apiVersion: helm.toolkit.fluxcd.io/v2beta1
|
|
kind: HelmRelease
|
|
metadata:
|
|
name: freshrss
|
|
namespace: data
|
|
spec:
|
|
interval: 5m
|
|
chart:
|
|
spec:
|
|
# renovate: registryUrl=https://k8s-at-home.com/charts/
|
|
chart: freshrss
|
|
version: 3.2.1
|
|
sourceRef:
|
|
kind: HelmRepository
|
|
name: k8s-at-home-charts
|
|
namespace: flux-system
|
|
interval: 5m
|
|
values:
|
|
controllerType: deployment
|
|
strategy:
|
|
type: Recreate
|
|
image:
|
|
repository: freshrss/freshrss
|
|
tag: 1.18.0
|
|
pullPolicy: IfNotPresent
|
|
env:
|
|
TZ: Europe/Paris
|
|
CRON_MIN: "18,48"
|
|
DOMAIN: "https://freshrss.k3s.xpander.ovh/"
|
|
service:
|
|
port:
|
|
port: 80
|
|
annotations:
|
|
prometheus.io/probe: "true"
|
|
prometheus.io/protocol: http
|
|
ingress:
|
|
enabled: true
|
|
annotations:
|
|
kubernetes.io/ingress.class: "nginx"
|
|
hosts:
|
|
- host: freshrss.k3s.xpander.ovh
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
tls:
|
|
- hosts:
|
|
- "freshrss.k3s.xpander.ovh"
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
mountPath: /var/www/FreshRSS/data
|
|
existingClaim: freshrss-config
|
|
resources:
|
|
requests:
|
|
cpu: 50m
|
|
memory: 256Mi
|