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

This commit is contained in:
Stavros Kois
2022-03-06 20:08:58 +01:00
committed by GitHub
parent d3c54da74b
commit 61599da926
14 changed files with 15 additions and 15 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: "2021.09.02" appVersion: "2021.09.02"
description: DSMR-protocol reader, telegram data storage and energy consumption visualizer. description: DSMR-protocol reader, telegram data storage and energy consumption visualizer.
name: dsmr-reader name: dsmr-reader
version: 6.0.0 version: 6.0.1
kubeVersion: ">=1.16.0-0" kubeVersion: ">=1.16.0-0"
keywords: keywords:
- dsmr-reader - dsmr-reader
+1 -1
View File
@@ -10,7 +10,7 @@ image:
# @default -- See below # @default -- See below
env: env:
# -- Set the container timezone # -- Set the container timezone
DJANGO_TIME_ZONE: "{{ .Values.security.TZ }}" DJANGO_TIME_ZONE: "{{ .Values.TZ }}"
DJANGO_DATABASE_ENGINE: "django.db.backends.postgresql" DJANGO_DATABASE_ENGINE: "django.db.backends.postgresql"
DJANGO_DATABASE_NAME: "{{ .Values.postgresql.postgresqlDatabase }}" DJANGO_DATABASE_NAME: "{{ .Values.postgresql.postgresqlDatabase }}"
DJANGO_DATABASE_USER: "{{ .Values.postgresql.postgresqlUsername }}" DJANGO_DATABASE_USER: "{{ .Values.postgresql.postgresqlUsername }}"
+1 -1
View File
@@ -27,7 +27,7 @@ sources:
- https://www.linkace.org/docs/ - https://www.linkace.org/docs/
- https://github.com/linkace/linkace - https://github.com/linkace/linkace
- https://hub.docker.com/r/linkace/linkace - https://hub.docker.com/r/linkace/linkace
version: 2.0.0 version: 2.0.1
annotations: annotations:
truecharts.org/catagories: | truecharts.org/catagories: |
- media - media
+1 -1
View File
@@ -22,7 +22,7 @@ env:
SESSION_DRIVER: "redis" SESSION_DRIVER: "redis"
APP_NAME: "LinkAce" APP_NAME: "LinkAce"
APP_ENV: "production" APP_ENV: "production"
APP_TIMEZONE: "{{ .Values.security.TZ }}" APP_TIMEZONE: "{{ .Values.TZ }}"
# User Envs # User Envs
APP_URL: "http://localhost" APP_URL: "http://localhost"
APP_DEBUG: false APP_DEBUG: false
+1 -1
View File
@@ -31,7 +31,7 @@ sources:
- https://github.com/LycheeOrg/Lychee - https://github.com/LycheeOrg/Lychee
- https://hub.docker.com/r/lycheeorg/lychee - https://hub.docker.com/r/lycheeorg/lychee
type: application type: application
version: 11.0.0 version: 11.0.1
annotations: annotations:
truecharts.org/catagories: | truecharts.org/catagories: |
- media - media
+2 -2
View File
@@ -20,8 +20,8 @@ service:
env: env:
# Internal Envs # Internal Envs
TIMEZONE: "{{ .Values.security.TZ }}" TIMEZONE: "{{ .Values.TZ }}"
PHP_TZ: "{{ .Values.security.TZ }}" PHP_TZ: "{{ .Values.TZ }}"
DB_CONNECTION: "pgsql" DB_CONNECTION: "pgsql"
DB_PORT: "5432" DB_PORT: "5432"
DB_DATABASE: "{{ .Values.postgresql.postgresqlDatabase }}" DB_DATABASE: "{{ .Values.postgresql.postgresqlDatabase }}"
+1 -1
View File
@@ -28,7 +28,7 @@ sources:
- https://docs.n8n.io/ - https://docs.n8n.io/
- https://github.com/n8n-io/n8n - https://github.com/n8n-io/n8n
- https://hub.docker.com/r/n8nio/n8n - https://hub.docker.com/r/n8nio/n8n
version: 2.0.0 version: 2.0.1
annotations: annotations:
truecharts.org/catagories: | truecharts.org/catagories: |
- media - media
+1 -1
View File
@@ -12,7 +12,7 @@ podSecurityContext:
fsGroup: 1000 fsGroup: 1000
env: env:
GENERIC_TIMEZONE: "{{ .Values.security.TZ }}" GENERIC_TIMEZONE: "{{ .Values.TZ }}"
DB_TYPE: "postgresdb" DB_TYPE: "postgresdb"
DB_POSTGRESDB_USER: "{{ .Values.postgresql.postgresqlUsername }}" DB_POSTGRESDB_USER: "{{ .Values.postgresql.postgresqlUsername }}"
DB_POSTGRESDB_DATABASE: "{{ .Values.postgresql.postgresqlDatabase }}" DB_POSTGRESDB_DATABASE: "{{ .Values.postgresql.postgresqlDatabase }}"
+1 -1
View File
@@ -1,7 +1,7 @@
apiVersion: v2 apiVersion: v2
kubeVersion: ">=1.16.0-0" kubeVersion: ">=1.16.0-0"
name: paperless-ng name: paperless-ng
version: 2.0.0 version: 2.0.1
appVersion: "1.5.0" appVersion: "1.5.0"
description: Paperless-ng is an application by Daniel Quinn and contributors that indexes your scanned documents. description: Paperless-ng is an application by Daniel Quinn and contributors that indexes your scanned documents.
type: application type: application
+1 -1
View File
@@ -22,7 +22,7 @@ env:
PAPERLESS_MEDIA_ROOT: "/media/" PAPERLESS_MEDIA_ROOT: "/media/"
USERMAP_UID: "{{ .Values.security.PUID }}" USERMAP_UID: "{{ .Values.security.PUID }}"
USERMAP_GID: "{{ .Values.podSecurityContext.fsGroup }}" USERMAP_GID: "{{ .Values.podSecurityContext.fsGroup }}"
PAPERLESS_TIME_ZONE: "{{ .Values.security.TZ }}" PAPERLESS_TIME_ZONE: "{{ .Values.TZ }}"
PAPERLESS_DBNAME: "{{ .Values.postgresql.postgresqlDatabase }}" PAPERLESS_DBNAME: "{{ .Values.postgresql.postgresqlDatabase }}"
PAPERLESS_DBUSER: "{{ .Values.postgresql.postgresqlUsername }}" PAPERLESS_DBUSER: "{{ .Values.postgresql.postgresqlUsername }}"
PAPERLESS_DBPORT: "5432" PAPERLESS_DBPORT: "5432"
+1 -1
View File
@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: "1.0.8" 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. 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 name: recipes
version: 6.0.0 version: 6.0.1
kubeVersion: ">=1.16.0-0" kubeVersion: ">=1.16.0-0"
keywords: keywords:
- recipes - recipes
+1 -1
View File
@@ -29,7 +29,7 @@ env:
FRACTION_PREF_DEFAULT: 0 FRACTION_PREF_DEFAULT: 0
COMMENT_PREF_DEFAULT: 1 COMMENT_PREF_DEFAULT: 1
SHOPPING_MIN_AUTOSYNC_INTERVAL: 5 SHOPPING_MIN_AUTOSYNC_INTERVAL: 5
TIMEZONE: "{{ .Values.security.TZ }}" TIMEZONE: "{{ .Values.TZ }}"
DB_ENGINE: "django.db.backends.postgresql" DB_ENGINE: "django.db.backends.postgresql"
POSTGRES_DB: "{{ .Values.postgresql.postgresqlDatabase }}" POSTGRES_DB: "{{ .Values.postgresql.postgresqlDatabase }}"
POSTGRES_USER: "{{ .Values.postgresql.postgresqlUsername }}" POSTGRES_USER: "{{ .Values.postgresql.postgresqlUsername }}"
+1 -1
View File
@@ -28,7 +28,7 @@ sources:
- https://github.com/WeblateOrg/docker - https://github.com/WeblateOrg/docker
- https://github.com/WeblateOrg/docker-compose - https://github.com/WeblateOrg/docker-compose
- https://docs.weblate.org/en/latest/ - https://docs.weblate.org/en/latest/
version: 2.0.0 version: 2.0.1
annotations: annotations:
truecharts.org/catagories: | truecharts.org/catagories: |
- media - media
+1 -1
View File
@@ -12,7 +12,7 @@ podSecurityContext:
fsGroup: 1000 fsGroup: 1000
env: env:
WEBLATE_TIME_ZONE: "{{ .Values.security.TZ }}" WEBLATE_TIME_ZONE: "{{ .Values.TZ }}"
POSTGRES_USER: "{{ .Values.postgresql.postgresqlUsername }}" POSTGRES_USER: "{{ .Values.postgresql.postgresqlUsername }}"
POSTGRES_DATABASE: "{{ .Values.postgresql.postgresqlDatabase }}" POSTGRES_DATABASE: "{{ .Values.postgresql.postgresqlDatabase }}"
POSTGRES_PORT: 5432 POSTGRES_PORT: 5432