TrueChartsCatalogClone/stable/miniflux/3.0.7/ix_values.yaml

59 lines
1.6 KiB
YAML

image:
repository: miniflux/miniflux
tag: 2.0.33@sha256:77726b617e71a046ea4d02890f7f4a5d43a3c774c7de073ad06bec521ae75f12
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: 8080
targetPort: 8080
# -- 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