mirror of
https://github.com/k3s-io/k3s-ansible.git
synced 2025-12-25 00:12:37 +01:00
- 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>
13 lines
469 B
YAML
13 lines
469 B
YAML
---
|
|
k3s_server_location: /var/lib/rancher/k3s
|
|
server_init_args: >-
|
|
{% if groups['server'] | length > 1 %}
|
|
--token {{ k3s_token }}
|
|
{% if ansible_host == hostvars[groups['server'][0]]['ansible_host'] | default(groups['server'][0]) %}
|
|
--cluster-init
|
|
{% else %}
|
|
--server https://{{ hostvars[groups['server'][0]]['ansible_host'] | default(groups['server'][0]) }}:{{ api_port }}
|
|
{% endif %}
|
|
{% endif %}
|
|
{{ extra_server_args | default('') }}
|