Files
truecharts/charts/stable/miniflux/values.yaml
T
e8dbca32f5 chore(deps): update non-major (#1449)
* chore(deps): update non-major

* Commit bumped App Version

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>

Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: TrueCharts-Bot <bot@truecharts.org>
2021-12-03 15:07:49 +01:00

63 lines
1.7 KiB
YAML

image:
repository: tccr.io/truecharts/miniflux
tag: v2.0.33@sha256:1fcc67ba8a5e9f06c6b67bc654b3276d51c304cb3a2ac4985114b6785c149cb2
pullPolicy: IfNotPresent
# -- environment variables. See [miniflux docs](https://miniflux.app/docs/configuration.html) for more details.
# @default -- See below
secret:
# -- Admin user login, it's used only if `CREATE_ADMIN` is enabled.
ADMIN_USERNAME: "admin"
# -- Admin user password, it's used only if `CREATE_ADMIN` is enabled.
ADMIN_PASSWORD: "changeme"
env:
# -- Set the container timezone.
TZ: UTC
# -- Set to `1` to run database migrations during application startup.
RUN_MIGRATIONS: 1
# -- Set to `1` to create an admin user from environment variables.
CREATE_ADMIN: 1
envValueFrom:
# -- Postgresql connection parameters. See [lib/pq](https://pkg.go.dev/github.com/lib/pq#hdr-Connection_String_Parameters) for more details.
DATABASE_URL:
secretKeyRef:
name: dbcreds
key: urlnossl
# -- Configures service settings for the chart.
# @default -- See values.yaml
service:
main:
ports:
main:
port: 10091
targetPort: 8080
persistence:
config:
enabled: true
mountPath: "/config"
# -- Configures the probes for the main Pod.
# @default -- See values.yaml
probes:
liveness:
enabled: true
custom: true
spec:
initialDelaySeconds: 30
periodSeconds: 10
timeoutSeconds: 1
failureThreshold: 3
httpGet:
path: /healthcheck
port: 8080
# -- Enable and configure postgresql database subchart under this key.
# @default -- Enabled (see values.yaml for more details)
postgresql:
enabled: true
existingSecret: "dbcreds"
postgresqlDatabase: miniflux
postgresqlUsername: miniflux