feat(freshrss): add configuration to enable cron (#6)

This commit is contained in:
James 2023-02-05 15:10:49 +00:00 committed by GitHub
parent e2341daf14
commit 0e9277e4cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 1 deletions

View File

@ -23,7 +23,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.1
version: 0.2.0
# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to

View File

@ -42,6 +42,10 @@ spec:
value: {{ .Values.freshrss.timezone }}
- name: FRESHRSS_ENV
value: {{ .Values.freshrss.freshEnv }}
{{- if .Values.freshrss.cron.enabled }}
- name: CRON_MIN
value: {{ .Values.freshrss.cron.cronMin }}
{{- end }}
{{- if .Values.freshrss.autoInstall.enabled }}
- name: FRESHRSS_INSTALL
value: |-

View File

@ -59,6 +59,9 @@ freshrss:
user: admin
password: admin
email: admin@example.com
cron:
enabled: false
cronMin: "13,43" # Minute(s) past the hour to run cron
persistence:
enabled: false