mirror of
https://github.com/auricom/home-cluster.git
synced 2025-09-30 23:45:25 +02:00
![feisar-bot[bot]](/assets/img/avatar_default.png)
| datasource | package | from | to | | ---------- | ----------------- | ------ | ------ | | docker | freshrss/freshrss | 1.26.3 | 1.27.0 | Co-authored-by: feisar-bot[bot] <98277827+feisar-bot[bot]@users.noreply.github.com>
73 lines
1.9 KiB
YAML
73 lines
1.9 KiB
YAML
---
|
|
# 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
|