* Test cluster using molecule * Fix detection of first control node * Include --flannel-iface and --node-ip as k3s arguments * Store logs of k3s-init.service as GitHub job artifacts
13 lines
378 B
YAML
13 lines
378 B
YAML
---
|
|
ansible_user: root
|
|
server_init_args: >-
|
|
{% if groups['master'] | length > 1 %}
|
|
{% if ansible_hostname == hostvars[groups['master'][0]]['ansible_hostname'] %}
|
|
--cluster-init
|
|
{% else %}
|
|
--server https://{{ hostvars[groups['master'][0]].k3s_node_ip }}:6443
|
|
{% endif %}
|
|
--token {{ k3s_token }}
|
|
{% endif %}
|
|
{{ extra_server_args | default('') }}
|