mirror of
https://github.com/PyratLabs/ansible-role-k3s
synced 2024-12-14 23:00:21 +01:00
19 lines
708 B
YAML
19 lines
708 B
YAML
|
---
|
||
|
|
||
|
- name: Ensure that the staticpods directory exists
|
||
|
ansible.builtin.file:
|
||
|
state: directory
|
||
|
path: "{{ k3s_server_staticpods_dir }}"
|
||
|
mode: 0755
|
||
|
when: k3s_server_staticpods_templates | 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 static pod manifests are copied to controllers
|
||
|
ansible.builtin.template:
|
||
|
src: "{{ item }}"
|
||
|
dest: "{{ k3s_server_staticpods_dir }}/{{ item | basename | replace('.j2','') }}"
|
||
|
mode: 0644
|
||
|
loop: "{{ k3s_server_staticpods_templates }}"
|
||
|
become: "{{ k3s_become_for_directory_creation | ternary(true, false, k3s_become_for_all) }}"
|