64 lines
1.5 KiB
YAML
64 lines
1.5 KiB
YAML
image:
|
|
# -- image repository
|
|
repository: tccr.io/truecharts/tt-rss
|
|
# -- image pull policy
|
|
pullPolicy: IfNotPresent
|
|
# -- image tag
|
|
tag: v2.0.9113@sha256:c4b2bc071fbea7e78d20b7270fe51d94a4b4ca3bd857a872b23b145f60da0458
|
|
|
|
securityContext:
|
|
readOnlyRootFilesystem: false
|
|
runAsNonRoot: false
|
|
|
|
podSecurityContext:
|
|
runAsUser: 0
|
|
runAsGroup: 0
|
|
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
mountPath: "/config"
|
|
plugins:
|
|
enabled: true
|
|
mountPath: "/app/plugins.local"
|
|
themes:
|
|
enabled: true
|
|
mountPath: "/app/themes.local"
|
|
|
|
# -- See more environment variables in the tt-rss documentation
|
|
# https://git.tt-rss.org/fox/tt-rss/src/branch/master/classes/config.php#L9
|
|
# @default -- See below.
|
|
env:
|
|
# -- External URL you use to connect to the RSS (the one you enter in your browser)
|
|
TTRSS_SELF_URL_PATH: ""
|
|
TTRSS_DB_NAME: "{{ .Values.postgresql.postgresqlDatabase }}"
|
|
TTRSS_DB_USER: "{{ .Values.postgresql.postgresqlUsername }}"
|
|
TTRSS_DB_PORT: "5432"
|
|
TTRSS_DB_PASS:
|
|
secretKeyRef:
|
|
name: dbcreds
|
|
key: postgresql-password
|
|
TTRSS_DB_HOST:
|
|
secretKeyRef:
|
|
name: dbcreds
|
|
key: plainhost
|
|
|
|
# -- Configure the services for the chart here.
|
|
# @default -- See below.
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 10104
|
|
targetPort: 8080
|
|
|
|
# @default -- see bellow
|
|
# Enabled postgres
|
|
postgresql:
|
|
enabled: true
|
|
existingSecret: "dbcreds"
|
|
# -- Postgres database user name
|
|
postgresqlUsername: tt-rss
|
|
# -- Postgres database password
|
|
postgresqlDatabase: tt-rss
|