[statping] Update Helm chart postgresql to v11 (#1663)

* [statping] Update Helm chart postgresql to v11

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <renovate[bot]@users.noreply.github.com>
This commit is contained in:
renovate[bot] 2022-07-01 15:10:54 +02:00 committed by GitHub
parent 319503daaf
commit 9495b968cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 9 deletions

View File

@ -3,7 +3,7 @@ apiVersion: v2
appVersion: v0.90.74
description: Status page for monitoring your websites and applications
name: statping
version: 5.7.2
version: 6.0.0
kubeVersion: ">=1.16.0-0"
keywords:
- statping
@ -23,10 +23,10 @@ dependencies:
repository: https://library-charts.k8s-at-home.com
version: 4.4.2
- name: postgresql
version: 10.16.2
version: 11.6.12
repository: https://charts.bitnami.com/bitnami
condition: postgresql.enabled
annotations:
artifacthub.io/changes: |-
- kind: changed
description: Upgraded `common` chart dependency to version 4.4.2
description: Upgraded `postgresql` chart dependency to version 11.6.12

View File

@ -32,11 +32,11 @@ env:
# -- Enable ssl_mode for postgres (To enable use `require`)
POSTGRES_SSLMODE: "disable"
# -- Postgres database user name
DB_USER: "{{ .Values.postgresql.postgresqlUsername }}"
DB_USER: "postgres"
# -- Postgres database password
DB_PASS: "{{ .Values.postgresql.postgresqlPassword }}"
DB_PASS: "{{ .Values.postgresql.auth.postgresPassword }}"
# -- Postgres database name
DB_DATABASE: "{{ .Values.postgresql.postgresqlDatabase }}"
DB_DATABASE: "{{ .Values.postgresql.auth.database }}"
# -- Use CDN for static context from third-parties
USE_CDN: false
# -- Disable logs from appearing and writing to disk
@ -74,9 +74,9 @@ persistence:
# @default -- See values.yaml
postgresql:
enabled: true
postgresqlUsername: postgres
postgresqlPassword: "changeme"
postgresqlDatabase: postgres
auth:
postgresPassword: "changeme"
database: postgres
persistence:
enabled: false
# storageClass: ""