Skip to content

Instantly share code, notes, and snippets.

View Oddly's full-sized avatar

Sam Crauwels Oddly

  • HCS Company
  • Netherlands
  • 17:46 (UTC +02:00)
View GitHub Profile
@maxpain
maxpain / interfaces.yaml.j2
Last active March 9, 2025 20:47
Talos Ansible Role
- interface: {{ 'bond0' if hostvars[item].bond_interfaces | length > 0 else 'eth0' }}
dhcp: false
addresses:
- {{ hostvars[item].ip }}
routes:
- network: 0.0.0.0/0
gateway: {{ hostvars[item].ip | ipaddr('1') | ipaddr('address') }}
{% if hostvars[item].bond_interfaces | length > 0 %}
bond:
interfaces: {{ hostvars[item].bond_interfaces }}