2023-01-08 14:36:29 +00:00
|
|
|
# Default values for freshrss.
|
|
|
|
# This is a YAML-formatted file.
|
|
|
|
# Declare variables to be passed into your templates.
|
|
|
|
|
|
|
|
replicaCount: 1
|
2023-04-26 20:44:19 +00:00
|
|
|
strategy:
|
2023-01-08 14:36:29 +00:00
|
|
|
type: Recreate
|
|
|
|
|
|
|
|
image:
|
|
|
|
repository: freshrss/freshrss
|
|
|
|
pullPolicy: IfNotPresent
|
2023-04-26 20:44:19 +00:00
|
|
|
# -- Overrides the image tag whose default is the chart appVersion.
|
2023-03-06 11:15:21 +00:00
|
|
|
tag: ""
|
2023-01-08 14:36:29 +00:00
|
|
|
|
|
|
|
imagePullSecrets: []
|
|
|
|
nameOverride: ""
|
|
|
|
fullnameOverride: ""
|
|
|
|
|
|
|
|
serviceAccount:
|
2023-04-26 20:44:19 +00:00
|
|
|
# -- Specifies whether a service account should be created
|
2023-01-08 14:36:29 +00:00
|
|
|
create: true
|
2023-04-26 20:44:19 +00:00
|
|
|
# -- Annotations to add to the service account
|
2023-01-08 14:36:29 +00:00
|
|
|
annotations: {}
|
2023-04-26 20:44:19 +00:00
|
|
|
# -- The name of the service account to use. If not set and create is true, a name is generated using the fullname template
|
2023-01-08 14:36:29 +00:00
|
|
|
name: ""
|
|
|
|
|
|
|
|
podAnnotations: {}
|
|
|
|
|
|
|
|
podSecurityContext: {}
|
|
|
|
# fsGroup: 2000
|
|
|
|
|
|
|
|
securityContext: {}
|
|
|
|
# capabilities:
|
|
|
|
# drop:
|
|
|
|
# - ALL
|
|
|
|
# readOnlyRootFilesystem: true
|
|
|
|
# runAsNonRoot: true
|
|
|
|
# runAsUser: 1000
|
|
|
|
|
|
|
|
service:
|
|
|
|
type: ClusterIP
|
|
|
|
port: 80
|
|
|
|
|
|
|
|
freshrss:
|
2023-04-26 20:44:19 +00:00
|
|
|
# -- PHP Timezone - see https://www.php.net/timezones
|
2023-01-08 14:36:29 +00:00
|
|
|
timezone: UTC
|
2023-04-26 20:44:19 +00:00
|
|
|
# -- Enables additional development information if set to `development` (increases the level of logging and ensures that errors are displayed)
|
2023-01-08 14:36:29 +00:00
|
|
|
freshEnv: production
|
|
|
|
autoInstall:
|
2023-04-26 20:44:19 +00:00
|
|
|
# -- Enable automatic install - configurable through the web application if disabled
|
2023-01-08 14:44:35 +00:00
|
|
|
enabled: false
|
2023-04-26 20:44:19 +00:00
|
|
|
# -- URL for FreshRSS instance
|
2023-01-08 14:36:29 +00:00
|
|
|
baseUrl: freshrss.local
|
2023-04-26 20:44:19 +00:00
|
|
|
# -- Language short code
|
2023-01-08 14:36:29 +00:00
|
|
|
language: en
|
2023-04-26 20:44:19 +00:00
|
|
|
# -- Enable FreshRSS API
|
2023-01-08 14:36:29 +00:00
|
|
|
apiEnabled: false
|
2023-04-26 20:44:19 +00:00
|
|
|
# -- Database type - `pgsql`, `mysql` or `sqlite`
|
2023-01-08 14:36:29 +00:00
|
|
|
dbType: sqlite
|
2023-04-26 20:44:19 +00:00
|
|
|
# -- Database name
|
2023-01-08 14:36:29 +00:00
|
|
|
dbBase: freshrss
|
2023-04-26 20:44:19 +00:00
|
|
|
# -- Database hostname
|
2023-01-08 14:36:29 +00:00
|
|
|
dbHost: ""
|
2023-04-26 20:44:19 +00:00
|
|
|
# -- Database password
|
2023-01-08 14:36:29 +00:00
|
|
|
dbPassword: freshrss
|
2023-04-26 20:44:19 +00:00
|
|
|
# -- Database user
|
2023-01-08 14:36:29 +00:00
|
|
|
dbUser: freshrss
|
|
|
|
defaultUser:
|
2023-04-26 20:44:19 +00:00
|
|
|
# -- Username for the default user
|
2023-01-08 14:36:29 +00:00
|
|
|
user: admin
|
2023-04-26 20:44:19 +00:00
|
|
|
# -- Password for the default user
|
2023-01-08 14:36:29 +00:00
|
|
|
password: admin
|
2023-04-26 20:44:19 +00:00
|
|
|
# -- Email for the default user
|
2023-01-08 14:36:29 +00:00
|
|
|
email: admin@example.com
|
2023-02-05 15:10:49 +00:00
|
|
|
cron:
|
2023-04-26 20:44:19 +00:00
|
|
|
# -- Enable Cron to periodically refresh feeds
|
2023-02-05 15:10:49 +00:00
|
|
|
enabled: false
|
2023-04-26 20:44:19 +00:00
|
|
|
# -- Minute(s) past the hour to run cron
|
|
|
|
cronMin: "13,43"
|
2023-01-08 14:36:29 +00:00
|
|
|
|
|
|
|
persistence:
|
|
|
|
enabled: false
|
|
|
|
existingClaim: ""
|
|
|
|
annotations: {}
|
|
|
|
accessMode: ReadWriteOnce
|
|
|
|
storageClass: ""
|
|
|
|
size: 10Gi
|
|
|
|
|
|
|
|
ingress:
|
|
|
|
enabled: false
|
|
|
|
className: ""
|
|
|
|
annotations: {}
|
|
|
|
# kubernetes.io/ingress.class: nginx
|
|
|
|
# kubernetes.io/tls-acme: "true"
|
|
|
|
hosts:
|
|
|
|
- host: freshrss.local
|
|
|
|
paths:
|
|
|
|
- path: /
|
|
|
|
pathType: ImplementationSpecific
|
|
|
|
tls: []
|
|
|
|
# - secretName: chart-example-tls
|
|
|
|
# hosts:
|
|
|
|
# - chart-example.local
|
|
|
|
|
|
|
|
resources: {}
|
|
|
|
# We usually recommend not to specify default resources and to leave this as a conscious
|
|
|
|
# choice for the user. This also increases chances charts run on environments with little
|
|
|
|
# resources, such as Minikube. If you do want to specify resources, uncomment the following
|
|
|
|
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
|
|
|
|
# limits:
|
|
|
|
# cpu: 100m
|
|
|
|
# memory: 128Mi
|
|
|
|
# requests:
|
|
|
|
# cpu: 100m
|
|
|
|
# memory: 128Mi
|
|
|
|
|
|
|
|
nodeSelector: {}
|
|
|
|
|
|
|
|
tolerations: []
|
|
|
|
|
|
|
|
affinity: {}
|