diff --git a/charts/enterprise/metallb/templates/ipaddresspool.yaml b/charts/enterprise/metallb/templates/ipaddresspool.yaml index 40f94c64596..3ab5ca4ab7c 100644 --- a/charts/enterprise/metallb/templates/ipaddresspool.yaml +++ b/charts/enterprise/metallb/templates/ipaddresspool.yaml @@ -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 }}