fix(quassel-core): Add db name (#1826)

This commit is contained in:
Stavros Kois
2022-02-01 12:43:04 +02:00
committed by GitHub
parent d96d71d65a
commit dae4973825
2 changed files with 3 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
apiVersion: v2
kubeVersion: ">=1.16.0-0"
name: quassel-core
version: 0.0.19
version: 0.0.20
appVersion: "0.14.0"
description: Quassel-core is a modern, cross-platform, distributed IRC client.
type: application

View File

@@ -14,7 +14,8 @@ podSecurityContext:
env:
PUID: 568
DB_BACKEND: "PostgreSQL"
DB_PGSQL_USERNAME: "quassel-core"
DB_PGSQL_USERNAME: "{{ .Values.postgresql.postgresqlUsername }}"
DB_PGSQL_DATABASE: "{{ .Values.postgresql.postgresqlDatabase }}"
DB_PGSQL_PORT: 5432
AUTH_AUTHENTICATOR: "Database"
RUN_OPTS: "--config-from-environment"