2021-09-06 14:46:49 +02:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: Ensure that the config.yaml.d directory exists
|
|
|
|
ansible.builtin.file:
|
|
|
|
state: directory
|
|
|
|
path: "{{ k3s_config_yaml_d_dir }}"
|
|
|
|
mode: 0755
|
2021-06-22 21:47:58 +02:00
|
|
|
when: >-
|
|
|
|
k3s_server_config_yaml_d_files | length > 0
|
|
|
|
or k3s_agent_config_yaml_d_files | length > 0
|
2022-01-02 22:52:09 +01:00
|
|
|
become: "{{ k3s_become }}"
|
2021-09-06 14:46:49 +02:00
|
|
|
|
2021-09-06 14:54:33 +02:00
|
|
|
# https://github.com/k3s-io/k3s/pull/3162
|
2021-09-06 14:46:49 +02:00
|
|
|
- name: Ensure configuration files are copied to controllers
|
|
|
|
ansible.builtin.template:
|
|
|
|
src: "{{ item }}"
|
|
|
|
dest: "{{ k3s_config_yaml_d_dir }}/{{ item | basename | replace('.j2','') }}"
|
|
|
|
mode: 0644
|
|
|
|
loop: "{{ k3s_server_config_yaml_d_files }}"
|
2022-01-02 22:52:09 +01:00
|
|
|
become: "{{ k3s_become }}"
|
2021-06-22 21:47:58 +02:00
|
|
|
when: k3s_control_node
|
|
|
|
|
|
|
|
# https://github.com/k3s-io/k3s/pull/3162
|
|
|
|
- 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 }}"
|
2022-01-02 22:52:09 +01:00
|
|
|
become: "{{ k3s_become }}"
|
2021-06-22 21:47:58 +02:00
|
|
|
when: not k3s_control_node
|