我相信 Ansible 复制模块可以获取一大堆"文件"并一次性复制它们。我相信这可以通过递归复制目录来实现。
Ansible 模板模块能否获取一大堆"模板"并一次性部署它们?是否有部署模板文件夹并递归应用它们之类的事情?
template
模块本身对单个文件运行操作,但您可以使用 with_filetree
在指定路径上递归循环:
- name: Ensure directory structure exists
ansible.builtin.file:
path: '{{ templates_destination }}/{{ item.path }}'
state: directory
with_community.general.filetree: '{{ templates_source }}'
when: item.state == 'directory'
- name: Ensure files are populated from templates
ansible.builtin.template:
src: '{{ item.src }}'
dest: '{{ templates_destination }}/{{ item.path }}'
with_community.general.filetree: '{{ templates_source }}'
when: item.state == 'file'
对于单个目录中的模板,您可以使用 with_fileglob
.
这个答案提供了@techraf制定的方法的工作示例
with_fileglob希望只有文件位于模板文件夹中 - 请参阅 https://serverfault.com/questions/578544/deploying-a-folder-of-template-files-using-ansible
with_fileglob只会解析模板文件夹中的文件
with_filetree将模板文件移动到 dest 时维护目录结构。它会在 dest 自动为您创建这些目录。
with_filetree将解析模板文件夹和嵌套目录中的所有文件
- name: Approve certs server directories
file:
state: directory
dest: '~/{{ item.path }}'
with_filetree: '../templates'
when: item.state == 'directory'
- name: Approve certs server files
template:
src: '{{ item.src }}'
dest: '~/{{ item.path }}'
with_filetree: '../templates'
when: item.state == 'file'
从本质上讲,将此方法视为将目录及其所有内容从 A 复制并粘贴到 B,同时解析所有模板。
我无法用其他答案做到这一点。这是对我有用的:
- name: Template all the templates and place them in the corresponding path
template:
src: "{{ item.src }}"
dest: "{{ destination_path }}/{{ item.path | regex_replace('\.j2$', '') }}"
force: yes
with_filetree: '{{ role_path }}/templates'
when: item.state == 'file'
在我的情况下,文件夹包含文件和 jinja2 模板。
- name: copy all directories recursively
file: dest={{templates_dest_path}}/{{ item|replace(templates_src_path+'/', '') }} state=directory
with_items: "{{ lookup('pipe', 'find '+ templates_src_path +'/ -type d').split('n') }}"
- name: copy all files recursively
copy: src={{ item }} dest={{templates_dest_path}}/{{ item|replace(templates_src_path+'/', '') }}
with_items: "{{ lookup('pipe', 'find '+ templates_src_path +'/ -type f -not -name *.j2 ').split('n') }}"
- name: copy templates files recursively
template: src={{ item }} dest={{templates_dest_path}}/{{ item|replace(templates_src_path+'/', '')|replace('.j2', '') }}
with_items: "{{ lookup('pipe', 'find '+ templates_src_path +'/*.j2 -type f').split('n') }}"
我做到了,它奏效了。
- name: "Create file template"
template:
src: "{{ item.src }}"
dest: "{{ your_dir_remoto }}/{{ item.dest }}"
loop:
- { src: '../templates/file1.yaml.j2', dest: 'file1.yaml' }
- { src: '../templates/file2.yaml.j2', dest: 'file2.yaml' }