fix(apps): Correctly map TZ variable (#2044)

This commit is contained in:
Stavros Kois
2022-03-06 21:08:58 +02:00
committed by GitHub
parent d3c54da74b
commit 61599da926
14 changed files with 15 additions and 15 deletions

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: "2021.09.02"
description: DSMR-protocol reader, telegram data storage and energy consumption visualizer.
name: dsmr-reader
version: 6.0.0
version: 6.0.1
kubeVersion: ">=1.16.0-0"
keywords:
- dsmr-reader

View File

@@ -10,7 +10,7 @@ image:
# @default -- See below
env:
# -- Set the container timezone
DJANGO_TIME_ZONE: "{{ .Values.security.TZ }}"
DJANGO_TIME_ZONE: "{{ .Values.TZ }}"
DJANGO_DATABASE_ENGINE: "django.db.backends.postgresql"
DJANGO_DATABASE_NAME: "{{ .Values.postgresql.postgresqlDatabase }}"
DJANGO_DATABASE_USER: "{{ .Values.postgresql.postgresqlUsername }}"

View File

@@ -27,7 +27,7 @@ sources:
- https://www.linkace.org/docs/
- https://github.com/linkace/linkace
- https://hub.docker.com/r/linkace/linkace
version: 2.0.0
version: 2.0.1
annotations:
truecharts.org/catagories: |
- media

View File

@@ -22,7 +22,7 @@ env:
SESSION_DRIVER: "redis"
APP_NAME: "LinkAce"
APP_ENV: "production"
APP_TIMEZONE: "{{ .Values.security.TZ }}"
APP_TIMEZONE: "{{ .Values.TZ }}"
# User Envs
APP_URL: "http://localhost"
APP_DEBUG: false

View File

@@ -31,7 +31,7 @@ sources:
- https://github.com/LycheeOrg/Lychee
- https://hub.docker.com/r/lycheeorg/lychee
type: application
version: 11.0.0
version: 11.0.1
annotations:
truecharts.org/catagories: |
- media

View File

@@ -20,8 +20,8 @@ service:
env:
# Internal Envs
TIMEZONE: "{{ .Values.security.TZ }}"
PHP_TZ: "{{ .Values.security.TZ }}"
TIMEZONE: "{{ .Values.TZ }}"
PHP_TZ: "{{ .Values.TZ }}"
DB_CONNECTION: "pgsql"
DB_PORT: "5432"
DB_DATABASE: "{{ .Values.postgresql.postgresqlDatabase }}"

View File

@@ -28,7 +28,7 @@ sources:
- https://docs.n8n.io/
- https://github.com/n8n-io/n8n
- https://hub.docker.com/r/n8nio/n8n
version: 2.0.0
version: 2.0.1
annotations:
truecharts.org/catagories: |
- media

View File

@@ -12,7 +12,7 @@ podSecurityContext:
fsGroup: 1000
env:
GENERIC_TIMEZONE: "{{ .Values.security.TZ }}"
GENERIC_TIMEZONE: "{{ .Values.TZ }}"
DB_TYPE: "postgresdb"
DB_POSTGRESDB_USER: "{{ .Values.postgresql.postgresqlUsername }}"
DB_POSTGRESDB_DATABASE: "{{ .Values.postgresql.postgresqlDatabase }}"

View File

@@ -1,7 +1,7 @@
apiVersion: v2
kubeVersion: ">=1.16.0-0"
name: paperless-ng
version: 2.0.0
version: 2.0.1
appVersion: "1.5.0"
description: Paperless-ng is an application by Daniel Quinn and contributors that indexes your scanned documents.
type: application

View File

@@ -22,7 +22,7 @@ env:
PAPERLESS_MEDIA_ROOT: "/media/"
USERMAP_UID: "{{ .Values.security.PUID }}"
USERMAP_GID: "{{ .Values.podSecurityContext.fsGroup }}"
PAPERLESS_TIME_ZONE: "{{ .Values.security.TZ }}"
PAPERLESS_TIME_ZONE: "{{ .Values.TZ }}"
PAPERLESS_DBNAME: "{{ .Values.postgresql.postgresqlDatabase }}"
PAPERLESS_DBUSER: "{{ .Values.postgresql.postgresqlUsername }}"
PAPERLESS_DBPORT: "5432"

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: "1.0.8"
description: Recipes is a Django application to manage, tag and search recipes using either built in models or external storage providers hosting PDF's, Images or other files.
name: recipes
version: 6.0.0
version: 6.0.1
kubeVersion: ">=1.16.0-0"
keywords:
- recipes

View File

@@ -29,7 +29,7 @@ env:
FRACTION_PREF_DEFAULT: 0
COMMENT_PREF_DEFAULT: 1
SHOPPING_MIN_AUTOSYNC_INTERVAL: 5
TIMEZONE: "{{ .Values.security.TZ }}"
TIMEZONE: "{{ .Values.TZ }}"
DB_ENGINE: "django.db.backends.postgresql"
POSTGRES_DB: "{{ .Values.postgresql.postgresqlDatabase }}"
POSTGRES_USER: "{{ .Values.postgresql.postgresqlUsername }}"

View File

@@ -28,7 +28,7 @@ sources:
- https://github.com/WeblateOrg/docker
- https://github.com/WeblateOrg/docker-compose
- https://docs.weblate.org/en/latest/
version: 2.0.0
version: 2.0.1
annotations:
truecharts.org/catagories: |
- media

View File

@@ -12,7 +12,7 @@ podSecurityContext:
fsGroup: 1000
env:
WEBLATE_TIME_ZONE: "{{ .Values.security.TZ }}"
WEBLATE_TIME_ZONE: "{{ .Values.TZ }}"
POSTGRES_USER: "{{ .Values.postgresql.postgresqlUsername }}"
POSTGRES_DATABASE: "{{ .Values.postgresql.postgresqlDatabase }}"
POSTGRES_PORT: 5432