Update ipaddresspool.yaml

Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
This commit is contained in:
Kjeld Schouten-Lebbing
2022-09-13 13:58:45 +02:00
committed by GitHub
parent 74b43d8951
commit ad60e678ba
@@ -3,12 +3,12 @@
apiVersion: metallb.io/v1beta1
kind: IPAddressPool
metadata:
name: {{ .addressPool.name }}
name: {{ .name }}
spec:
addresses:
{{- range .addressPool.addresses }}
{{- range .addresses }}
- {{ . }}
{{- end }}
autoAssign: {{ .addressPool.autoAssign | default true }}
avoidBuggyIPs: {{ .addressPool.avoidBuggyIPs | default false }}
autoAssign: {{ .autoAssign | default true }}
avoidBuggyIPs: {{ .avoidBuggyIPs | default false }}
{{- end }}