Skip to content
Open
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
1 change: 1 addition & 0 deletions charts/mailu/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,7 @@ helm uninstall mailu --namespace=mailu-mailserver
| `front.externalService.externalTrafficPolicy` | Service externalTrafficPolicy (Cluster or Local) | `Local` |
| `front.externalService.externalIPs` | Service externalIPs | `[]` |
| `front.externalService.loadBalancerIP` | Service loadBalancerIP | `""` |
| `front.externalService.loadBalancerSourceRanges` | Service loadBalancerSourceRanges | `[]` |
| `front.externalService.annotations` | Service annotations | `{}` |
| `front.externalService.labels` | Service labels | `{}` |
| `front.externalService.ports.pop3` | Expose POP3 port - 110/tcp | `false` |
Expand Down
2 changes: 2 additions & 0 deletions charts/mailu/templates/front/service-external.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ spec:
{{- if .loadBalancerIP }}
loadBalancerIP: {{ .loadBalancerIP }}
{{- end }}
{{- if .loadBalancerSourceRanges }}
Comment thread
Sacerdoss marked this conversation as resolved.
loadBalancerSourceRanges: {{ toYaml .loadBalancerSourceRanges | nindent 4 }}
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.

This is missing an {{- end }}

{{- if .externalIPs }}
externalIPs:
{{- toYaml .externalIPs | nindent 4 }}
Expand Down
1 change: 1 addition & 0 deletions charts/mailu/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -745,6 +745,7 @@ front:
## Example for LoadBalancer:
## type: LoadBalancer
loadBalancerIP: ""
loadBalancerSourceRanges: []
externalTrafficPolicy: Local
externalIPs: []
annotations: {}
Expand Down
Loading