Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion zammad/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: zammad
version: 16.0.9
version: 16.0.10
appVersion: 7.0.1-0000
description: Zammad is a web based open source helpdesk/customer support system with many features to manage customer communication via several channels like telephone, facebook, twitter, chat and e-mails.
home: https://zammad.org
Expand Down
1 change: 1 addition & 0 deletions zammad/templates/service-nginx.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ spec:
targetPort: http
protocol: TCP
name: http
appProtocol: {{ .Values.service.appProtocol }}
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's what I thought at first as well, but I saw the ingress forwards everything to the zammad-nginx service. The httproute I made follows the same implementation as the ingress, so the only way the gateway can know about the websockets is here.

selector:
{{- include "zammad.selectorLabels" . | nindent 4 }}
app.kubernetes.io/component: zammad-nginx
1 change: 1 addition & 0 deletions zammad/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ image:
service:
type: ClusterIP
port: 8080
appProtocol: kubernetes.io/ws
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we need to have that configurable?

@mgruner
I guess wss (WebSocket Secure) is not available or is this configurable somehow?

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What do you mean @monotek? The railsserver / web socket server does not handle any TLS termination. This usually happens in the proxy before, e.g. nginx-proxy-manager in Docker stacks.

Copy link
Copy Markdown
Member

@monotek monotek Mar 31, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I mean it might only make sense to have this configurabel if you also could set:

appProtocol: kubernetes.io/wss


ingress:
enabled: false
Expand Down
Loading