Skip to content

Commit 367cf68

Browse files
committed
Bump version and also change the toggle based on feedback
1 parent 143fefa commit 367cf68

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

charts/docker-mailserver/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
appVersion: "14.0.0"
33
description: A fullstack but simple mailserver (smtp, imap, antispam, antivirus, ssl...) using Docker.
44
name: docker-mailserver
5-
version: 4.1.2
5+
version: 4.1.3
66
sources:
77
- https://github.com/docker-mailserver/docker-mailserver-helm
88
maintainers:

charts/docker-mailserver/templates/service.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ metadata:
2626
spec:
2727
## If a load balancer is being used, ensure that the newer type of LB that passes along IP information is used
2828
## rather than the legacy one.
29-
externalTrafficPolicy: {{ default "Local" .Values.service.externalTrafficPolicy }}
29+
externalTrafficPolicy: {{ .Values.service.externalTrafficPolicy }}
3030
selector:
3131
app.kubernetes.io/name: {{ template "dockermailserver.fullname" . }}
3232
release: "{{ .Release.Name }}"

charts/docker-mailserver/values.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -301,8 +301,9 @@ service:
301301
## Manually overwrite the externalTrafficPolicy. One of:
302302
## - Local
303303
## - Cluster
304-
## Set it to "Local" when used with type "LoadBalancer", unless you have a good reason not to.
305-
# externalTrafficPolicy: Local
304+
## Set it to "Local" when used with type "LoadBalancer" and set it to "Cluster" when used with type "ClusterIP",
305+
## unless you have a good reason not to.
306+
externalTrafficPolicy: "Local"
306307
## If there is a port associated with a given service, expose it here.
307308
# port:
308309
## If there is a particular IP that should be used for the service, specify it here.

0 commit comments

Comments
 (0)