mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-23 23:49:12 +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
|
appVersion: v0.90.74
|
||||||
description: Status page for monitoring your websites and applications
|
description: Status page for monitoring your websites and applications
|
||||||
name: statping
|
name: statping
|
||||||
version: 5.7.2
|
version: 6.0.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- statping
|
- statping
|
||||||
@ -23,10 +23,10 @@ dependencies:
|
|||||||
repository: https://library-charts.k8s-at-home.com
|
repository: https://library-charts.k8s-at-home.com
|
||||||
version: 4.4.2
|
version: 4.4.2
|
||||||
- name: postgresql
|
- name: postgresql
|
||||||
version: 10.16.2
|
version: 11.6.12
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
condition: postgresql.enabled
|
condition: postgresql.enabled
|
||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |-
|
artifacthub.io/changes: |-
|
||||||
- kind: changed
|
- 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`)
|
# -- Enable ssl_mode for postgres (To enable use `require`)
|
||||||
POSTGRES_SSLMODE: "disable"
|
POSTGRES_SSLMODE: "disable"
|
||||||
# -- Postgres database user name
|
# -- Postgres database user name
|
||||||
DB_USER: "{{ .Values.postgresql.postgresqlUsername }}"
|
DB_USER: "postgres"
|
||||||
# -- Postgres database password
|
# -- Postgres database password
|
||||||
DB_PASS: "{{ .Values.postgresql.postgresqlPassword }}"
|
DB_PASS: "{{ .Values.postgresql.auth.postgresPassword }}"
|
||||||
# -- Postgres database name
|
# -- Postgres database name
|
||||||
DB_DATABASE: "{{ .Values.postgresql.postgresqlDatabase }}"
|
DB_DATABASE: "{{ .Values.postgresql.auth.database }}"
|
||||||
# -- Use CDN for static context from third-parties
|
# -- Use CDN for static context from third-parties
|
||||||
USE_CDN: false
|
USE_CDN: false
|
||||||
# -- Disable logs from appearing and writing to disk
|
# -- Disable logs from appearing and writing to disk
|
||||||
@ -74,9 +74,9 @@ persistence:
|
|||||||
# @default -- See values.yaml
|
# @default -- See values.yaml
|
||||||
postgresql:
|
postgresql:
|
||||||
enabled: true
|
enabled: true
|
||||||
postgresqlUsername: postgres
|
auth:
|
||||||
postgresqlPassword: "changeme"
|
postgresPassword: "changeme"
|
||||||
postgresqlDatabase: postgres
|
database: postgres
|
||||||
persistence:
|
persistence:
|
||||||
enabled: false
|
enabled: false
|
||||||
# storageClass: ""
|
# storageClass: ""
|
||||||
|
Loading…
Reference in New Issue
Block a user