mirror of
https://github.com/dredx/prole.git
synced 2026-09-27 13:14:31 +00:00
- Add merlin.prole.org (10.0.0.6) to inventory (k3s_hosts, mariadb_primary) - Relax k3s preflight: /var/lib/rancher no longer requires iSCSI, only blocks SD-backed storage - Add netplan static IP role (NetworkManager) and MariaDB primary/replica roles + site.yml ordering - Add/upgrade USB prep tooling (prepare_mariadb_usb.sh + generated setup.sh + fstab-by-LABEL) Co-authored-by: Junie <junie@jetbrains.com>
20 lines
574 B
Django/Jinja
20 lines
574 B
Django/Jinja
network:
|
|
version: 2
|
|
renderer: NetworkManager
|
|
ethernets:
|
|
{{ netplan_static_iface_effective }}:
|
|
dhcp4: false
|
|
dhcp6: false
|
|
addresses:
|
|
- {{ netplan_static_address }}
|
|
{% if (netplan_static_gateway4_effective | default('') | length) > 0 %}
|
|
gateway4: {{ netplan_static_gateway4_effective }}
|
|
{% endif %}
|
|
{% if (netplan_static_nameservers_effective | default([])) | length > 0 %}
|
|
nameservers:
|
|
addresses:
|
|
{% for ns in netplan_static_nameservers_effective %}
|
|
- {{ ns }}
|
|
{% endfor %}
|
|
{% endif %}
|