mirror of
https://github.com/PyratLabs/ansible-role-k3s
synced 2024-11-08 14:43:28 +01:00
de1bd094e5
* fix(ansible-lint): FQDN and `name` * fix(ansible-lint): add `name` and FQDN for module call * fix(ansible-lint): add `name` to tasks and FQDN for module * fix(ansible-lint): add task `name` and FQDN for module calls * fix(ansible-lint): last `include_tasks` * fix(ansible-lint): add task names and FQDN * refactor: `Ensure` to `Run` * [skip ci]refactor: add exist and seperate ensure installed node task, mention build cluster * [skip ci]refactor: Pipe seperator * [skip ci]refactor: run * refactor: remove quotes as other files don't use them For templated vars in task name * [skip ci]refactor: task names, use `Run` * [skip ci]refactor: use variable name in task name * [skip ci]refactor: task names * [skip ci]refactor: add service mgr in task name * [skip ci]refactor: add task names and module FQDNs * [skip ci]refactor: fix task name * [skip ci]refactor: add - * [skip ci]refactor: include task names and FQDNs * [skip ci]refactor: add task names and FQDNs * [skip ci]: ignore `name[template]` * refactor: `when` clause for `block` should be before `block` * fix: https://github.com/ansible-community/molecule/issues/3883 * refactor: molecule lint command was removed in version `5.0.0` Use separate CI job step to run linting instead. * [skip ci]refactor: noqa for command tasks Subject to change * refactor: use Ubuntu 22.04 Suspect issues with Molecule tests are related to cgroups v2.
32 lines
1.1 KiB
YAML
32 lines
1.1 KiB
YAML
---
|
|
|
|
- name: Ensure directories exist
|
|
ansible.builtin.include_tasks: ensure_directories.yml
|
|
loop: "{{ k3s_ensure_directories_exist }}"
|
|
loop_control:
|
|
loop_var: directory
|
|
|
|
- name: Ensure installed node
|
|
ansible.builtin.include_tasks: ensure_installed_node.yml
|
|
when:
|
|
- ((k3s_control_node and k3s_controller_list | length == 1)
|
|
or (k3s_primary_control_node and k3s_controller_list | length > 1))
|
|
- not ansible_check_mode
|
|
|
|
- name: Flush Handlers
|
|
ansible.builtin.meta: flush_handlers
|
|
|
|
- name: Ensure installed node | k3s_build_cluster
|
|
ansible.builtin.include_tasks: ensure_installed_node.yml
|
|
when: k3s_build_cluster
|
|
|
|
- name: Determine if the systems are already clustered
|
|
ansible.builtin.stat:
|
|
path: "{{ k3s_token_location }}"
|
|
register: k3s_token_cluster_check
|
|
|
|
- name: Ensure control plane started with {{ ansible_service_mgr }}
|
|
ansible.builtin.include_tasks: ensure_control_plane_started_{{ ansible_service_mgr }}.yml
|
|
when: (k3s_control_node and k3s_controller_list | length == 1)
|
|
or (k3s_primary_control_node and k3s_controller_list | length > 1)
|
|
or k3s_token_cluster_check.stat.exists
|