--- # yaml-language-server: $schema=https://raw.githubusercontent.com/bjw-s/helm-charts/main/charts/other/app-template/schemas/helmrelease-helm-v2.schema.json apiVersion: helm.toolkit.fluxcd.io/v2 kind: HelmRelease metadata: name: &app freshrss spec: interval: 1h chartRef: kind: OCIRepository name: app-template install: remediation: retries: 3 upgrade: cleanupOnFail: true remediation: strategy: rollback retries: 3 values: controllers: freshrss: containers: app: image: repository: freshrss/freshrss tag: 1.27.0@sha256:2b53d2708fc755aab499a96e865be5ae6deeafb99e855e235e8870b4013c56cd env: TZ: ${TIMEZONE} CRON_MIN: 18,48 DOMAIN: "freshrss.${SECRET_EXTERNAL_DOMAIN}" LISTEN: &port 8080 probes: liveness: enabled: true readiness: enabled: true resources: requests: cpu: 12m memory: 128M limits: memory: 512M service: app: controller: *app ports: http: port: *port route: app: hostnames: ["{{ .Release.Name }}.${SECRET_EXTERNAL_DOMAIN}"] parentRefs: - name: internal namespace: network sectionName: https rules: - backendRefs: - name: *app port: *port persistence: config: existingClaim: *app advancedMounts: freshrss: app: - path: /var/www/FreshRSS/data subPath: data readOnly: false - path: /var/www/FreshRSS/extensions subPath: extensions readOnly: false