mirror of
https://github.com/dredx/prole.git
synced 2026-09-23 12:03:59 +00:00
- Added tasks and playbooks for K3s datastore export/import using MariaDB Tools role, with associated tests and defaults. - Enhanced iSCSI role to support mkfs-once logic and safer re-initialization of block storage. - Migrated iSCSI-backed Rancher data from retropie to merlin.prole.org. - Updated k3s roles/playbooks to relax Rancher storage preflight checks, supporting PARTUUID-based mounts. - Adjusted Samba AD NetBIOS name derivation to use uppercase short hostname by default. - Incremented prole DB version to 104, updated generated prole.cfg, inventory, and recovery manifest templates.
13 lines
297 B
YAML
13 lines
297 B
YAML
---
|
|
- name: Import k3s datastore database dump into Merlin MariaDB
|
|
hosts: mariadb_primary
|
|
gather_facts: false
|
|
become: true
|
|
serial: 1
|
|
|
|
tasks:
|
|
- name: Import k3s datastore database
|
|
ansible.builtin.import_role:
|
|
name: mariadb_tools
|
|
tasks_from: k3s_datastore_import
|