mirror of
https://github.com/rtomik/helm-charts.git
synced 2026-04-08 11:10:50 +00:00
added realtime options
This commit is contained in:
@ -2,8 +2,8 @@ apiVersion: v2
|
|||||||
name: donetick
|
name: donetick
|
||||||
description: Donetick helm chart for Kubernetes
|
description: Donetick helm chart for Kubernetes
|
||||||
type: application
|
type: application
|
||||||
version: 1.0.1
|
version: 1.0.2
|
||||||
appVersion: "v0.1.38"
|
appVersion: "v0.1.53"
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: Richard Tomik
|
- name: Richard Tomik
|
||||||
email: no@m.com
|
email: no@m.com
|
||||||
|
|||||||
@ -75,3 +75,4 @@ data:
|
|||||||
user_info_url: {{ .Values.config.oauth2.user_info_url | default "" | quote }}
|
user_info_url: {{ .Values.config.oauth2.user_info_url | default "" | quote }}
|
||||||
redirect_url: {{ .Values.config.oauth2.redirect_url | default "" | quote }}
|
redirect_url: {{ .Values.config.oauth2.redirect_url | default "" | quote }}
|
||||||
name: {{ .Values.config.oauth2.name | default "" | quote }}
|
name: {{ .Values.config.oauth2.name | default "" | quote }}
|
||||||
|
realtime: {{ .Values.config.realtime | toYaml | nindent 6 }}
|
||||||
|
|||||||
@ -5,7 +5,7 @@ fullnameOverride: ""
|
|||||||
## Image settings
|
## Image settings
|
||||||
image:
|
image:
|
||||||
repository: donetick/donetick
|
repository: donetick/donetick
|
||||||
tag: "v0.1.38"
|
tag: "v0.1.53"
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
## Deployment settings
|
## Deployment settings
|
||||||
@ -208,3 +208,19 @@ config:
|
|||||||
user_info_url: ""
|
user_info_url: ""
|
||||||
redirect_url: ""
|
redirect_url: ""
|
||||||
name: ""
|
name: ""
|
||||||
|
|
||||||
|
# Real-time configuration
|
||||||
|
realtime:
|
||||||
|
enabled: true
|
||||||
|
sse_enabled: true
|
||||||
|
heartbeat_interval: 60s
|
||||||
|
connection_timeout: 120s
|
||||||
|
max_connections: 1000
|
||||||
|
max_connections_per_user: 5
|
||||||
|
event_queue_size: 2048
|
||||||
|
cleanup_interval: 2m
|
||||||
|
stale_threshold: 5m
|
||||||
|
enable_compression: true
|
||||||
|
enable_stats: true
|
||||||
|
allowed_origins:
|
||||||
|
- "*"
|
||||||
|
|||||||
Reference in New Issue
Block a user