add leftover Dovecot ports for PROXY protocol
This commit is contained in:
parent
9c713d6225
commit
b4799e8465
|
@ -706,6 +706,11 @@ The major problem with exposing DMS to the outside world in Kubernetes is to [pr
|
||||||
haproxy_trusted_networks = <YOUR POD CIDR>
|
haproxy_trusted_networks = <YOUR POD CIDR>
|
||||||
|
|
||||||
service imap-login {
|
service imap-login {
|
||||||
|
inet_listener imap-proxied {
|
||||||
|
haproxy = yes
|
||||||
|
port = 10143
|
||||||
|
}
|
||||||
|
|
||||||
inet_listener imaps-proxied {
|
inet_listener imaps-proxied {
|
||||||
haproxy = yes
|
haproxy = yes
|
||||||
port = 10993
|
port = 10993
|
||||||
|
@ -714,12 +719,15 @@ 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 extended:
|
Last but not least, the `ports` section in the `Deployment` needs to be changed:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
- name: smtp-proxy
|
- name: smtp-proxy
|
||||||
containerPort: 10025
|
containerPort: 10025
|
||||||
protocol: TCP
|
protocol: TCP
|
||||||
|
- name: imap-proxy
|
||||||
|
containerPort: 10143
|
||||||
|
protocol: TCP
|
||||||
- name: subs-proxy
|
- name: subs-proxy
|
||||||
containerPort: 10465
|
containerPort: 10465
|
||||||
protocol: TCP
|
protocol: TCP
|
||||||
|
|
Loading…
Reference in New Issue