mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2025-12-14 13:54:37 +03:00
[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:
@@ -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 %}
|
||||
|
||||
Reference in New Issue
Block a user