[metallb] add config option for IPAddressPool avoidBuggyIPs (#10458)

* Add avoid_buggy_ips as optional
* Revert avoid_buggy_ips default back to false
* Change auto_assign to optional, default true
This commit is contained in:
Christian
2023-09-22 05:29:49 +02:00
committed by GitHub
parent 7b2586943b
commit 7919a47165
2 changed files with 4 additions and 5 deletions

View File

@@ -16,7 +16,7 @@ spec:
{% for ip_range in pool.ip_range %}
- "{{ ip_range }}"
{% endfor %}
autoAssign: {{ pool.auto_assign }}
avoidBuggyIPs: true
autoAssign: {{ pool.auto_assign | default(true) }}
avoidBuggyIPs: {{ pool.avoid_buggy_ips | default(false) }}
{% endfor %}