mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-23 15:39:02 +00:00
[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:
parent
319503daaf
commit
9495b968cd
@ -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
|
||||
|
@ -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: ""
|
||||
|
Loading…
Reference in New Issue
Block a user