Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包含 40 多个项目的 data_bag,需要为其中的大多数项目添加某些参数。
有没有办法编辑,例如用刀,所有 data_bag 项目?到目前为止,我所能看到的只是在我的编辑器中打开每个项目。
您可以通过循环遍历所有这些并通过调用将每个保存到文件中
for item in <item1> <item2> <item3> ; do knife data bag show <data_bag> $item -Fj > my_data_bag/$item.json done
然后通过复制/粘贴或一些宏将所需的参数添加到每个 json 文件中。并通过调用来更新 chef-server 上的包项:
knife data bag from file <data_bag> my_data_bag/*.json