postgresql changes
This commit is contained in:
@@ -25,16 +25,16 @@ persistence:
|
||||
env:
|
||||
# -- External URL you use to connect to the RSS (the one you enter in your browser)
|
||||
SELF_URL_PATH: ""
|
||||
DB_NAME: "{{ .Values.postgresql.postgresqlDatabase }}"
|
||||
DB_USER: "{{ .Values.postgresql.postgresqlUsername }}"
|
||||
DB_NAME: "{{ .Values.cnpg.database }}"
|
||||
DB_USER: "{{ .Values.cnpg.user }}"
|
||||
DB_PORT: "5432"
|
||||
DB_PASS:
|
||||
secretKeyRef:
|
||||
name: dbcreds
|
||||
name: cnpg-main-urls
|
||||
key: postgresql-password
|
||||
DB_HOST:
|
||||
secretKeyRef:
|
||||
name: dbcreds
|
||||
name: cnpg-main-urls
|
||||
key: plainhost
|
||||
|
||||
service:
|
||||
|
||||
@@ -58,7 +58,7 @@ probes:
|
||||
|
||||
postgresql:
|
||||
enabled: true
|
||||
existingSecret: dbcreds
|
||||
existingSecret: "dbcreds"
|
||||
postgresqlUsername: briefkasten
|
||||
postgresqlDatabase: briefkasten
|
||||
|
||||
|
||||
@@ -28,7 +28,7 @@ service:
|
||||
|
||||
postgresql:
|
||||
enabled: true
|
||||
existingSecret: dbcreds
|
||||
existingSecret: "dbcreds"
|
||||
postgresqlUsername: coupon-store
|
||||
postgresqlDatabase: coupon-store
|
||||
|
||||
|
||||
@@ -536,7 +536,7 @@ persistence:
|
||||
mountPath: /import
|
||||
postgresql:
|
||||
enabled: true
|
||||
existingSecret: dbcreds
|
||||
existingSecret: "dbcreds"
|
||||
postgresqlUsername: docspell
|
||||
postgresqlDatabase: docspell
|
||||
|
||||
|
||||
@@ -30,15 +30,15 @@ env:
|
||||
|
||||
# Postgres
|
||||
DB_ENGINE: postgres
|
||||
DATABASE_NAME: "{{ .Values.postgresql.postgresqlDatabase }}"
|
||||
DATABASE_USER: "{{ .Values.postgresql.postgresqlUsername }}"
|
||||
DATABASE_NAME: "{{ .Values.cnpg.database }}"
|
||||
DATABASE_USER: "{{ .Values.cnpg.user }}"
|
||||
DATABASE_PASSWORD:
|
||||
secretKeyRef:
|
||||
name: dbcreds
|
||||
name: cnpg-main-urls
|
||||
key: postgresql-password
|
||||
DATABASE_HOST:
|
||||
secretKeyRef:
|
||||
name: dbcreds
|
||||
name: cnpg-main-urls
|
||||
key: plainhost
|
||||
DATABASE_PORT: 5432
|
||||
REDIS_URI:
|
||||
|
||||
@@ -8,7 +8,7 @@ env:
|
||||
LENPASTE_DB_DRIVER: postgres
|
||||
LENPASTE_DB_SOURCE:
|
||||
secretKeyRef:
|
||||
name: dbcreds
|
||||
name: cnpg-main-urls
|
||||
key: urlnossl
|
||||
# User Defined
|
||||
LENPASTE_ADMIN_NAME: admin
|
||||
@@ -33,7 +33,7 @@ persistence:
|
||||
|
||||
postgresql:
|
||||
enabled: true
|
||||
existingSecret: dbcreds
|
||||
existingSecret: "dbcreds"
|
||||
postgresqlUsername: lenpaste
|
||||
postgresqlDatabase: lenpaste
|
||||
|
||||
|
||||
@@ -43,7 +43,7 @@ service:
|
||||
|
||||
postgresql:
|
||||
enabled: true
|
||||
existingSecret: dbcreds
|
||||
existingSecret: "dbcreds"
|
||||
postgresqlUsername: midarr
|
||||
postgresqlDatabase: midarr
|
||||
|
||||
|
||||
@@ -256,7 +256,7 @@ persistence:
|
||||
|
||||
postgresql:
|
||||
enabled: true
|
||||
existingSecret: dbcreds
|
||||
existingSecret: "dbcreds"
|
||||
postgresqlUsername: netbox
|
||||
postgresqlDatabase: netbox
|
||||
|
||||
|
||||
@@ -18,7 +18,7 @@ env:
|
||||
key: SECRET_KEY_BASE
|
||||
DATABASE_URL:
|
||||
secretKeyRef:
|
||||
name: dbcreds
|
||||
name: cnpg-main-urls
|
||||
key: url-noql
|
||||
|
||||
persistence:
|
||||
|
||||
@@ -102,7 +102,7 @@ probes:
|
||||
|
||||
postgresql:
|
||||
enabled: true
|
||||
existingSecret: dbcreds
|
||||
existingSecret: "dbcreds"
|
||||
postgresqlUsername: plausible
|
||||
postgresqlDatabase: plausible
|
||||
|
||||
|
||||
@@ -96,7 +96,7 @@ persistence:
|
||||
|
||||
postgresql:
|
||||
enabled: true
|
||||
existingSecret: dbcreds
|
||||
existingSecret: "dbcreds"
|
||||
postgresqlUsername: plik
|
||||
postgresqlDatabase: plik
|
||||
|
||||
|
||||
@@ -20,15 +20,15 @@ env:
|
||||
CONFIG_PATH: "/app/config/"
|
||||
DB_DRIVER: "postgres"
|
||||
DB_PORT: "5432"
|
||||
DB_NAME: "{{ .Values.postgresql.postgresqlDatabase }}"
|
||||
DB_USER: "{{ .Values.postgresql.postgresqlUsername }}"
|
||||
DB_NAME: "{{ .Values.cnpg.database }}"
|
||||
DB_USER: "{{ .Values.cnpg.user }}"
|
||||
DB_HOST:
|
||||
secretKeyRef:
|
||||
name: dbcreds
|
||||
name: cnpg-main-urls
|
||||
key: plainhost
|
||||
DB_PASSWORD:
|
||||
secretKeyRef:
|
||||
name: dbcreds
|
||||
name: cnpg-main-urls
|
||||
key: postgresql-password
|
||||
API_SECRET:
|
||||
secretKeyRef:
|
||||
|
||||
@@ -14,15 +14,15 @@ podSecurityContext:
|
||||
env:
|
||||
DB_CONNECTION: pgsql
|
||||
DB_PORT: 5432
|
||||
DB_DATABASE: "{{ .Values.postgresql.postgresqlDatabase }}"
|
||||
DB_USERNAME: "{{ .Values.postgresql.postgresqlUsername }}"
|
||||
DB_DATABASE: "{{ .Values.cnpg.database }}"
|
||||
DB_USERNAME: "{{ .Values.cnpg.user }}"
|
||||
DB_HOST:
|
||||
secretKeyRef:
|
||||
name: dbcreds
|
||||
name: cnpg-main-urls
|
||||
key: plainhost
|
||||
DB_PASSWORD:
|
||||
secretKeyRef:
|
||||
name: dbcreds
|
||||
name: cnpg-main-urls
|
||||
key: postgresql-password
|
||||
|
||||
service:
|
||||
@@ -40,7 +40,7 @@ persistence:
|
||||
|
||||
postgresql:
|
||||
enabled: true
|
||||
existingSecret: dbcreds
|
||||
existingSecret: "dbcreds"
|
||||
postgresqlDatabase: speedtest_tracker
|
||||
postgresqlUsername: speedtest_tracker
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ env:
|
||||
DATABASE_TYPE: postgresql
|
||||
DATABASE_URL:
|
||||
secretKeyRef:
|
||||
name: dbcreds
|
||||
name: cnpg-main-urls
|
||||
key: url
|
||||
FORCE_SSL: '{{ ternary "1" "0" .Values.umami.force_ssl }}'
|
||||
HOSTNAME: "{{ .Values.umami.hostname }}"
|
||||
|
||||
Reference in New Issue
Block a user