Skip to content

Commit

Permalink
Merge branch 'main' into fix/database-setup
Browse files Browse the repository at this point in the history
  • Loading branch information
nlamirault authored Nov 21, 2024
2 parents ed92bd6 + 218b382 commit cabc804
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
2 changes: 1 addition & 1 deletion charts/keep/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: 0.1.41
description: Keep Helm Chart
type: application
icon: https://platform.keephq.dev/_next/image?url=%2Fkeep.png&w=48&q=75
appVersion: 0.29.0
appVersion: 0.29.2
deprecated: false
annotations:
app: keep
Expand Down
12 changes: 4 additions & 8 deletions charts/keep/templates/ingress-haproxy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,17 @@ metadata:
haproxy-ingress.github.io/timeout-server: "3600s"
haproxy-ingress.github.io/timeout-connect: "3600s"
haproxy-ingress.github.io/timeout-tunnel: "3600s"

# WebSocket support
haproxy-ingress.github.io/config-backend: |
timeout tunnel 3600s
option http-keep-alive
http-reuse safe
haproxy-ingress.github.io/ssl-redirect: "false"

# Backend configurations for path rewrites
# Backend configurations for path rewrites + # WebSocket support
haproxy-ingress.github.io/config-backend: |
acl path_v2 path_beg {{ .Values.global.ingress.backendPrefix }}/
acl path_ws path_beg {{ .Values.global.ingress.websocketPrefix }}/
http-request set-path %[path,regsub(^{{ .Values.global.ingress.backendPrefix }}/,/)] if path_v2
http-request set-path %[path,regsub(^{{ .Values.global.ingress.websocketPrefix }}/,/)] if path_ws
timeout tunnel 3600s
option http-keep-alive
http-reuse safe
spec:
ingressClassName: haproxy
Expand Down

0 comments on commit cabc804

Please sign in to comment.