Skip to content
This repository has been archived by the owner on Aug 22, 2022. It is now read-only.

Commit

Permalink
Fix miniflux values
Browse files Browse the repository at this point in the history
  • Loading branch information
bjw-s committed Jul 31, 2022
1 parent 29fd63c commit 3af2cbe
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions charts/stable/miniflux/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ env:
# -- Set the container timezone.
TZ: UTC
# -- Postgresql connection parameters. See [lib/pq](https://pkg.go.dev/github.com/lib/pq#hdr-Connection_String_Parameters) for more details.
DATABASE_URL: postgres://{{ .Values.postgresql.postgresqlUsername }}:{{ .Values.postgresql.postgresqlPassword }}@{{ include "common.names.fullname" .}}-postgresql/{{ .Values.postgresql.postgresqlDatabase }}?sslmode=disable
DATABASE_URL: postgres://{{ .Values.postgresql.auth.username }}:{{ .Values.postgresql.auth.password }}@{{ include "common.names.fullname" .}}-postgresql/{{ .Values.postgresql.auth.database }}?sslmode=disable
# -- Set to `1` to run database migrations during application startup.
RUN_MIGRATIONS: '1'
# -- Set to `1` to create an admin user from environment variables.
Expand Down Expand Up @@ -60,11 +60,14 @@ probes:
# For more options see [postgresql chart documentation](https://github.com/bitnami/charts/tree/master/bitnami/postgresql)
# @default -- Enabled (see values.yaml for more details)
postgresql:
# -- By default uses an internal postgress. Dissable if you use your own Postgres.
enabled: true
postgresqlDatabase: miniflux
postgresqlUsername: postgres
postgresqlPassword: miniflux
auth:
# -- Postgres database user name
username: postgres
# -- Postgres database password
password: "miniflux"
# -- Postgres database
database: miniflux
persistence:
enabled: false
# storageClass: ""
# size: 8Gi

0 comments on commit 3af2cbe

Please sign in to comment.