mirror of
https://github.com/PyratLabs/ansible-role-k3s.git
synced 2024-10-31 08:28:54 +01:00
19 lines
693 B
YAML
19 lines
693 B
YAML
---
|
|
|
|
- name: Ensure that the config.yaml.d directory exists
|
|
ansible.builtin.file:
|
|
state: directory
|
|
path: "{{ k3s_config_yaml_d_dir }}"
|
|
mode: 0755
|
|
when: k3s_agent_config_yaml_d_files | length > 0
|
|
become: "{{ k3s_become_for_directory_creation | ternary(true, false, k3s_become_for_all) }}"
|
|
|
|
# https://github.com/k3s-io/k3s/pull/1691
|
|
- name: Ensure configuration files are copied to agents
|
|
ansible.builtin.template:
|
|
src: "{{ item }}"
|
|
dest: "{{ k3s_config_yaml_d_dir }}/{{ item | basename | replace('.j2','') }}"
|
|
mode: 0644
|
|
loop: "{{ k3s_agent_config_yaml_d_files }}"
|
|
become: "{{ k3s_become_for_directory_creation | ternary(true, false, k3s_become_for_all) }}"
|