mirror of
https://github.com/k3s-io/k3s-ansible.git
synced 2024-11-14 10:15:24 +01:00
df67c61ba5
- HA option for multiple server nodes using embedded etcd - Switch to yaml inventory file for easier editing and combining vars - Update to full ansible module names - Change master/node names to server/agent - Cleanup small linting errors - Add reboot playbook which staggers reboot to keep HA cluster up - Move playbooks to playbook directory Signed-off-by: Derek Nola <derek.nola@suse.com>
9 lines
142 B
YAML
9 lines
142 B
YAML
---
|
|
- name: Reboot cluster
|
|
hosts: k3s_cluster
|
|
become: true
|
|
gather_facts: true
|
|
tasks:
|
|
- name: Reboot
|
|
ansible.builtin.reboot:
|