From e824518a4a79d4cb27b6bafea30dd673189de15b Mon Sep 17 00:00:00 2001 From: Jonas Forsberg Date: Sun, 27 Oct 2024 10:58:44 +0100 Subject: [PATCH] . --- charts/gotify/Chart.yaml | 2 +- charts/gotify/values.yaml | 20 ++++++++++++++++---- 2 files changed, 17 insertions(+), 5 deletions(-) diff --git a/charts/gotify/Chart.yaml b/charts/gotify/Chart.yaml index fac333e..0f4660d 100644 --- a/charts/gotify/Chart.yaml +++ b/charts/gotify/Chart.yaml @@ -15,4 +15,4 @@ maintainers: dependencies: - name: lib repository: "oci://repo.rre.nu/helm" - version: 1.0.0 + version: 1.0.2 diff --git a/charts/gotify/values.yaml b/charts/gotify/values.yaml index 222b10c..fa961f6 100644 --- a/charts/gotify/values.yaml +++ b/charts/gotify/values.yaml @@ -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