From db20aaaa401fdc4adedf34d44064bc07c39c0f87 Mon Sep 17 00:00:00 2001 From: georglauterbach <44545919+georglauterbach@users.noreply.github.com> Date: Mon, 11 Mar 2024 11:56:38 +0100 Subject: [PATCH] improve PROXY protocol ports further Make sure that we are consistent and sound with "replace" and "add" when it comes to ports. --- docs/content/config/advanced/kubernetes.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/content/config/advanced/kubernetes.md b/docs/content/config/advanced/kubernetes.md index e60c0710..3d5c05f5 100644 --- a/docs/content/config/advanced/kubernetes.md +++ b/docs/content/config/advanced/kubernetes.md @@ -650,6 +650,9 @@ The major problem with exposing DMS to the outside world in Kubernetes is to [pr - name: smtp-proxy containerPort: 25 protocol: TCP + - name: imap-proxy + containerPort: 143 + protocol: TCP - name: subs-proxy containerPort: 465 protocol: TCP @@ -719,11 +722,12 @@ The major problem with exposing DMS to the outside world in Kubernetes is to [pr } ``` - Last but not least, the `ports` section in the `Deployment` needs to be changed: + Last but not least, the `ports` section in the `Deployment` needs to be changed. The following ports have to be added: ```yaml - name: smtp-proxy - containerPort: 10025 + # not 10025 in this example due to a possible clash with Amavis + containerPort: 12525 protocol: TCP - name: imap-proxy containerPort: 10143