mirror of
https://github.com/dredx/prole.git
synced 2026-09-24 19:04:31 +00:00
19 lines
449 B
YAML
19 lines
449 B
YAML
---
|
|
- name: Reset k3s nodes and reinstall with vault token
|
|
hosts: k3s_hosts
|
|
become: true
|
|
serial: 1
|
|
tasks:
|
|
- name: Ensure cgroup kernel params are set
|
|
ansible.builtin.import_role:
|
|
name: cgroups
|
|
|
|
- name: Remove existing k3s installation and data
|
|
ansible.builtin.import_role:
|
|
name: k3s
|
|
tasks_from: cleanup
|
|
|
|
- name: Reinstall and configure k3s
|
|
ansible.builtin.import_role:
|
|
name: k3s
|