mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-23 23:49:12 +00:00
[tt-rss] Update Helm chart postgresql to v11 (#1666)
* [tt-rss] 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
72dbc21972
commit
802a863deb
@ -3,7 +3,7 @@ apiVersion: v2
|
|||||||
appVersion: v1.8723.0
|
appVersion: v1.8723.0
|
||||||
description: Tiny Tiny RSS is a free and open source web-based news feed (RSS/Atom) reader and aggregator
|
description: Tiny Tiny RSS is a free and open source web-based news feed (RSS/Atom) reader and aggregator
|
||||||
name: tt-rss
|
name: tt-rss
|
||||||
version: 4.7.2
|
version: 5.0.0
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- tt-rss
|
- tt-rss
|
||||||
@ -19,10 +19,12 @@ 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
|
||||||
|
- kind: changed
|
||||||
|
description: Changed the default user for the postgresql database to `tt-rss`
|
||||||
|
@ -7,15 +7,15 @@
|
|||||||
{{- end -}}
|
{{- end -}}
|
||||||
{{/* if TTRSS_DB_USER is not set use internal postgres chart */}}
|
{{/* if TTRSS_DB_USER is not set use internal postgres chart */}}
|
||||||
{{- if eq .Values.env.TTRSS_DB_USER "" -}}
|
{{- if eq .Values.env.TTRSS_DB_USER "" -}}
|
||||||
{{- $_ := set .Values.env "TTRSS_DB_USER" .Values.postgresql.postgresqlUsername -}}
|
{{- $_ := set .Values.env "TTRSS_DB_USER" .Values.postgresql.auth.username -}}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
{{/* if TTRSS_DB_USER is not set use internal postgres chart */}}
|
{{/* if TTRSS_DB_USER is not set use internal postgres chart */}}
|
||||||
{{- if eq .Values.env.TTRSS_DB_PASS "" -}}
|
{{- if eq .Values.env.TTRSS_DB_PASS "" -}}
|
||||||
{{- $_ := set .Values.env "TTRSS_DB_PASS" .Values.postgresql.postgresqlPassword -}}
|
{{- $_ := set .Values.env "TTRSS_DB_PASS" .Values.postgresql.auth.password -}}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
{{/* if TTRSS_DB_USER is not set use internal postgres chart */}}
|
{{/* if TTRSS_DB_USER is not set use internal postgres chart */}}
|
||||||
{{- if eq .Values.env.TTRSS_DB_NAME "" -}}
|
{{- if eq .Values.env.TTRSS_DB_NAME "" -}}
|
||||||
{{- $_ := set .Values.env "TTRSS_DB_NAME" .Values.postgresql.postgresqlDatabase -}}
|
{{- $_ := set .Values.env "TTRSS_DB_NAME" .Values.postgresql.auth.database -}}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
||||||
{{/* Render the templates */}}
|
{{/* Render the templates */}}
|
||||||
|
@ -25,13 +25,13 @@ env:
|
|||||||
# -- Postgres database port.
|
# -- Postgres database port.
|
||||||
TTRSS_DB_PORT: "5432"
|
TTRSS_DB_PORT: "5432"
|
||||||
# -- Postgres database user name
|
# -- Postgres database user name
|
||||||
# @default -- postgresql.postgresqlUsername value
|
# @default -- postgresql.auth.username value
|
||||||
TTRSS_DB_USER: ""
|
TTRSS_DB_USER: ""
|
||||||
# -- Postgres database password
|
# -- Postgres database password
|
||||||
# @default -- postgresql.postgresqlPassword value
|
# @default -- postgresql.auth.password value
|
||||||
TTRSS_DB_PASS: ""
|
TTRSS_DB_PASS: ""
|
||||||
# -- Postgres database password
|
# -- Postgres database password
|
||||||
# @default -- postgresql.postgresqlDatabase value
|
# @default -- postgresql.auth.database value
|
||||||
TTRSS_DB_NAME: ""
|
TTRSS_DB_NAME: ""
|
||||||
|
|
||||||
# -- Configure the services for the chart here.
|
# -- Configure the services for the chart here.
|
||||||
@ -53,12 +53,13 @@ ingress:
|
|||||||
postgresql:
|
postgresql:
|
||||||
# -- By default uses an internal postgress. Dissable if you use your own Postgres.
|
# -- By default uses an internal postgress. Dissable if you use your own Postgres.
|
||||||
enabled: true
|
enabled: true
|
||||||
# -- Postgres database user name
|
auth:
|
||||||
postgresqlUsername: postgres
|
# -- Postgres database user name
|
||||||
# -- Postgres database password
|
username: tt-rss
|
||||||
postgresqlPassword: "changeme"
|
# -- Postgres database password
|
||||||
# -- Postgres database password
|
password: "changeme"
|
||||||
postgresqlDatabase: tt-rss
|
# -- Postgres database
|
||||||
|
database: tt-rss
|
||||||
persistence:
|
persistence:
|
||||||
# -- if database is stored to a PVC. Set to true when you are done testing.
|
# -- if database is stored to a PVC. Set to true when you are done testing.
|
||||||
enabled: false
|
enabled: false
|
||||||
|
Loading…
Reference in New Issue
Block a user