This commit is contained in:
Jonas Forsberg 2024-10-27 10:58:44 +01:00
parent f8471dcc90
commit e824518a4a
2 changed files with 17 additions and 5 deletions

View File

@ -15,4 +15,4 @@ maintainers:
dependencies:
- name: lib
repository: "oci://repo.rre.nu/helm"
version: 1.0.0
version: 1.0.2

View File

@ -5,7 +5,7 @@ gotify:
keepaliveperiodseconds: 0 # 0 = use Go default (15s); -1 = disable keepalive; set the interval in which keepalive packets will be sent. Only change this value if you know what you are doing.
listenaddr: "" # the address to bind on, leave empty to bind on all addresses. Prefix with "unix:" to create a unix socket. Example: "unix:/tmp/gotify.sock".
port: 80 # the port the HTTP server will listen on
ssl:
enabled: false # if https should be enabled
redirecttohttps: true # redirect to https if site is accessed by http
@ -26,7 +26,7 @@ gotify:
# - 127.0.0.1
# - 192.168.178.0/24
# - ::1
cors: # Sets cors headers only when needed and provides support for multiple allowed origins. Overrides Access-Control-* Headers in response headers.
alloworigins:
# - ".+.example.com"
@ -37,7 +37,7 @@ gotify:
allowheaders:
# - "Authorization"
# - "content-type"
stream:
pingperiodseconds: 45 # the interval in which websocket pings will be sent. Only change this value if you know what you are doing.
allowedorigins: # allowed origins for websocket connections (same origin is always allowed, default only same origin)
@ -56,11 +56,13 @@ gotify:
service: # services that should be created
main:
enabled: false
enabled: true
type: ClusterIP
annotations: {}
labels: {}
ports:
http:
port: 80
ingress:
enabled: false
@ -77,3 +79,13 @@ ingress:
paths:
- path: /
pathType: ImplementationSpecific
livenessProbe:
httpGet:
path: /
port: http
readinessProbe:
httpGet:
path: /
port: http