mirror of
https://github.com/techno-tim/k3s-ansible.git
synced 2025-12-30 12:42:37 +01:00
Compare commits
6 Commits
dependabot
...
3112e2b486
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3112e2b486 | ||
|
|
ed82eb71dd | ||
|
|
34c0aee31a | ||
|
|
e210fc21b6 | ||
|
|
8e26ba8809 | ||
|
|
754a379d42 |
@@ -4,7 +4,7 @@
|
||||
#
|
||||
# pip-compile requirements.in
|
||||
#
|
||||
ansible-compat==24.10.0
|
||||
ansible-compat==4.1.11
|
||||
# via molecule
|
||||
ansible-core==2.18.0
|
||||
# via
|
||||
@@ -73,11 +73,11 @@ markupsafe==2.1.4
|
||||
# via jinja2
|
||||
mdurl==0.1.2
|
||||
# via markdown-it-py
|
||||
molecule==25.1.0
|
||||
molecule==6.0.3
|
||||
# via
|
||||
# -r requirements.in
|
||||
# molecule-plugins
|
||||
molecule-plugins[vagrant]==23.7.0
|
||||
molecule-plugins[vagrant]==23.5.3
|
||||
# via -r requirements.in
|
||||
netaddr==0.10.1
|
||||
# via -r requirements.in
|
||||
|
||||
@@ -30,3 +30,4 @@ metal_lb_mode: layer2
|
||||
metal_lb_available_timeout: 240s
|
||||
metal_lb_controller_tag_version: v0.14.3
|
||||
metal_lb_ip_range: 192.168.30.80-192.168.30.90
|
||||
metal_lb_interfaces:
|
||||
|
||||
@@ -129,6 +129,10 @@ argument_specs:
|
||||
description: MetalLB ip range for load balancer
|
||||
default: 192.168.30.80-192.168.30.90
|
||||
|
||||
metal_lb_interfaces:
|
||||
description: MetalLB interfaces to announce on. By default, announces on all interfaces.
|
||||
default:
|
||||
|
||||
metal_lb_controller_tag_version:
|
||||
description: Image tag for MetalLB
|
||||
default: v0.14.3
|
||||
|
||||
@@ -21,6 +21,13 @@ kind: L2Advertisement
|
||||
metadata:
|
||||
name: default
|
||||
namespace: metallb-system
|
||||
{% if metal_lb_interfaces %}
|
||||
spec:
|
||||
interfaces:
|
||||
{% for interface in metal_lb_interfaces %}
|
||||
- {{ interface }}
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% if metal_lb_mode == "bgp" %}
|
||||
---
|
||||
|
||||
Reference in New Issue
Block a user