Ansible:根据文件列表创建配置
Ansible: Create Config based on File List
我对如何完成这项工作有点困惑,需要更好地理解完成以下任务的可靠方面:
我有 500 张图像,我需要根据图像名称生成默认 json 配置。例如:
1.jpg
2.jpg
3.jpg
etc etc
根据该列表,我需要生成以下内容:
1.json
2.json
3.json
etc etc
总而言之,该目录应该有 500 张图像和 500 个 json 文件。我还想将该 json 文件作为 j2 模板,这样我就可以根据 group_var.
中的项目在 json 文件中预先定义一些信息
我知道我可以执行以下操作来复制模板:
- name: Copy JSON Configuration
ansible.builtin.template:
src: sample.json.j2
dest: /path/to/directory
我只是迷失在根据图像列表生成 json 文件列表的部分。我用谷歌搜索了一些可能相同的东西,但我发现的似乎超出了我需要完成的范围,或者我不仅仅是正确地理解了它。感谢您提供的所有帮助,我真的很感激!
例如,给定树
shell> tree test-616
test-616
├── 1.jpg
├── 2.jpg
└── 3.jpg
和模板
shell> cat sample.json.j2
{{ item }}
查找文件并迭代路径
- find:
path: test-616
register: result
- template:
src: sample.json.j2
dest: "{{ _item }}.json"
loop: "{{ result.files|map(attribute='path')|list }}"
vars:
_item: "{{ item|splitext|first }}"
这将创建文件
shell> tree test-616
test-616
├── 1.jpg
├── 1.json
├── 2.jpg
├── 2.json
├── 3.jpg
└── 3.json
我对如何完成这项工作有点困惑,需要更好地理解完成以下任务的可靠方面:
我有 500 张图像,我需要根据图像名称生成默认 json 配置。例如:
1.jpg
2.jpg
3.jpg
etc etc
根据该列表,我需要生成以下内容:
1.json
2.json
3.json
etc etc
总而言之,该目录应该有 500 张图像和 500 个 json 文件。我还想将该 json 文件作为 j2 模板,这样我就可以根据 group_var.
中的项目在 json 文件中预先定义一些信息我知道我可以执行以下操作来复制模板:
- name: Copy JSON Configuration
ansible.builtin.template:
src: sample.json.j2
dest: /path/to/directory
我只是迷失在根据图像列表生成 json 文件列表的部分。我用谷歌搜索了一些可能相同的东西,但我发现的似乎超出了我需要完成的范围,或者我不仅仅是正确地理解了它。感谢您提供的所有帮助,我真的很感激!
例如,给定树
shell> tree test-616
test-616
├── 1.jpg
├── 2.jpg
└── 3.jpg
和模板
shell> cat sample.json.j2
{{ item }}
查找文件并迭代路径
- find:
path: test-616
register: result
- template:
src: sample.json.j2
dest: "{{ _item }}.json"
loop: "{{ result.files|map(attribute='path')|list }}"
vars:
_item: "{{ item|splitext|first }}"
这将创建文件
shell> tree test-616
test-616
├── 1.jpg
├── 1.json
├── 2.jpg
├── 2.json
├── 3.jpg
└── 3.json