mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-23 15:39:02 +00:00
[teslamate] Update Helm chart postgresql to v11 (#1665)
* [teslamate] 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
c28612368c
commit
ff8a6b3237
@ -3,7 +3,7 @@ apiVersion: v2
|
|||||||
appVersion: v1.23.4
|
appVersion: v1.23.4
|
||||||
description: "A self-hosted data logger for your Tesla \U0001F698"
|
description: "A self-hosted data logger for your Tesla \U0001F698"
|
||||||
name: teslamate
|
name: teslamate
|
||||||
version: 6.7.2
|
version: 7.0.0
|
||||||
keywords:
|
keywords:
|
||||||
- teslamate
|
- teslamate
|
||||||
- tesla
|
- tesla
|
||||||
@ -17,7 +17,7 @@ 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
|
||||||
maintainers:
|
maintainers:
|
||||||
@ -26,4 +26,4 @@ maintainers:
|
|||||||
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
|
||||||
|
@ -21,11 +21,11 @@ env:
|
|||||||
# -- Postgres database hostname
|
# -- Postgres database hostname
|
||||||
DATABASE_HOST: '{{ include "common.names.fullname" .}}-postgresql'
|
DATABASE_HOST: '{{ include "common.names.fullname" .}}-postgresql'
|
||||||
# -- Postgres database user name
|
# -- Postgres database user name
|
||||||
DATABASE_USER: "{{ .Values.postgresql.postgresqlUsername }}"
|
DATABASE_USER: postgres
|
||||||
# -- Postgres database password
|
# -- Postgres database password
|
||||||
DATABASE_PASS: "{{ .Values.postgresql.postgresqlPassword }}"
|
DATABASE_PASS: "{{ .Values.postgresql.auth.postgresPassword }}"
|
||||||
# -- Postgres database password
|
# -- Postgres database password
|
||||||
DATABASE_NAME: "{{ .Values.postgresql.postgresqlDatabase }}"
|
DATABASE_NAME: "{{ .Values.postgresql.auth.database }}"
|
||||||
# -- Disables the MQTT feature if `true`
|
# -- Disables the MQTT feature if `true`
|
||||||
DISABLE_MQTT: "false"
|
DISABLE_MQTT: "false"
|
||||||
|
|
||||||
@ -55,9 +55,9 @@ persistence:
|
|||||||
# @default -- See values.yaml
|
# @default -- See values.yaml
|
||||||
postgresql:
|
postgresql:
|
||||||
enabled: false
|
enabled: false
|
||||||
postgresqlUsername: postgres
|
auth:
|
||||||
postgresqlPassword: teslamate-pass
|
postgresPassword: teslamate-pass
|
||||||
postgresqlDatabase: teslamate
|
database: teslamate
|
||||||
persistence:
|
persistence:
|
||||||
enabled: false
|
enabled: false
|
||||||
# storageClass: ""
|
# storageClass: ""
|
||||||
|
Loading…
Reference in New Issue
Block a user