mirror of
https://github.com/auricom/home-cluster.git
synced 2025-12-27 01:04:39 +01:00
Signed-off-by: Auricom <auricom@users.noreply.github.com> Co-authored-by: Renovate Bot <bot@renovateapp.com>
52 lines
1.1 KiB
YAML
52 lines
1.1 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: 2.3.0
|
|
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.17.0
|
|
pullPolicy: IfNotPresent
|
|
env:
|
|
TZ: Europe/Paris
|
|
CRON_MIN: "18,48"
|
|
service:
|
|
port:
|
|
port: 80
|
|
annotations:
|
|
prometheus.io/probe: "true"
|
|
prometheus.io/protocol: http
|
|
ingress:
|
|
enabled: true
|
|
annotations:
|
|
kubernetes.io/ingress.class: "nginx"
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
mountPath: /var/www/FreshRSS/data
|
|
existingClaim: freshrss-config
|
|
resources:
|
|
requests:
|
|
cpu: 50m
|
|
memory: 256Mi
|
|
valuesFrom:
|
|
- kind: ConfigMap
|
|
name: helmrelease-data-freshrss
|