Compare commits

..

4 Commits

5 changed files with 12 additions and 5 deletions

View File

@ -22,10 +22,10 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes # 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. # to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/) # Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.0.0 version: 1.0.2
# This is the version number of the application being deployed. This version number should be # 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 # incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using. # follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes. # It is recommended to use it with quotes.
appVersion: "v2.2.2" appVersion: "v2.2.4"

View File

@ -8,7 +8,7 @@ image:
repository: ajbura/cinny repository: ajbura/cinny
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion. # Overrides the image tag whose default is the chart appVersion.
tag: "v2.2.2" tag: "v2.2.4"
imagePullSecrets: [] imagePullSecrets: []
nameOverride: "" nameOverride: ""

View File

@ -23,7 +23,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes # 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. # to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/) # Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.0 version: 0.2.0
# This is the version number of the application being deployed. This version number should be # 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 # 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 }} value: {{ .Values.freshrss.timezone }}
- name: FRESHRSS_ENV - name: FRESHRSS_ENV
value: {{ .Values.freshrss.freshEnv }} value: {{ .Values.freshrss.freshEnv }}
{{- if .Values.freshrss.cron.enabled }}
- name: CRON_MIN
value: {{ .Values.freshrss.cron.cronMin }}
{{- end }}
{{- if .Values.freshrss.autoInstall.enabled }} {{- if .Values.freshrss.autoInstall.enabled }}
- name: FRESHRSS_INSTALL - name: FRESHRSS_INSTALL
value: |- value: |-

View File

@ -46,7 +46,7 @@ freshrss:
timezone: UTC timezone: UTC
freshEnv: production freshEnv: production
autoInstall: autoInstall:
enabled: true enabled: false
baseUrl: freshrss.local baseUrl: freshrss.local
language: en language: en
apiEnabled: false apiEnabled: false
@ -59,6 +59,9 @@ freshrss:
user: admin user: admin
password: admin password: admin
email: admin@example.com email: admin@example.com
cron:
enabled: false
cronMin: "13,43" # Minute(s) past the hour to run cron
persistence: persistence:
enabled: false enabled: false