Add new config options in helm chart (#147)

This commit is contained in:
Hakan Shehu
2025-07-21 13:24:48 +02:00
committed by GitHub
parent d9f67a3154
commit 78dbe71c0f
2 changed files with 22 additions and 2 deletions

View File

@@ -134,6 +134,12 @@ Colanode Server Environment Variables
- name: SERVER_MODE
value: {{ .Values.colanode.config.SERVER_MODE | quote }}
# ───────────────────────────────────────────────────────────────
# Logging Configuration
# ───────────────────────────────────────────────────────────────
- name: LOGGING_LEVEL
value: {{ .Values.colanode.config.LOGGING_LEVEL | quote }}
# ───────────────────────────────────────────────────────────────
# Account Configuration
# ───────────────────────────────────────────────────────────────
@@ -144,6 +150,14 @@ Colanode Server Environment Variables
- name: ACCOUNT_ALLOW_GOOGLE_LOGIN
value: {{ .Values.colanode.config.ACCOUNT_ALLOW_GOOGLE_LOGIN | quote }}
# ───────────────────────────────────────────────────────────────
# Workspace Configuration
# ───────────────────────────────────────────────────────────────
- name: WORKSPACE_STORAGE_LIMIT
value: {{ .Values.colanode.config.WORKSPACE_STORAGE_LIMIT | quote }}
- name: WORKSPACE_MAX_FILE_SIZE
value: {{ .Values.colanode.config.WORKSPACE_MAX_FILE_SIZE | quote }}
# ───────────────────────────────────────────────────────────────
# User Configuration
# ───────────────────────────────────────────────────────────────

View File

@@ -80,14 +80,20 @@ colanode:
SERVER_AVATAR: ''
SERVER_MODE: 'standalone'
# Debug logging (uncomment to enable verbose logs)
DEBUG: 'colanode:*'
# Logging Config
# Possible values: 'trace', 'debug', 'info', 'warn', 'error', 'fatal', 'silent'
# Defalt is 'info'
# LOGGING_LEVEL=info
# Account settings
ACCOUNT_VERIFICATION_TYPE: 'automatic'
ACCOUNT_OTP_TIMEOUT: '600' # in seconds
ACCOUNT_ALLOW_GOOGLE_LOGIN: 'false'
# Workspace limits. Leave empty for no limits
# WORKSPACE_STORAGE_LIMIT: '10737418240' # 10 GB
# WORKSPACE_MAX_FILE_SIZE: '104857600' # 100 MB
# User limits
USER_STORAGE_LIMIT: '10737418240' # 10 GB
USER_MAX_FILE_SIZE: '104857600' # 100 MB