36 lines
529 B
YAML
36 lines
529 B
YAML
|
# Default values for FreshRSS.
|
||
|
|
||
|
image:
|
||
|
repository: linuxserver/freshrss
|
||
|
pullPolicy: IfNotPresent
|
||
|
tag: version-1.18.0
|
||
|
|
||
|
strategy:
|
||
|
type: Recreate
|
||
|
|
||
|
# Configure the Security Context for the Pod
|
||
|
podSecurityContext:
|
||
|
runAsNonRoot: false
|
||
|
runAsUser: 0
|
||
|
runAsGroup: 0
|
||
|
fsGroup: 0
|
||
|
|
||
|
services:
|
||
|
main:
|
||
|
port:
|
||
|
port: 80
|
||
|
|
||
|
env: {}
|
||
|
# TZ: UTC
|
||
|
# PUID: 1001
|
||
|
# PGID: 1001
|
||
|
|
||
|
persistence:
|
||
|
config:
|
||
|
enabled: true
|
||
|
mountPath: "/config"
|
||
|
emptyDir: true
|
||
|
accessMode: ReadWriteOnce
|
||
|
size: 1Gi
|
||
|
storageClass: ""
|