Ansible:根据文件列表创建配置

发布于 2025-01-11 09:35:07 字数 616 浏览 0 评论 0原文

我对如何完成这项工作有点困惑,并且需要更好地理解完成以下工作的 ansible 方面:

我有 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 文件列表的部分中。我在谷歌上搜索了一些可能相同的东西,但我发现的东西似乎远远超出了我需要完成的事情,或者我只是不正确地理解它。感谢您提供的所有帮助,我真的很感激!

I'm a little confused on how to make this work and need a better understanding in terms of the ansible side of getting the following done:

I have 500 images and I need to generate a default json config based on the image names. For example:

1.jpg
2.jpg
3.jpg
etc etc

From that list, I need to generate the following:

1.json
2.json
3.json
etc etc

When it's all said and done the directory should have 500 images and 500 json files. I would also like to have that json file as a j2 template so I can pre define some information in the json file based on the project in a group_var.

I know I can do the following to copy the template doing this:

- name: Copy JSON Configuration
  ansible.builtin.template:
    src: sample.json.j2
    dest: /path/to/directory

I'm just lost in the part to generate the list of the json files based on the image list. I have googled some stuff that is maybe the same but what I have found seem way beyond what I needed to get done or I'm not simply understanding it correctly. Thank you for any and all help I really appreciate it!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

童话 2025-01-18 09:35:07

例如,给定树

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

For example, given the tree

shell> tree test-616
test-616
├── 1.jpg
├── 2.jpg
└── 3.jpg

and the template

shell> cat sample.json.j2
{{ item }}

Find the files and iterate the paths

    - 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 }}"

This will create the files

shell> tree test-616
test-616
├── 1.jpg
├── 1.json
├── 2.jpg
├── 2.json
├── 3.jpg
└── 3.json
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文