mirror of
https://github.com/PyratLabs/ansible-role-k3s
synced 2024-11-06 22:03:29 +01:00
14 lines
489 B
YAML
14 lines
489 B
YAML
---
|
|
|
|
- name: Ensure that the manifests directory exists
|
|
file:
|
|
state: directory
|
|
path: "{{ k3s_server_manifests_dir }}"
|
|
when: k3s_server_manifests_templates | length > 0
|
|
|
|
# https://rancher.com/docs/k3s/latest/en/advanced/#auto-deploying-manifests
|
|
- name: Ensure Auto-Deploying Manifests are copied to controllers
|
|
template:
|
|
src: "{{ item }}"
|
|
dest: "{{ k3s_server_manifests_dir }}/{{ item | basename | replace('.j2','') }}"
|
|
loop: "{{ k3s_server_manifests_templates }}"
|